Matrix.Map<T, U, V>(Func<T, U, V>, Matrix<T>, Vector<U>, Dimension) Method

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

Definition

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

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  Vector<U>
A vector whose elements, broadcast in the dimension specified by broadcastDimension, serve as the second argument to the function.
broadcastDimension  Dimension
A value that specifies whether the elements in second should be broadcast across rows or columns.

Type Parameters

T
U
V

Return Value

Matrix<V>
A matrix that is 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 length of first does not equal the length of second.

See Also