Coding/Python Matlab

matlab 2 y axes overlaid plots

smores 2022. 9. 8. 06:10

x = linspace(0,25);
y = sin(x/2);
yyaxis left
plot(x,y);
r = x.^2/2;
yyaxis right;
plot(x,r);