Re: [R] invert 160000x160000 matrix

2007-08-14 Thread Patnaik, Tirthankar
, 2007 6:40 AM To: Paul Gilbert; Jiao Yang Cc: r-help@stat.math.ethz.ch Subject: Re: [R] invert 16x16 matrix While inverting the matrix may be a problem, if you need to solve an equation A*x = b you do not need to invert A, there exist iterative methods which do need A or inv

Re: [R] invert 160000x160000 matrix

2007-08-14 Thread Prof Brian Ripley
] invert 16x16 matrix While inverting the matrix may be a problem, if you need to solve an equation A*x = b you do not need to invert A, there exist iterative methods which do need A or inv(A) - all you need to provide is a function that computes A*x for an arbitrary vector x

Re: [R] invert 160000x160000 matrix

2007-08-14 Thread Jiao Yang
googled it, yet did not get any good results. Thank you for your time. Best regards, Jiao - Original Message - From: Patnaik, Tirthankar [EMAIL PROTECTED] Date: Tuesday, August 14, 2007 2:07 am Subject: RE: [R] invert 16x16 matrix To: Moshe Olshansky [EMAIL PROTECTED], Paul

Re: [R] invert 160000x160000 matrix

2007-08-14 Thread Douglas Bates
- From: [EMAIL PROTECTED] [ On Behalf Of Moshe Olshansky Sent: Tuesday, August 14, 2007 6:40 AM To: Paul Gilbert; Jiao Yang Cc: r-help@stat.math.ethz.ch Subject: Re: [R] invert 16x16 matrix While inverting the matrix may be a problem, if you need to solve an equation

[R] invert 160000x160000 matrix

2007-08-13 Thread Jiao Yang
Can R invert a 16x16 matrix with all positive numbers? Thanks a lot! __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide

Re: [R] invert 160000x160000 matrix

2007-08-13 Thread jim holtman
You would need 200GB to store a since image, so if you have about 1TB of physical memory on your computer, it might be possible. On 8/13/07, Jiao Yang [EMAIL PROTECTED] wrote: Can R invert a 16x16 matrix with all positive numbers? Thanks a lot!

Re: [R] invert 160000x160000 matrix

2007-08-13 Thread Paul Gilbert
I don't think you can define a matrix this large in R, even if you have the memory. Then, of course, inverting it there may be other programs that have limitations. Paul Jiao Yang wrote: Can R invert a 16x16 matrix with all positive numbers? Thanks a lot!

Re: [R] invert 160000x160000 matrix

2007-08-13 Thread Moshe Olshansky
While inverting the matrix may be a problem, if you need to solve an equation A*x = b you do not need to invert A, there exist iterative methods which do need A or inv(A) - all you need to provide is a function that computes A*x for an arbitrary vector x. For such a large matrix this may be slow