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

3 lines
53 B
Matlab

x=linspace(0,2*pi,100);
y=[sin(x);cos(x)];
plot(x,y);