Matrix.MapInto<T, U, V>(Func<T, U, V>, Matrix<T>, Matrix<U>, Matrix<V>) Method

Applies a function to the corresponding elements of two matrices and returns the result in a third matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<V> MapInto<T, U, V>(
	Func<T, U, V> function,
	Matrix<T> first,
	Matrix<U> second,
	Matrix<V> result
)

Parameters

function  Func<T, U, V>
A delegate that represents a function of two variables
first  Matrix<T>
A matrix whose elements serve as the first argument to the function.
second  Matrix<U>
A matrix whose elements serve as the second argument to the function.
result  Matrix<V>
The matrix that is to hold the result. May be null.

Type Parameters

T
U
V

Return Value

Matrix<V>
The result of applying function to the corresponding elements of first and second.

Exceptions

ArgumentNullExceptionfunction is null.

-or-

first is null

-or-

second is null

DimensionMismatchException

The number of rows of first does not equal the number of rows of second.

-or-

The number of columns of first does not equal the number of columns of second.

See Also