How to make rectangular meshgrid

4 vues (au cours des 30 derniers jours)
Kaushal Kishore
Kaushal Kishore le 29 Août 2018
Hi i wanted to how can we create and plot a rectangular meshgrid. Thanks in advance

Réponses (1)

Walter Roberson
Walter Roberson le 29 Août 2018
Example:
[X, Y] = meshgrid( linspace(-2,2), linspace(-pi, pi) );
Z = X/10 + X .* sin(Y);
surf(X, Y, Z, 'edgecolor', 'none');

Catégories

En savoir plus sur MATLAB Coder dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by