フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

In item 7, I need to use short labels for the x, y, z axes. How it is? Thank you

1 回表示 (過去 30 日間)
Vadim Potorocha
Vadim Potorocha 2020 年 11 月 17 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
x = -4:0.1:4;
y = -4:0.1:4;
[X,Y] = meshgrid(x,y)
Z = cos(37.6*X).*X.^3-Y.^2;
figure('Name','Zadanie 7','NumberTitle','off');
surfc(X,Y,Z);
xlabel 'x'
ylabel 'y'
zlabel 'Z'
print 7_1.png
hold off
figure('Name','Zadanie 7_1','NumberTitle','off');
mesh(X,Y,Z);
xlabel 'x'
ylabel 'y'
zlabel 'Z'
print 7_2.png
hold off
  4 件のコメント
Vadim Potorocha
Vadim Potorocha 2020 年 11 月 17 日
the teacher told me about a short format of this, but in task i need it how it done
Image Analyst
Image Analyst 2020 年 11 月 17 日
What is item 7?
Your graph looks like this. The numbers for the x and y axes do not have any numbers after the decimal point, so what do you mean by "short labels for the x, y, z axes."?

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by