You are currently browsing the daily archive for August 17, 2009.
Matlab is powerful high level programming and simulation
the most powerful of it, I think in its library of numerical function and the visualization of course
// Matlab adalah bahasa pemrograman tingkat tinggi dan simulasi yang powerful
// yang paling powerful dari itu saya pikir dari library numeriknya, dan visualisasi tentunya
example
contoh matlab script :
%====MAKE A GRID
% program grid
x=0:1:10;
y=0:1:10;
z=0:1:5;
surf(x,y,z),hold on
hold off
% ======== end


comments