Matrix.Min<T>(T, Matrix<T>) Method

Returns a matrix whose elements are the minimum of the components of a matrix and a real number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> Min<T>(
	T value,
	Matrix<T> matrix
)

Parameters

value  T
A real number.
matrix  Matrix<T>
A Matrix<T>.

Type Parameters

T

Return Value

Matrix<T>
A matrix whose elements are the largest of the corresponding element of matrix and value.

Exceptions

ArgumentNullExceptionmatrix is null.

See Also