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

Antworten (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)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 20 Jun. 2022

Beantwortet:

am 20 Jun. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by