octave-maintainers
[Top][All Lists]
Advanced

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

Loading in hdf5 format skips every other variable.


From: Joao Cardoso
Subject: Loading in hdf5 format skips every other variable.
Date: Fri, 07 Jul 2000 03:15:06 +0100

Hi,

Loading in hdf5 format skips every other variable. It skips also every
other variable contained in lists or structures.

Saving is OK.

octave:1> a=rand(3); b=["Hello";"dolly"]; c="Hola"; d=1:10; e.a=a;
e.b=b; e.c=c; e.d=d; f=list; f(1)=a; f(2)=b; f(3)=c; f(4)=d;
octave:2> save -hdf5 po  <---- 'h5dump po' at command line show that po
is OK                                     
octave:3> who -v

*** local user variables:

a  b  c  d  e  f

octave:4> clear
octave:5> load -hdf5 po                                          
octave:6> who

*** local user variables:

a  c  e

octave:7> e
e =
{
  a =

    0.088006  0.486185  0.958513
    0.936237  0.958996  0.187394
    0.842156  0.580846  0.661897

  c = Hola
}
octave:8> 

Thanks for blas and hdf5!
Joao



reply via email to

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