exponential function

Matrix exponential(
  1. Matrix matrix
)

exponential of a matrix

  • matrix The matrix to find the exponential
  • Returns The new matrix

Implementation

Matrix exponential(Matrix matrix) {
  return matrix.performFunction((a) => exp(a));
}