필터 지우기
필터 지우기

Building a surface plot

조회 수: 3 (최근 30일)
Tom
Tom 2013년 2월 23일
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일
[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개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by