Matrix<T>.Map Columns In Place Method
Applies a function to each column in a matrix in-place.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A reference to this instance.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public Matrix<T> MapColumnsInPlace(
Action<Vector<T>> function
)
Parameters
Return Value
Matrix<T>A reference to this instance.
Remarks
function must operate on the columns of the matrix in-place.
Exceptions
Argument | function is null. |