How to make rectangular meshgrid

44 views (last 30 days)
Kaushal Kishore
Kaushal Kishore on 29 Aug 2018
Answered: Walter Roberson on 29 Aug 2018
Hi i wanted to how can we create and plot a rectangular meshgrid. Thanks in advance

Answers (1)

Walter Roberson
Walter Roberson on 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');

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!