How to make rectangular meshgrid
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi i wanted to how can we create and plot a rectangular meshgrid. Thanks in advance
0 Kommentare
Antworten (1)
Walter Roberson
am 29 Aug. 2018
Example:
[X, Y] = meshgrid( linspace(-2,2), linspace(-pi, pi) );
Z = X/10 + X .* sin(Y);
surf(X, Y, Z, 'edgecolor', 'none');
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!