Design an x-y plot for the following where the values of x are from 0 to 20π with a spacing of π/100
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
BeTrayer EK
le 28 Mai 2015
Réponse apportée : Murali Krishna
le 28 Mai 2015
Design an x-y plot for the following where the values of x are from 0 to 20π with a spacing of π/100.
a. y = x.sin(x)
b. z = x.cos(x)
c. Convert the above 2D into a 3D plot using z as the third axis
0 commentaires
Réponse acceptée
Murali Krishna
le 28 Mai 2015
try this..
x=0:pi/100:20*pi;
y=x.*sin(x);
z=x.*cos(x);
plot(x,y);
plot(x,z);
plot3(x,y,z);
grid on;
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!