Plotting functions
2 次查看(过去 30 天)
显示 更早的评论
How to create a variable t that takes values from 0 to 2pie with step size 0.001 . I already given de value of y. I wish to know how to plot and versus t in separate figures. What about plot and versus t in the same figure and use different colour for each graph and label each of them.
Then if I want to divide a figure in two by using the subplot command, then plot and in the upper part and in the lower part which all plots versus t. how ya??
0 个评论
回答(2 个)
Walter Roberson
2011-2-19
t = 0:.001:2*pi;
For the rest, see the documentation for hold(), plot(), and subplot()
0 个评论
Matt Fig
2011-2-19
To elaborate on Walter's answer:
t = 0:.001:2*pi;
figure
plot(t,sin(t));legend('sin(t)')
figure
plot(t,cos(t));legend('cos(t)')
% Now on to subplotting:
figure
subplot(2,1,1)
plot(t,sin(t));legend('sin(t)')
subplot(2,1,2)
plot(t,cos(t));legend('cos(t)')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!