Returns a matrix whose elements are the minimum of the components of a matrix
and a real number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> Min<T>(
T value,
Matrix<T> matrix
)
Public Shared Function Min(Of T) (
value As T,
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ Min(
T value,
Matrix<T>^ matrix
)
static member Min :
value : 'T *
matrix : Matrix<'T> -> Matrix<'T>
Parameters
- value
- Type: T
A real number. - matrix
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are the largest of the corresponding element
of
matrix and
value.
Reference