Pseudo Inverse Matrix
10 ビュー (過去 30 日間)
古いコメントを表示
Hi everybody, I have a question about pseudo-inverse matrix and solve the equation with that matrix inside. I need to solve this system:
H1j = H1 Hj+ with dimension (3x3) = (4x3) (3x4) and
Hj1 = Hj H1+ with dimension (3x3) = (4x3) (3x4)
(where 1j, 1 are the indices and j+ means j as indices and + as pseudo inverse matrix) (I hope that you'll understand) so in the two equation I know everything but not: Hj+ and Hj
Can someone help me? Of course you can ask me some explanation...
0 件のコメント
回答 (3 件)
Walter Roberson
2012 年 1 月 11 日
Those systems are not possible. Matrix multiplication of a 4x3 with a 3x4 will give you a 4x4 not a 3x3 .
0 件のコメント
Davide
2012 年 1 月 12 日
1 件のコメント
Walter Roberson
2012 年 1 月 12 日
? Are you looking for the mathematical definition of pseudo-inverse? Or are you looking for it worked-out symbolically in the 4x3 case?
Dr. Seis
2012 年 1 月 12 日
If you have the following situation:
G*m = d
where,
G = (MxN) % Known
m = (NxP) % Unknown
d = (MxP) % Known
Then to find m, you can either do:
m = G\m
Or... the not recommended method (from an execution time and numerical accuracy standpoint) which involves computing the pseudoinverse or generalized inverse of G, which is done by:
generalize_inverse_of_G = (G'*G)\G'
and
m = generalize_inverse_of_G * d
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!