scaled method

Matrix scaled(
  1. double scalar
)

Return copy of this with scaled elements by scalar

Implementation

Matrix scaled(double scalar) {
  return MatrixOperation.scalarMultiplication(this, scalar);
}