search for: numvec

Displaying 5 results from an estimated 5 matches for "numvec".

Did you mean: numvecs
2011 Dec 07
1
Output table from for loop
Hi, this might be basic but can't get it to work and it is hampering my R usage: #the loop is checking variance of rows, and cutting out rows with var>numVec[i] #I define outMat as object names I want to output to (does this make sense? how else #can I define sequential numbered output?) #numVec is numbers I use in the loop head(Counts) AN1 AN2 AN3 AN4 var GENE1 99 0 6 0 2360 GENE2 183 136 137 160...
2013 Nov 28
2
[LLVMdev] [llvm] r195903 - AArch64: Fix a bug about disassembling post-index load single element to 4 vectors
..._WB_S_register: > - TransferBytes = 12; break; > + TransferBytes = 16; break; > case AArch64::LD4LN_WB_D_fixed: case AArch64::LD4LN_WB_D_register: > - TransferBytes = 24; break; > + TransferBytes = 32; break; > } > IsLoad = true; > NumVecs = 4; > > Modified: llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt > URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt?rev=195903&r1=195902&r2=195903&view=diff > =============================================...
2013 Nov 28
0
[LLVMdev] [llvm] r195903 - AArch64: Fix a bug about disassembling post-index load single element to 4 vectors
...TransferBytes = 12; break; >> + TransferBytes = 16; break; >> case AArch64::LD4LN_WB_D_fixed: case AArch64::LD4LN_WB_D_register: >> - TransferBytes = 24; break; >> + TransferBytes = 32; break; >> } >> IsLoad = true; >> NumVecs = 4; >> >> Modified: llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt >> URL: >> http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt?rev=195903&r1=195902&r2=195903&view=diff >> >> ===========...
2013 Nov 28
1
[LLVMdev] [llvm] r195903 - AArch64: Fix a bug about disassembling post-index load single element to 4 vectors
...gt;> + TransferBytes = 16; break; >>> case AArch64::LD4LN_WB_D_fixed: case AArch64::LD4LN_WB_D_register: >>> - TransferBytes = 24; break; >>> + TransferBytes = 32; break; >>> } >>> IsLoad = true; >>> NumVecs = 4; >>> >>> Modified: llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt >>> URL: >>> http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Disassembler/AArch64/neon-instructions.txt?rev=195903&r1=195902&r2=195903&view=diff >>>...
2011 Feb 06
5
Help with integrating R and c/c++
Hi, I have been using R for close to two years now and have grown quite comfortable with the language. I am presently trying to implement an optimization routine in R (Newton Rhapson). I have some R functions that calculate the gradient and hessian (pre requisite matrices) fairly efficiently. Now, I have to call this function iteratively until some convergance criterion is reached. I think the