Matrix<T>.MapInPlace(Func<T, T>) Method

Applies a function in-place to the elements of a matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Matrix<T> MapInPlace(
	Func<T, T> function
)

Parameters

function  Func<T, T>
A delegate that represents a function of one variable

Return Value

Matrix<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionfunction is null.

See Also