Files
matlab-learning/lab4/exercise4_13.m
2025-11-26 19:01:27 +08:00

8 lines
148 B
Matlab

subplot(2,2,2);
x=linspace(-pi/2,pi/2,100);
y=sqrt(cos(x));
plot(x,y);
subplot(2,2,3);
x=linspace(-2,2);
y=linspace(-4,4);
ezsurfc('x.^2/4+y.^2/16')