Building a surface plot

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)

 채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 23일

0 개 추천

[X, Y] = meshgrid(x, y);
z = sin(X ./ a) * sin(y ./ b);
surf(x, y, z)

댓글 수: 1

Tom
Tom 2013년 2월 23일
That's exactly what I wanted, many thanks.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

제품

태그

질문:

Tom
2013년 2월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by