mapRows abstract method

Matrix mapRows(
  1. Vector mapper(
    1. Vector row
    )
)

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

Implementation

Matrix mapRows(Vector Function(Vector row) mapper);