<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi,<br>
<br>
I've generated some binary function in a folder with the following code
:<br>
<br>
<blockquote>mode(-1)<br>
pathB=get_absolute_file_path('builder.sce')<br>
if isdef('BA_imateriaux') predef(0); clear BA_imateriaux; end<br>
//génération des librairies<br>
genlib('BA_materiaux',pathB+'macros\materiaux',%t);<br>
clear pathB;<br>
</blockquote>
<br>
It works perfect with that code,<br>
<blockquote>
<pre>function [alphaeR]=alphae(fck)
if (fck <=Cmax) then
alphaeR=Es/Ecm(fck)
else
disp("fck > C90/100 (EC2-3.1.2(2)P");
end
endfunction
</pre>
</blockquote>
<br>
but i've modified it with that, in order to test better help<br>
<blockquote><i>manedit('manedit')</i><br>
function [alphaeR]=alphae(fck)<br>
if (fck <=Cmax) then<br>
alphaeR=Es/Ecm(fck)<br>
else<br>
disp("fck > C90/100 (EC2-3.1.2(2)P");<br>
end<br>
endfunction<br>
<i>manedit alphae</i><br>
</blockquote>
<pre>
But now, the binary building stops on the following error message :
</pre>
<br>
<b>Warning !!!<br>
Scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION).<br>
Scilab may become unstable.<br>
<br>
</b>I've uninstalled Scilab 4.1.2 and delete temporary folder, delete
binary and then reinstalled but nothing change ? What can I do in order
to have the first state (of stability) ?<br>
<br>
Thanks in advance for any help<br>
Xavier Roguiez<br>
</body>
</html>