Design an x-y plot for the following where the values of x are from 0 to 20π with a spacing of π/100

1 次查看(过去 30 天)
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

采纳的回答

Murali Krishna
Murali Krishna 2015-5-28
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 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by