How do I specify range for my x axis using the plot function
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]
0 commentaires
Réponses (2)
VBBV
le 20 Juin 2022
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

