help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: memory erorr


From: Christoph Spiel
Subject: Re: memory erorr
Date: Fri, 11 May 2001 15:55:04 +0200
User-agent: Mutt/1.2.5i

On Fri, May 11, 2001 at 02:16:14PM +0200, Daniel Heiserer wrote:
> I work with 32bit octave on IRIX64.
> I want to load a file
> fort.41.mat (matlab4 file) which is not small:
> 
> 1588219885 May 11 10:06 fort.41.mat
> 
> Sometimes I can load the data, but I cannot save it then.
> ==> "memory exhausted"

Assuming that the file's size converts 1:1 into
the variable's memory footprint, you are close
to the 4G (= 2^32) limit and your matrix then
occupies 37% of the total address space.  If you
duplicate your variable for some reason, 74% are
occupied, and you cannot create a temporary of
it anymore.  This duplicate might be the reason
why you "sometimes" cannot save it.

Maybe clearing the superfluous instance(s) of your
huge matrix can help, however, this is not a
real solution for your problem.


-cls

-- 
Christoph L. Spiel  <address@hidden>
Hammersmith Consulting,  web: www.hammersmith-consulting.com
Phone: +49-8022-662908, fax: +49-8022-662909



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]