T.R | Title | User | Personal Name | Date | Lines |
---|
1563.1 | may or may not be practical depending... | ALLVAX::JROTH | I know he moves along the piers | Fri Feb 14 1992 20:24 | 11 |
| If the eigensystem of the matrix is ill conditioned, then this
approach will be troublesome in practice. Other approaches that
may be practical would be the usual binary powering approach,
particulary if you have an integral matrix or are doing something
with number theory or in finite fields...
I'd recommend looking thru the chapter on functions of matrices in
Golub and Van Loan _Matrix Computations_ - an excellent reference
on this sort of thing.
- Jim
|
1563.2 | on the different methods, when to use which.. | STAR::ABBASI | | Tue Feb 18 1992 01:01 | 17 |
|
more relating to this:
Expansion by power series is certinaly faster method on a digital computer
but the resulting matrix might not be in closed form.
example to evaluate exp(A):
expand exp(A) as 1 + At + A^2/2! + .... (is a convergent)
is faster to find exp(A) this way than the cayley-hamilton method,
but might not be closed form.. i dont know what is it, i just love
closed form solutions, does not every one?..
back to study more on this...
/nasser
|
1563.3 | a belated reply | CSSE::NEILSEN | Wally Neilsen-Steinhardt | Fri Oct 16 1992 13:04 | 13 |
| In a well-conditioned system, most methods give eigenvalues and eigenvectors
as part of the same solution.
Transform the matrix to the basis set of the eigenvectors, in which it is a
diagonal matrix. Apply the function to each eigenvalue along the diagonal.
Transform the resulting matrix back to the original basis set.
This works for all functions which can be expanded in a series.
If you work out the algebra, you will see a lot of products of the transform
matrix and its inverse, and these products must be equal to the unit matrix.
I forget the (common) condition which makes this true, but it was true for
the matrices I worked on for my thesis.
|
1563.4 | Been wondering about the silence | VMSDEV::HALLYB | Fish have no concept of fire. | Fri Oct 16 1992 13:33 | 1 |
| Nice to see you're still around, Wally
|