How do I specify range for my x axis using the plot function
显示 更早的评论
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]
回答(2 个)
x = linspace(0,2*pi);
y = cos(x);
plot(x,y)
xlim([-2*pi, 6*pi])
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

