Re: [R] Help with R software

2007-11-16 Thread Charles C. Berry
On Fri, 16 Nov 2007, aparna m wrote: Hi Can anyone teall me how to perform matrix related operations using R like multiplication of a n*n matrix , finding transpose , inverse eigen values etc Yes. Its all in the manuals. Especially, An Introduction to R Section 5.7

Re: [R] Help with R software

2007-11-16 Thread John Sorkin
Aparna You can find information about matrix inversion in the MASS package [function: ginv()]. Matrix multiplication is performed using the %*% operator. Transpose is performed by the t() function. I suggest you do some searching. Open R, go to HELPHTML HELP then click on SEARCH ENGINE