Coding/Python Matlab

Matlab - 좌우 서로 다른 Y축 스케일의 두 플롯 겹쳐서 그리기

smores 2022. 12. 20. 08:21

yyaxis left
plot(X,C,'.-')
yyaxis right
stairs(X,RSI)
yyaxis left
ylabel('stock price')
ylim([0 200])
yyaxis right
ylabel('RSI')
ylim([0 100])

 

 

 

'Coding > Python Matlab' 카테고리의 다른 글

파이썬 round() 함수 문제점  (0) 2023.01.21
Anaconda Virtual Environment  (0) 2023.01.13
Matlab - ginput() get coordinate on the plot by mouse click  (0) 2022.11.30
Matlab - bmp_to_data()  (0) 2022.11.12
Python - interpolate 1D & 2D  (0) 2022.11.10