Building a surface plot

2 views (last 30 days)
Tom
Tom on 23 Feb 2013
Please would someone be willing to help me build a surface plot based on this code:
a = 5
b = 6
x = 1:a;
y = 1:b;
where z = sin(x/a)*sin(y/b)

Accepted Answer

Walter Roberson
Walter Roberson on 23 Feb 2013
[X, Y] = meshgrid(x, y);
z = sin(X ./ a) * sin(y ./ b);
surf(x, y, z)
  1 Comment
Tom
Tom on 23 Feb 2013
That's exactly what I wanted, many thanks.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!