Displaying 8 results from an estimated 8 matches for "subseqs".
Did you mean:
subseq
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
This patch adds support for USB mouse/tablet status check and restricts
Universal 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.
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
2006 Dec 08
1
RE: [PATCH]UHC should not generate interrupt when USBdevice returns NAK
Hi all,
Is there any comment on this patch?
Current HID(mouse/tablet) emulator in qemu-dm persistently returns a data in an INTERRUPT transfer, even if the device (mouse/tablet) keeps the same status as the last interrupt transfer.
This behavior does not reflect the HID/USB/UHCI spec. According to HID spec, USB HID device (using interrupt pipe) will return an NAK indicate no interrupt
2013 May 03
2
how to parallelize 'apply' across multiple cores on a Mac
..., 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 subsequence.
desired.means <- rollapply( desired.values, 3, mean, fill=NA, align =
"right&qu...
2005 Oct 17
2
Bizarre Echo Problem
Before I relate the actual problem, some context.
Callcentre environment, a few users 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
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