subplot of trigonometric function

15 visualizaciones (últimos 30 días)
Yung Xi
Yung Xi el 24 de Oct. de 2019
Comentada: Steven Lord el 24 de Oct. de 2019
Hi,
I want to make a 3x1 subplot (1 column and 3 row) for 3 trigonometric graphs
y = sin(x)
y= cos(x)
y = tan(x)
for x = 1:0.1:50
What code to do this? Thank you.

Respuestas (1)

Stephan
Stephan el 24 de Oct. de 2019
A = @(x) sin(x);
subplot(3,1,1)
fplot(A,[1 50])
B = @(x) cos(x);
subplot(3,1,2)
fplot(B,[1 50])
C = @(x) tan(x);
subplot(3,1,3)
fplot(C,[1 50])
  2 comentarios
Yung Xi
Yung Xi el 24 de Oct. de 2019
Thank you. What code I use to change title for each graph, axis label, and line color?
Steven Lord
Steven Lord el 24 de Oct. de 2019
The Formatting and Annotation chapter in the documentation describes functions, tools, and techniques you can use to customize the appearance of your plots.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by