linear function

Matrix linear(
  1. Matrix matrix
)

linear of a matrix

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

Implementation

Matrix linear(Matrix matrix) {
  return matrix;
}