Matrix<T>.MapColumnsInPlace Method

Applies a function to each column in a matrix in-place.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> MapColumnsInPlace(
	Action<Vector<T>> function
)

Parameters

function  Action<Vector<T>>
A delegate that represents a multivariate function.

Return Value

Matrix<T>
A reference to this instance.

Remarks

function must operate on the columns of the matrix in-place.

Exceptions

ArgumentNullExceptionfunction is null.

See Also