How to make rectangular meshgrid
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi i wanted to how can we create and plot a rectangular meshgrid. Thanks in advance
0 Commenti
Risposte (1)
Walter Roberson
il 29 Ago 2018
Example:
[X, Y] = meshgrid( linspace(-2,2), linspace(-pi, pi) );
Z = X/10 + X .* sin(Y);
surf(X, Y, Z, 'edgecolor', 'none');
0 Commenti
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!