<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">Hello,<br>
<br>
Le 31/10/2018 à 11:48, FMR a écrit :<br>
</div>
<blockquote cite="mid:1540982886662-0.post@n3.nabble.com"
type="cite">
<pre wrap="">Hi,
I'm a new SciLab user and have a question concerning the Variable Browser. I
know in Matlab it is possible to open a structure with double-click and
visualize all variable of the structure (I think it is useful for a quick
verification).
But in SciLab, when a double-click in the structure, I have a warning
message "Variables of type "st" can not be edited."
Could you indicate me how to simply visualize and navigate in a structure
(if possible) without write it in the console?</pre>
</blockquote>
<br>
tree_show() does it. Example:<br>
<br>
s.r = grand(2,3,"uin",-9,9);<br>
s.p = [1+%z -%z^2; 2*%z^3 -1];<br>
s.t = ["hi" "hello";"allo" "holà"];<br>
s.b = rand(1,4)<0.5;<br>
s.L=list("Scilab", %i, %f)<br>
tree_show(s)<br>
<br>
<tt>--> s.L=list("Scilab", %i, %f)</tt><tt><br>
</tt><tt> s = </tt><tt><br>
</tt><tt> r: [2x3 constant]</tt><tt><br>
</tt><tt> p: [2x2 polynomial]</tt><tt><br>
</tt><tt> t: [2x2 string]</tt><tt><br>
</tt><tt> b: [1x4 boolean]</tt><tt><br>
</tt><tt> L: list</tt><br>
<br>
<img src="cid:part1.53F7EB20.364FB985@free.fr" alt=""><br>
<br>
HTH<br>
Samuel<br>
<br>
</body>
</html>