<div dir="ltr">Hi!<div><br></div><div style>I know it is pretty much the same as you did before, but has been useful for me in the past. Instead of saving each array separately, just create a dictionary and save the it, something like</div>

<div style><br></div><div style>d= {put_all_your_arrays_here}</div><div style>savez_compressed('file.npz', **d) </div></div><div class="gmail_extra"><br clear="all"><div><div><br></div>-- Camilo Jiménez<br></div>

<br><br><div class="gmail_quote">On Sat, Jun 15, 2013 at 2:11 PM, Eric Firing <span dir="ltr"><<a href="mailto:efiring@hawaii.edu" target="_blank">efiring@hawaii.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im">On 2013/06/15 6:06 AM, Pierre GM wrote:<br>
><br>
> On Jun 15, 2013, at 17:35 , Matthew Brett <<a href="mailto:matthew.brett@gmail.com">matthew.brett@gmail.com</a>> wrote:<br>
><br>
>> Hi,<br>
>><br>
>> On Sat, Jun 15, 2013 at 2:51 PM, Sudheer Joseph<br>
>> <<a href="mailto:sudheer.joseph@yahoo.com">sudheer.joseph@yahoo.com</a>> wrote:<br>
>>><br>
>>> Thank you very much for this tip.<br>
>>> Is there a typical way to save masked and the rest separately?. Not much familiar with array handling in numpy.<br>
>><br>
>> I don't use masked array myself, but it looks like it would be something like:<br>
>><br>
>> eof1_unmasked = np.array(eof1)<br>
>> eof1_mask = eof1.mask<br>
>><br>
>> then you could save those two.  Maybe a more maskey person could comment?<br>
><br>
> Instead of `eof1_unmasked=np.array(eof1)`, you could do `eof1_unmasked = eof1.data`. The '.data' attribute points to  a view of the masked array as a simple ndarray.<br>
><br>
> You may also wanna try `eof1.torecords()` that will return a structured array with dtype `[('_data',type_of_eof1),('_mask', bool)]`.<br>
<br>
</div>For automated saving and restoring, try this:<br>
<br>
<a href="http://currents.soest.hawaii.edu/hgstage/pycurrents/file/686c2802a6c4/file/npzfile.py" target="_blank">http://currents.soest.hawaii.edu/hgstage/pycurrents/file/686c2802a6c4/file/npzfile.py</a><br>
<span class="HOEnZb"><font color="#888888"><br>
Eric<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
NumPy-Discussion mailing list<br>
<a href="mailto:NumPy-Discussion@scipy.org">NumPy-Discussion@scipy.org</a><br>
<a href="http://mail.scipy.org/mailman/listinfo/numpy-discussion" target="_blank">http://mail.scipy.org/mailman/listinfo/numpy-discussion</a><br>
</div></div></blockquote></div><br></div>