My recollection (which may be in error) is that the Moore-Penrose inverse of
A is:
(A^tA)^{-1}A^t which exists
if
A^tA is invertible (i.e. if the columns of
A are independent.) (I'm using ^ to indicate exponenents as in TeX
source.)
A^tA is square, and there are many existing routines
to invert a square matrix - I'm sure there are some Perl modules that do this, although you could write your own as an exercise. You indicate above that
A and the M-P inverse are
symmetric, but I don't believe this is correct. The point of the M-P inverse is that it can be applied to non-square matrices.
chas
(Update: BTW, if you have a system of equations
Ax=b
then
x=(A^tA)^{-1}A^tb is the usual "least squares"
solution, i.e. the
x for which
Ax is closest to
b.)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.