Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Vadim Potorocha
Vadim Potorocha le 17 Nov 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
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 commentaires
Vadim Potorocha
Vadim Potorocha le 17 Nov 2020
the teacher told me about a short format of this, but in task i need it how it done
Image Analyst
Image Analyst le 17 Nov 2020
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."?

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by