Matrix<T>.Min Core Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Min | Returns a matrix whose elements are the minimum of the components of a matrix and a real number. |
Min | Returns a matrix whose elements are the minimums of the components of two vectors. |
MinCore(T, Matrix<T>)
Returns a matrix whose elements are the minimum of the components of a matrix
and a real number.
protected virtual Matrix<T> MinCore(
T value,
Matrix<T>? result
)
Parameters
Return Value
Matrix<T>A matrix whose elements are the largest of the corresponding element of this matrix and value.
MinCore(Matrix<T>, Matrix<T>)
Returns a matrix whose elements are the minimums of the components of two vectors.
protected virtual Matrix<T> MinCore(
Matrix<T> other,
Matrix<T>? result
)
Parameters
Return Value
Matrix<T>A matrix whose elements are the largest of the corresponding elements of this matrix and other.
Exceptions
Dimension | The length of this matrix is not equal to the length of other. |