How do I specify range for my x axis using the plot function
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]
0 Commenti
Risposte (2)
VBBV
il 20 Giu 2022
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)
0 Commenti
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!