Need help on designing plot
3 次查看(过去 30 天)
显示 更早的评论
Dear all,
Can anyone help me with the below? Appreciate if anyone can help. Thank you!
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
Regards,
Martin
0 个评论
采纳的回答
Youssef Khmou
2015-5-27
编辑:Youssef Khmou
2015-5-27
defining the variable is the first step :
x=0:pi/100:20*pi;
using element wise operation :
y=x.*sin(x);
z=x.*cos(x);
Three dimensional graph is given by :
plo3t(x,y,z)
更多回答(0 个)
另请参阅
类别
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!