are there any issues of using Scilab 5.5.0 in Windows Vista OS, for graphics?
for the below code, it gives me a black screen when run in Windows Vista, but in Windows 7, it is perfectly ok.
However, when I run the below code in Windows Vista, using Scilab 5.4.1, it is able to display the correct plot. I do not know why plotting using Scilab 5.5.0 has problems, but not in Scilab 5.4.1, when I am using Windows Vista OS.
function f=zdt1(x)
f1_x1 = x(:,1);
g_x2 = 1 + 9 * ((x(:,2)-x(:,1)).^2);
h = 1 - sqrt(f1_x1 ./ g_x2);
f(:,1) = f1_x1;
f(:,2) = g_x2 .* h;
endfunction
X_in=rand(1000,2);
F_in=zdt1(X_in);
[F_out,X_out,Ind_out] = pareto_filter(F_in,X_in)
drawlater;
plot(F_in(:,1),F_in(:,2),'.r')
plot(F_out(:,1),F_out(:,2),'.b')
drawnow
<br/><hr align="left" width="300" />
View this message in context: <a href="http://mailinglists.scilab.org/Plotting-of-Graphs-in-Windows-Vista-OS-with-Scilab-5-5-0-are-there-issues-tp4031141.html">Plotting of Graphs in Windows Vista OS with Scilab 5.5.0 -- are there issues?</a><br/>
Sent from the <a href="http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html">Scilab users - Mailing Lists Archives mailing list archive</a> at Nabble.com.<br/>