search for: subseq

Displaying 8 results from an estimated 8 matches for "subseq".

Did you mean: subset
2009 May 10
2
In C, a fast way to slice a vector?
Hello, Suppose in the following code, PROTECT(sr = R_tryEval( .... )) sr is a RAWSXP vector. I wish to return another RAWSXP starting at position 13 onwards (base=0). I could create another RAWSXP of the correct length and then memcpy the required bytes and length to this new one. However is there a more efficient method? Regards Saptarshi Guha
2006 Dec 05
1
[PATCH]UHC should not generate interrupt when USB device returns NAK
...Host Controller interrupt generating when receiving NAK in interrupt transfer. According to usb spec, USB mouse/tablet device returns NAK to host controller if its status does not alter in interrupt transfer. And UHC should leave a TD active when receiving NAK and execute this incompleted TD in a subseqent frame. UHC only generates an interrupt on complete after the TD with ICO bit=1 is completed. This patch obliges UHC & USB mouse/tablet to behave consistently with spec. Signed-off-by: Xinmei Huang <xinmei.huang@intel.com> _______________________________________________ Xen-devel m...
2009 Jan 05
1
bug involving quote(); ghost in the machine
Hi list(...), I've narrowed down a weird bug. It's like a ghost in the machine, in that functions seem to remember things that they should not be able to. In the example below, the result of the second (and subseqent) calls depend on what was given in the first call. foo <- function(given = NULL) { callObj <- quote(callFunc()) if (!is.null(given)) callObj$given <- given if (is.null(given)) callObj$default <- TRUE callObj } foo() # callFunc(default = TRUE) foo(giv...
2006 Dec 08
1
RE: [PATCH]UHC should not generate interrupt when USBdevice returns NAK
...upt generating when received NAK in >interrupt transfer. > >According to usb spec, USB mouse/tablet device returns NAK to host >controller if its status does not alter in interrupt transfer. >And UHC should leave a TD active when receiving NAK and execute this >incompleted TD in a subseqent frame. >UHC only generates an interrupt on complete after the TD with ICO bit=1 >is completed. > >This patch obliges UHC & USB mouse/tablet to behave consistently with >spec. > > >Signed-off-by: Xinmei Huang <xinmei.huang@intel.com> > _____________________...
2013 May 03
2
how to parallelize 'apply' across multiple cores on a Mac
...the particular way I constructed the call to 'apply' might be the source of the problem, here is a deconstructed version of what I did to each column, for easier parsing: ----------------------------- begin call to 'apply' ------------------------ Step 1: Identify several disjoint subsequences of fixed length, say length three, of a column. column.values <- 1:16 desired.subseqs <- c( NA, NA, NA, 1, 1, 1, NA, 1, 1, 1, NA, NA, 1,1,1, NA ) # this vector is used for every column. desired.values <- desired.subseq * column.values Step 2: Find the average value of each subse...
2005 Oct 17
2
Bizarre Echo Problem
...sers testing a new digital dialer... 1. Agents are using Grandstream ATA HT486 and a small analogue dialpad with a headset. 2. SIP connection to Asterisk-1.2b1 3. IAX2 connection to ITSP provider. The call is initially set up in the following way. 1. Agent calls into a meetme conference room and subseqently stays in the conference room working offhook. 2. Dialler originates calls from the meetme conference room to the target party. Problem... 1. every now and then the agent experiences large amounts of echoing of their own voice (not the target party). It's not consistent, just every now an...
2004 Aug 06
3
disappointed with group
Moritz Grimm wrote: >MR I wrote: > > >>must say I have found the help in this group very disapointing. Have >> >> > >I don't understand why people keep complaining about this list. It's not >that anyone has the right to get personal assistance by the developers >(note: I am no developer). It's also better for all of us when the
2007 Dec 31
2
How to import ENSEMBL text data using R
Dear all, I have a data which is in text file and i would like to import the data to R. From the manual, i?ve found the read.table command function is the most appropriate but when i wrote the command an error had occur. It say ?Error in read.table"C:/Users/user/Documents/cfa-1.txt", header = T, sep = "\t",skip=10) :more columns than column names?. Please help me with this as