search for: amoung

Displaying 20 results from an estimated 29 matches for "amoung".

Did you mean: amount
2009 Feb 12
0
Sign differences amoung QR solutions.
I was noticing mainly sign differences amoung the solutions to QR decomposition. For example R: > x <- matrix(c(12,-51,4,6,167,-68,-4,24,-41),nrow=3,byrow=T) > x [,1] [,2] [,3] [1,] 12 -51 4 [2,] 6 167 -68 [3,] -4 24 -41 > r <- qr(x) > r$qr [,1] [,2] [,3] [1,] -14.0000000 -21.0000000...
2009 Jul 01
1
Are there any bloggers amoung us going to useR 2009 ?
*(note*: This is an R community question, not a statistical nor coding question. Since this is my first time writing such a post, I hope no one will take offence of it.) Hello all, I will be attending useR 2009 next week, and was wondering if there are any of you who are *bloggers *intending to participate and report on useR 2009? If so - I would love to know your blogs URL so as to follow you.
2006 Jan 12
3
Introspecting Active Record Associations
Hi, I''m looking into write scaffold generators that will, amoung other things, scaffold active record associations (eg. generate select boxes for belongs_to where you can choose a parent object) for quicker prototyping. But... My question is: Is there anyway of finding out what associations exist from examining the lodel classes themselves or indeed any other...
2004 Jun 07
2
[LLVMdev] TargetFrameInfo: what's local area offset
The TargetFrameInfo, amoung other things, specifies "local area offset" -- which, as comment say, is: the offset of the local area from the stack pointer on entrance to a function. The question is -- what's local area? Is this the first stack location which can be used by function for allocating its ow...
2004 Aug 07
3
Message waiting
The message waiting options seem to be geared for a normal office environment where there is a one-to-one relationship between a user and a phone/mailbox. I want to have a mailbox that is shared amoung a number of people and want the message waiting light to turn on on multiple phones. I can direct the voice mail to the common mail box. I can direct the individual users to the common mail box. I can light the message waiting light on the associated phone. I can not figure out how to light the...
2011 Jul 21
2
fyi: RHEL 5.7 is out
hi fyi, it seems redhat has just pushed RHEL 5.7 out. I see amoung others: kernel-2.6.18-274.el5.x86_64.rpm redhat-release-5Server-5.7.0.3.x86_64.rpm Rainer
2004 Dec 22
1
errors compiling with svn as of today
Hi. I just checked out the latest icecast from svn and I am now getting errors in format_vorbis.c amoung which are the following: Note: These were detected at link time. format.o(.text+0x9d): In function `format_get_plugin': /usr/src/icecast/src/format.c:69: undefined reference to `format_ogg_get_plugin' format_vorbis.o(.text+0x296): In function `get_buffer_audio': /usr/src/icecast/src/fo...
2009 Jan 23
1
XML package help
..." eValue="3"/> </File> </FilesList> </Manifest> I am attempting to use XML package and xpathSApply() to extract, say, the eValue attribute for eName=='0ne' for all <File> nodes that have <FileTypeId>==10. I try the following, amoung several things: doc<-xmlInternalTreeParse(Manifest) Root = xmlRoot(doc) xpathSApply(Root, "//File[FileTypeId=10]/PatientCharacteristics/[@eName='one']", xmlAttrs) and it does not work. Might somebody help me with the syntax here? Thanks a lot!! Aaron [[alternative HTML v...
2006 Aug 21
1
Passing parameters for the server's hostname/ip to the client?
Hey everyone -- Is there a way to refer to the server with the tftpboot images so that when a client is booting diskless, it can mount an nfs directory to that tftp server? That is to say that I have a tftp server on 192.168.0.244. The usr directory is set to be shared amoung the diskless clients via nfs. In the root image, I have /etc/fstab set to something like: blah blah 192.168.0.244:/usrnfs /usr ... But instead of that entry being 192.168.0.244 in there, I want it to be more dynamic, something like: blah blah tftpboot_passed_from_pxe:/usrnfs /usr This is so th...
2004 Jun 07
0
[LLVMdev] TargetFrameInfo: what's local area offset
On Mon, 7 Jun 2004, Vladimir Prus wrote: > > The TargetFrameInfo, amoung other things, specifies "local area offset" -- > which, as comment say, is: > > the offset of the local area from the stack pointer on entrance to a > function. > > The question is -- what's local area? Is this the first stack location which > can be used by...
2008 Sep 15
1
Jitter Buffer issues
...lem is in compute_opt_delay() in the way it finds the latest packet. Currently it finds the most resent packet in the timing buffer not the oldest packet. The oldest packet is found once the timing buffer is reset and only one frame is in the tb[0]. int latest = 32767; /* Pick latest amoung all sub-windows */ for (j=0;j<MAX_BUFFERS;j++) { if (pos[j] < tb[j].filled && tb[j].timing[pos[j]] < latest) { next = j; latest = tb[j].timing[pos[j]]; } } I think it should be int latest = 0; /* Pick...
2004 Aug 04
1
installing package with version number using namespaces & dynamic library
....0' not found Error: .onLoad failed in loadNamespace Error in library("RIO_1.4.0") : package/namespace load failed fail. Without the '--with-package-versions' option the installed package loads without problem with the call library("RIO") file Namesapce defines (amoung other directives): useDynLib(RIO) I also tryed useDynLib("RIO_1.4.0") to no avail. But RIO/libs contains the file RIO.so anyway. I checked in 'Writing R Extensions" section 'Package name spaces' but did not find an answer. Any hints? Regards, Matthias -- Ma...
2008 Jul 14
3
insert select statements from different database
...ields of the select-field should come from a database that is created in a different modell in the same project. I donĀ“t need relations simply the content from one field in the table that should populate the select-field. How can i do this? The selected item from the select-field will then be saved amoung other fields in a second database tia for a hint! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to r...
2013 Feb 22
1
[LLVMdev] llvm-ar llvm-link
Hi Ahmad, Yes, merging works good. However, my problem is like this - I have a C library which consists of 1000's of functions spread through various files. The functions do not have dependency amoung each other. I want to link only relavant files( files which have functions called from my application). Since ar has a global symbol table, I believe it should be faster to look for a symol in the table and pull out and link the file to .bc of my application. Is my understand regarding llvm-ar cor...
2003 Jul 16
3
Announcing DragonFly BSD!
...work involved implementing much of the earlier UP->SMP converstion work that was done when 5.x first branched, but under an entirely new mutex-free light weight kernel threading infrastructure. It includes the LWKT system, interrupt threads, and pure threads for system processes amoung other things. For obvious reasons the codebase will only run on i386 for now, and ports to other platforms will not happen until the MD infrastructure is cleaned up and finalized. I considered starting with a 5.x base but it is simply too heavily mutexed, it was actually faster to...
2007 Sep 16
2
The use for an XML based metadata format
On 15 Sep 2007 at 16:53, Silvia Pfeiffer wrote: > Skeleton, CMML and Vorbiscomment are not sufficient for some people - > in particular when there is a more complex piece of metadata to be > communicted, e.g. from an archive that stores a lot more information > than just name-value pairs. In my opinion, for this purpose it would be more appropriate to store the data separate from
2006 Aug 19
0
info: Apache 2 bandwidth limitation problems solved
Hello all, Just a little info for users of Apache 2 amoung you who use bandwidth limitation, mainly ISPs. I was using mod_bwshare (old: bw_share), one of the only bandwidth limitation by IP available, during one year with big problems for the bandwidth limitation (by IP and maximum amount), on CentOS 4. That introduced a slowness on the apache server and d...
2005 Jun 15
1
asterisk security
Hello, I would like to have some advices about security, securing asterisk server Already : - configured asterisk to run as 'non-root' user (http://www.voip-info.org/tiki-index.php?page=Asterisk+non-root) - fw config (http://www.voip-info.org/tiki-index.php?page=Asterisk+firewall+rules) Would like to know what are the things I have to be carefull with -
2003 Aug 09
0
'magic' symlink support
...ased upon values in the user environment (@env_XXXX). http://people.freebsd.org/~jwd/mlinks/env-magic-patches I have some very small patches against a few of the various shells since normalization of how the environment is kept is required for this set. I will get these up later this week. Amoung other things, this patch allows for some very interesting abilities within the developement environment. It is worth noting that this patch also fixes the problem of "ps -e" showing stale environment variable values. These still need to be ported/applied to -current. Please give the...
1998 Feb 17
0
a very preliminary lme for R
...sites http://franz.stat.wisc.edu/pub/CRAN/ A paper on the computational methods used in this version of the library will appear there "real soon". Features of the library include: - use of a "groupedData" class that extends the data.frame class to describe relationships amoung the variables and the grouping of the observations. - multiple levels of grouping in the data and nested random effects in the models. - summarization of data according to grouping of the observations via the gsummary function (don't know if this works in R yet). - trellis-based p...