Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *MaxEvery(TMtxVec *Vec) const; | Vectorised maximum. |
| 2 | TMtxVec *MaxEvery(TMtxVec *Vec, int VecIndex, int Index, int Len) const; | Compare Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1] and store result in Self. |
| 3 | TMtxVec *MaxEvery(TMtxVec *Vec1, TMtxVec *Vec2) const; | Compare all Vec1 elements with corresponding Vec2 elements and store bigger value in Self. |
| 4 | TMtxVec *MaxEvery(TMtxVec *Vec1, TMtxVec *Vec2, int Vec1Index, int Vec2Index, int Index, int Len) const; | Compare Vec1 elements [Vec1Index]..[Vec1Index+Len-1] with Vec2 object elements [Vec2Index]..[Vec2Index+Len-1] and store bigger value in Self. |
Overload 1: TMtxVec *MaxEvery(TMtxVec *Vec) const;
Vectorised maximum.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * |
Compares Vec values with corresponding elements in the calling object and stores the bigger value in Self. Size and TMtxVec::Complex property of the calling object are set automatically. Supports real value data only.
Overload 2: TMtxVec *MaxEvery(TMtxVec *Vec, int VecIndex, int Index, int Len) const;
Compare Vec elements [VecIndex]..[VecIndex+Len-1] with calling object elements [Index]..[Index+Len-1] and store result in Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
An exception is raised if Vec and calling object TMtxVec::Complex property do not match or if array borders are overrun/underrun. Supports real value data only.
Overload 3: TMtxVec *MaxEvery(TMtxVec *Vec1, TMtxVec *Vec2) const;
Compare all Vec1 elements with corresponding Vec2 elements and store bigger value in Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TMtxVec * | |
| 2 | Vec2 | TMtxVec * |
Stores the results in to the calling object. Size and TMtxVec::Complex property of calling object are adjusted automatically to match those of Vec1 and Vec2. An exception is raised if Vec1 and Vec2 size and TMtxVec::Complex property do not match. Supports real value data only.
Overload 4: TMtxVec *MaxEvery(TMtxVec *Vec1, TMtxVec *Vec2, int Vec1Index, int Vec2Index, int Index, int Len) const;
Compare Vec1 elements [Vec1Index]..[Vec1Index+Len-1] with Vec2 object elements [Vec2Index]..[Vec2Index+Len-1] and store bigger value in Self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TMtxVec * | |
| 2 | Vec2 | TMtxVec * | |
| 3 | Vec1Index | int | |
| 4 | Vec2Index | int | |
| 5 | Index | int | |
| 6 | Len | int |
Stores the results in to the calling object elements [Index]..[Index+Len-1]. Size and TMtxVec::Complex properties of the calling object must be set explicitly. An exception is raised if TMtxVecBase::ConditionCheck is True and array borders are overrun or underrun.