<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">Le 02/16/2016 01:00 PM, Jan Åge
Langeland a écrit :<br>
</div>
<blockquote cite="mid:56C30F6F.6060803@online.no" type="cite">
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
On 16.02.2016 11:55, Eric Dubois wrote:<br>
<blockquote
cite="mid:CAGgDjFRjsFUUeHZ00WOgy1QziEGrTpSamJ_E1rdqestMwb6+RQ@mail.gmail.com"
type="cite">
<div dir="ltr">
<div><span style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Don’t other Scilab users share my concern?</span>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> Regards</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> Éric.</span></p>
<br>
</div>
</div>
</blockquote>
I have a similar (but simpler) problem, with stacksize(). All
my old scripts containing stacksize('max') etc. need to be
modified. <br>
<br>
All it will take is to keep the standard function stacksize(a)
in Scilab 6, just let it do nothing. <br>
</blockquote>
<br>
Well, you have your fix: add the definition of a dummy stacksize()
function at the beginning of your init.<br>
My 5 cents fix is this:<br>
<br>
//on older version of scilab, set the memory to the max<br>
version_numbers = getversion('scilab');<br>
if version_numbers(1) < 6 then<br>
stacksize('max');<br>
end<br>
<br>
that I added to all my ressource-hungry scripts.<br>
<br>
But you are right, I don't see why they did not implement a dummy
stacksize() that just output a warning about the fact that it's
useless, obsolete and should not be used in new code.<br>
<br>
Antoine<br>
<br>
<blockquote cite="mid:56C30F6F.6060803@online.no" type="cite"> <br>
Jan Å<br>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<br>
<pre wrap="">_______________________________________________
users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:users@lists.scilab.org">users@lists.scilab.org</a>
<a class="moz-txt-link-freetext" href="http://lists.scilab.org/mailman/listinfo/users">http://lists.scilab.org/mailman/listinfo/users</a>
</pre>
</blockquote>
<br>
<br>
<pre class="moz-signature" cols="72">--
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
Antoine Monmayrant LAAS - CNRS
7 avenue du Colonel Roche
BP 54200
31031 TOULOUSE Cedex 4
FRANCE
Tel:+33 5 61 33 64 59
email : <a class="moz-txt-link-abbreviated" href="mailto:antoine.monmayrant@laas.fr">antoine.monmayrant@laas.fr</a>
permanent email : <a class="moz-txt-link-abbreviated" href="mailto:antoine.monmayrant@polytechnique.org">antoine.monmayrant@polytechnique.org</a>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
</pre>
</body>
</html>