Matrix<T>.MapInto<U> Method

Applies a function to the elements of a matrix.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Matrix<U> MapInto<U>(
	Func<T, U> function,
	Matrix<U>? result
)

Parameters

function  Func<T, U>
A delegate that represents a function of one variable
result  Matrix<U>
The matrix that is to hold the result. May be null.

Type Parameters

U

Return Value

Matrix<U>
The matrix result.

Exceptions

ArgumentNullException

function is null.

See Also