How do I specify range for my x axis using the plot function
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]
0 Kommentare
Antworten (2)
VBBV
am 20 Jun. 2022
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

