How do I specify range for my x axis using the plot function
Mostrar comentarios más antiguos
x = linspace(0,2*pi);
y = cos(x);
plot( ??? ) if I want to run this code in the range of [−2π , 6π ]
Respuestas (2)
x = linspace(0,2*pi);
y = cos(x);
plot(x,y)
xlim([-2*pi, 6*pi])
1 comentario
Promise Olayemi
el 20 de Jun. de 2022
x = linspace(-2*pi,6*pi); %give those values here
y = cos(x);
plot(x,y)
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

