From Saturday, Nov 23rd 7:00 PM CST - Sunday, Nov 24th 7:45 AM CST, ni.com will undergo system upgrades that may result in temporary service interruption.
We appreciate your patience as we improve our online experience.
Hello i am trying to run the next code in labview 8.5 and i know this code is good because I executed in matlab and everything was fine, but in the line where say "axis" labview say "Error 90046" and i dont understand the reason. Somoene knows what is happening? labview can't run 3D map with mathscript?
n=500; x=[20,4,6]; y=[10,8,90]; z=[16,2,50]; color=rand(n,3); hold on axis([min(x) max(x) min(y) max(y) min(z) max(z)]) for i=1:length(x); plot3(x(i),y(i),z(i),'*','color',color(i,:)) axis([min(x) max(x) min(y) max(y) min(z) max(z)]) end axis([min(x) max(x) min(y) max(y) min(z) max(z)]) xlabel('X'); ylabel('Y'); zlabel('Z'); view(36,18) grid on hold off