ApplyMatrixExtension<T> extension
- on
-
- Matrix<
T>
- Matrix<
Methods
-
applyByColumn(
T operator(T a, T b), Vector< T> vector, {Matrix<T> ? target, DataType<T> ? dataType, MatrixFormat? format}) → Matrix<T> -
Applies an
operator
and avector
over each column of this matrix. -
applyByRow(
T operator(T a, T b), Vector< T> vector, {Matrix<T> ? target, DataType<T> ? dataType, MatrixFormat? format}) → Matrix<T> -
Applies an
operator
and avector
over each row of this matrix.