Sync from remote server: 2025-10-12 18:56:41

This commit is contained in:
2025-10-12 18:56:59 +02:00
commit 7e8ee264aa
553 changed files with 161447 additions and 0 deletions

31
Tilt/matrici_vuote_IPL.m Executable file
View File

@@ -0,0 +1,31 @@
function [X_IPL,Y_IPL,Z_IPL,Xlocal_IPL,Ylocal_IPL,Zlocal_IPL,HShift_IPL,...
HShift_local_IPL,Azimuth_IPL,TempDef_IPL,Speed_local_IPL,Speed_IPL,...
Acceleration_local_IPL,Acceleration_IPL,AlfaX_IPL,AlfaY_IPL,ACCdef_IPL,...
MAGdef_IPL] = matrici_vuote_IPL(FileName)
X_IPL = [];
Y_IPL = [];
Z_IPL = [];
Xlocal_IPL = [];
Ylocal_IPL = [];
Zlocal_IPL = [];
HShift_IPL = [];
HShift_local_IPL = [];
Azimuth_IPL = [];
TempDef_IPL = [];
Speed_IPL = [];
Speed_local_IPL = [];
Acceleration_IPL = [];
Acceleration_local_IPL = [];
AlfaX_IPL = [];
AlfaY_IPL = [];
ACCdef_IPL = [];
MAGdef_IPL = [];
text = 'In Place Link has not been elaborated';
fileID = fopen(FileName,'a');
fmt = '%s \r';
fprintf(fileID,fmt,text);
fclose(fileID);
end