mapElements abstract method

Matrix mapElements(
  1. double mapper(
    1. double element
    )
)

Performs element-wise mapping of this Matrix to a new one via passed mapper function

Implementation

Matrix mapElements(double Function(double element) mapper);