This commit is contained in:
2025-11-03 11:24:09 +08:00
parent 7d58efea2f
commit 7c647fa9e0
16 changed files with 487 additions and 0 deletions

8
C6_6_17.m Normal file
View File

@@ -0,0 +1,8 @@
x=0:0.1:1;
y=0:0.2:2;
[X,Y]=meshgrid(x,y);
z=X.^2+Y.^2;
interp2(x,y,z,0.5,0.5)
interp2(x,y,z,[0.5,0.6],0.5)
interp2(x,y,z,[0.5,0.6]',[0.4,0.5])
interp2(x,y,z,[0.5,0.6]',[0.4,0.5],'spline')