figure
axes
xv = linspace(log(5e5), log(1e7), 100);
yv = linspace(log(0.6), log(2000), 100);
[X, Y] = meshgrid(xv, yv);
Z = log((0.037 .* (X.^0.8) .* Y )./ (1 + 2.443 .* (X .^ -0.1) .* (Y .^ (2/3) - 1)));
mesh(X, Y, real(Z));
grid on

 채택된 답변

dpb
dpb 2018년 7월 22일
편집: dpb 2018년 7월 22일

0 개 추천

You might try
surf(X, Y, real(Z),'FaceColor','interp','EdgeColor','none');
ylim([0 2])
for starters...

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

질문:

2018년 7월 22일

댓글:

2018년 7월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by