|
From: Xavier G. <gn...@ob...> - 2005-02-17 11:15:12
|
Hi,
How can I save (and relaod) a matrix into a binary file *with* matrix
shape and type storage.
I have a feature request :
Basically, it would be great to be able to do something like :
X = rand(100,100)
BSave('foo.dat', X)
Y = BLoad('foo.dat')
and at this point, we sould have X==Y (without having to use reshape and
having to take care on types)
Waiting for such a feature, I'm using gzipped ASCII files but IMHO it is
far to be the best solution.
Cheers.
Xavier.
ps : Everything else seems to work just great in 0.72 : Thank's for all
the job on matplotlib.
|