TP-probleme-inverse-3D/TP1/estimation_t.m
2023-06-25 16:38:01 +02:00

7 lines
135 B
Matlab

function t_estimee = estimation_t(E_estimee, R_sol)
T = E_estimee / R_sol;
t_estimee = [ T(3,2) ; T(1,3) ; T(2,1) ];
end