Matrix<T>.Map Rows In Place Method
Applies a function to each column in a matrix and returns the result as a vector.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A DenseVector<T> whose elements are the result of applying function to each column of the matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public Matrix<T> MapRowsInPlace(
Action<Vector<T>> function
)
Parameters
Return Value
Matrix<T>A DenseVector<T> whose elements are the result of applying function to each column of the matrix.
Remarks
The length of the returned vector equals the number of rows in the matrix.
Exceptions
Argument | function is null. |