plot function y axis

1 visualización (últimos 30 días)
Klaudio Myrtaj
Klaudio Myrtaj el 28 de Mzo. de 2020
Respondida: Star Strider el 28 de Mzo. de 2020
Hi !
I have to plot two vectors 1000x1 with the plot function.
>> T01 = linspace(-40,10,1000);
>> RH = linspace(1,100,1000);
>> c2 = 150;
>> RH_cond(T01, RH,c2);
>> T01= T01';
The vectors are "T01" and the output of the function RH_cond.
This is the result. But I want to see all the y axis, from 1 to 100.
Thank you !

Respuestas (1)

Star Strider
Star Strider el 28 de Mzo. de 2020
Put:
ylim([1 100])
after the plot call.

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by