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
leica2.m Normal file
View File

@@ -0,0 +1,10 @@
filename = 'leika.txt';
fp = fopen(filename,"r");
i = 0;
while ~feof(fp)
i = i + 1;
for j = 1 : 4
zb(i,j)=fscanf(fp,'%f',1);
end
end
fclose(fp);