4 lines
71 B
Mathematica
4 lines
71 B
Mathematica
|
function [] = testGrid()
|
||
|
[X,Y]=meshgrid(1:1:10);
|
||
|
Z=2*X+Y
|
||
|
surf(X,Y,Z)
|