How to make Surf Plot

조회 수: 4 (최근 30일)
balaji
balaji 2020년 3월 15일
답변: Walter Roberson 2020년 3월 15일
I got a following answer for two variables problem having x1 and x2 and function evaluation for the population size of 10. How to do surf plot for the same
POP =
1.0e-06 *
0.0010 0.8456
FEVAL =
1.0e-11 *
0.1430
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 3월 15일
That looks to me like the result of an optimization function in two variables.

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 3월 15일
xmin = 0; xmax = 1e-8; %adjust as appropriate
ymin = 0; ymax = 2e-11; %adjust as appropriate
fsurf(@NameOfFunction, [xmin, xmax, ymin, ymax])

추가 답변 (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