How do I specify range for my x axis using the plot function

1 次查看(过去 30 天)
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]

回答(2 个)

Chris Burschyk
Chris Burschyk 2022-6-20
x = linspace(0,2*pi);
y = cos(x);
plot(x,y)
xlim([-2*pi, 6*pi])

VBBV
VBBV 2022-6-20
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)

类别

Help CenterFile Exchange 中查找有关 Discrete Data Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by