[R] Exponent of asymmetric matrix

2010-11-09 Thread zhiji19

Dear Experts,

the exponent of asymmetric matrix makes me very curious.
can anyone please explain to me "what will happen if we apply exponent to
the asymmetric matrix"?

Thank you very much 
-- 
View this message in context: 
http://r.789695.n4.nabble.com/Exponent-of-asymmetric-matrix-tp3035374p3035374.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Exponent of asymmetric matrix

2010-11-09 Thread Peter Langfelder
> the exponent of asymmetric matrix makes me very curious.
> can anyone please explain to me "what will happen if we apply exponent to
> the asymmetric matrix"?

The gates of Hell will open, the world will come to an end, and we
will all perish in a firestorm :)

Sorry, couldn't resist. Exponentiating a non-symmetric (or
anti-symmetric) matrix is no different from exponentiating a symmetric
matrix. For example the matrix T = cbind(c(0, 1), c(-1, 0)), i.e.

 [,1] [,2]
[1,]0   -1
[2,]10

generates rotations in the xy plane, that is exp(alpha * T) is the
rotation matrix in the xy plane by angle alpha.

Peter

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.