I've tried hard to find a way to exponentiate each element of a whole matrix 
such that if I start with A

A = [ 2   3
      2   4]

I can get back B

B = [ 7.38   20.08
      7.38   54.60]

I've tried

B <- exp(A) but no luck.

Thanks

J


===============================
Dr. Jim Maas
University of East Anglia

______________________________________________
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.

Reply via email to