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])