help-octave
[Top][All Lists]
Advanced

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

Re: Save produces large files


From: Keith Goodman
Subject: Re: Save produces large files
Date: Tue, 14 Jun 2005 08:45:47 -0700

On 6/14/05, Søren Hauberg <address@hidden> wrote:
> I need to save some large (approx. 200x10000) matrices. Is there a
> recommended data format for this. At school I'm short on disk space
> (stupid sysadmins :-) )

The space issue is easy to deal with. Regenerate the data every night
and save it to /tmp.

You can make your own "save -z -binary"

function zsave(filename,...)
save("-binary",filename,...)
system(["gzip " filename])  % Or bzip2

Reverse the process for zload.



-------------------------------------------------------------
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]