Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Min() const; | Minimum value. |
| 2 | double Min(int Index, int Len) const; | Calculate the minimum value from calling object elements [Index]..[Index+Len-1]. |
| 3 | void Min(double &AMin, int Index, int Len) const; | Calculate the minimum value from calling object elements [Index]..[Index+Len-1]. |
| 4 | void Min(double &AMin, int &AIndex, int Index, int Len) const; | Calculate the minimum value of calling object elements [Index]..[Index+Len-1]. |
| 5 | void Min(double &AMin, int &AIndex) const; | Calculate the minimum value of all calling object elements. |
| 6 | int Min(TCplx &AMin, int Index, int Len) const; | Same as the clMatrix::Minc method. |
Overload 1: double Min() const;
Minimum value.
Returns: The minimum value of all calling object elements. The result is a real value.
An exception is raised if calling object clMatrix::Complex property is true.
Overload 2: double Min(int Index, int Len) const;
Calculate the minimum value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
The result is a real value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrun.
Overload 3: void Min(double &AMin, int Index, int Len) const;
Calculate the minimum value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMin | double & | |
| 2 | Index | int | |
| 3 | Len | int |
The result AMin is a real value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrun.
Overload 4: void Min(double &AMin, int &AIndex, int Index, int Len) const;
Calculate the minimum value of calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMin | double & | |
| 2 | AIndex | int & | |
| 3 | Index | int | |
| 4 | Len | int |
The AMax parameter returns the minimum value. The AIndex parameter returns the index of minimum value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrud/underrun.
Overload 5: void Min(double &AMin, int &AIndex) const;
Calculate the minimum value of all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMin | double & | |
| 2 | AIndex | int & |
The AMin parameter returns the minimum value. The AIndex parameter returns the index of minimum value. An exception is raised if calling object clMatrix::Complex property is true.
Overload 6: int Min(TCplx &AMin, int Index, int Len) const;
Same as the clMatrix::Minc method.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMin | TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |