TP-probleme-inverse-3D/TP1/estimation_t.m

7 lines
135 B
Mathematica
Raw Normal View History

2023-06-25 14:38:01 +00:00
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