search for: pairseqsim

Displaying 2 results from an estimated 2 matches for "pairseqsim".

2004 May 17
0
Bioconductor 1.4 released
...ors), affyPLM (probe-level models). -- marray (next generation of the depreciated marrayClasses, marrayNorm, marrayPlots, marrayTools packages) -- General analysis tools (rama, qvalue, pickgene, EBarrays, impute, pamr, bim, ) -- QA/QC (arrayMagic, arrayQuality, LPE) -- sequence analysis (pairseqsim, Biostrings) -- interface to the GeneSpring data analysis program (GeneSpring) TOOLS: ====== The released packages include tools which facilitate: * annotation * data management and organization through the use of the S4 class structure * identification of differentially expressed genes...
2004 Sep 20
4
Multiple operations on list
Hello, suppose I have a list with matrices: a=list(x1=matrix(rnorm(10),5,2),x2=matrix(rnorm(10),5,2),x3=matrix(rnorm(10),5,2)) I want to compute for all combination of xi and xj (x1,x2 x1,x3 and x2,x3) a value. This value is given for the pair x1,x2 by trace(x1%*%t(x1)%*%x2%*%t(x2)) / trace(x1%*%t(x1))*trace(x2%*%t(x2)) I know that product matrices t(xi)%*%xi can be obtained by: