mapColumns abstract method

Matrix mapColumns(
  1. Vector mapper(
    1. Vector column
    )
)

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

Implementation

Matrix mapColumns(Vector Function(Vector column) mapper);