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

4 lines
56 B
Matlab

x=0:0.1:4*pi;
y=sin(x);
plot(x,y);
axis([-inf,inf,0,1]);