This commit is contained in:
2025-11-17 11:16:02 +08:00
parent 4bd2d87fc4
commit 1b3b07a7f6
35 changed files with 454 additions and 0 deletions

12
tjpc.m Normal file
View File

@@ -0,0 +1,12 @@
function sumLL=tjpc(L)
LL=dms2rad(mat2dms(L))
A=[1,1,1];
w=sum(LL(:))-pi;
w=dms2mat(rad2dms(w));
P=eye(3);
Naa=A*inv(P)*A';
Ka=-inv(Naa)*w;
V=A'*Ka;
L1=L+V;
LL=dms2rad(mat2dms(L1));
sumLL=sum(LL);