x=0:0.3:30;semilogy(x,exp(x))
coordinates x1= 0, 0,5
x2 = 0, 001
x3=0,001 - another line

답변 (3개)

TADA
TADA 2018년 12월 11일

0 개 추천

x=0:0.3:30;
hold off;
semilogy(x,exp(x));
hold on;
semilogy(x,2*exp(x));
semilogy(x,10*exp(x));
Yuriy Gamiy
Yuriy Gamiy 2018년 12월 11일

0 개 추천

Thank you. Please, how we can change the Y axis. Y [0, 0,08]

댓글 수: 1

TADA
TADA 2018년 12월 11일
Sorry, I don't understand, what do you want to put in your Y axis?
what is that Y vector you wrote?

댓글을 달려면 로그인하십시오.

Yuriy Gamiy
Yuriy Gamiy 2018년 12월 11일

0 개 추천

Sorry, Can we call axis Y [0, 0,08] or Axis Y diapazon [0, 0,08] ?

댓글 수: 1

If what you want is to change the label,
you can use
ylabel('something something');
and name it whatever you want

댓글을 달려면 로그인하십시오.

카테고리

질문:

2018년 12월 11일

댓글:

2018년 12월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by