pow abstract method

Matrix pow(
  1. num exponent
)

Raise all the elements of the matrix to the power exponent and returns a new Matrix with these elements. Avoid raising a matrix to a float power, since it is a slow operation

Implementation

Matrix pow(num exponent);