apply method

Matrix apply(
  1. double function(
    1. double
    )
)

Return a copy of this where function was applied to every element

Implementation

Matrix apply(double Function(double) function) {
  return MatrixOperation.apply(this, function);
}