Files
matlab-learning/plotxy08.m
2025-10-10 17:29:33 +08:00

4 lines
63 B
Matlab

x = linspace(0,2*pi);
y1=sin(x);
y2=exp(-x);
plotyy(x,y1,x,y2);