Initial commit

This commit is contained in:
2025-10-10 17:29:33 +08:00
commit 49047b316d
47 changed files with 323 additions and 0 deletions

10
c5_5_9.m Normal file
View File

@@ -0,0 +1,10 @@
x=0:0.1:100;
y=10*x.*x;
subplot(2,2,1);plot(x,y);
title('plot(x,y)');grid on;
subplot(2,2,2);semilogx(x,y);
title('semilogx(x,y)');grid on;
subplot(2,2,3);semilogy(x,y);
title('semilogy(x,y)');grid on;
subplot(2,2,4);loglog(x,y);
title('loglog(x,y)');grid on;