<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#330000">
On 02/04/2012 17:43, Sylvestre Ledru wrote:
<blockquote cite="mid:4F79C910.3050203@scilab-enterprises.com"
type="cite">On 02/04/2012 17:41, Adrien Vogt-Schilb wrote:
<br>
<blockquote type="cite">hi
<br>
<br>
can anyone give me a link to the doc of
<br>
export_to_hdf5
<br>
<br>
i am aware it is beta and everything
<br>
</blockquote>
There is no doc but the behavior is the same as save() expect that
the name of the variable has to be quoted:
<br>
<br>
a=eye
<a class="moz-txt-link-rfc2396E" href="http://help.scilab.org/docs/5.3.3/en_US/eye.html"><http://help.scilab.org/docs/5.3.3/en_US/eye.html></a>(2,2);b=ones
<a class="moz-txt-link-rfc2396E" href="http://help.scilab.org/docs/5.3.3/en_US/ones.html"><http://help.scilab.org/docs/5.3.3/en_US/ones.html></a>(a);
<br>
save('val.dat',a,b);
<br>
becomes
<br>
save('val.dat',"a","b");
<br>
<br>
As you said, it is beta and everything ;)
<br>
<br>
S
<br>
<br>
<br>
</blockquote>
thanks<br>
<br>
is there an equivalent of listvarinfile ?<br>
</body>
</html>