I need three lines on one graph
이전 댓글 표시
x=0:0.3:30;semilogy(x,exp(x))
coordinates x1= 0, 0,5
x2 = 0, 001
x3=0,001 - another line
답변 (3개)
TADA
2018년 12월 11일
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
2018년 12월 11일
0 개 추천
댓글 수: 1
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
2018년 12월 11일
0 개 추천
댓글 수: 1
TADA
2018년 12월 11일
If what you want is to change the label,
you can use
ylabel('something something');
and name it whatever you want
카테고리
도움말 센터 및 File Exchange에서 Directed Graphs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!