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

8 vues (au cours des 30 derniers jours)
Promise Olayemi
Promise Olayemi le 20 Juin 2022
Réponse apportée : VBBV le 20 Juin 2022
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]

Réponses (2)

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

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

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by