Skip to main content
1-Visitor
January 28, 2015
Solved

How to raise each element of a Matrix to a power

  • January 28, 2015
  • 3 replies
  • 2916 views

Is there a way to raise each element of a matrix to a power without having to do it manually each one?

Best answer by StuartBruff

Raymond Alaniz wrote:

Is there a way to raise each element of a matrix to a power without having to do it manually each one?

eg, ...

3 replies

Werner_E
25-Diamond I
January 28, 2015

Yes, use vectorization.

23-Emerald V
January 28, 2015

Raymond Alaniz wrote:

Is there a way to raise each element of a matrix to a power without having to do it manually each one?

eg, ...

1-Visitor
January 29, 2015

Thank you both