Computes the minimum value of each of the matrix columns.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleVector MinValue(
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Shared Function MinValue ( _
	A As DoubleMatrix _
) As DoubleVector
Visual C++
public:
static DoubleVector^ MinValue(
	DoubleMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.

Return Value

A vector.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if A has zero rows.

See Also