Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure SizeToArray(var Dst: TCplxArray); | Sizes the array. |
| 2 | procedure SizeToArray(var Dst: TSCplxArray); | Sizes the array. |
| 3 | procedure SizeToArray(var Dst: TByteArray); | Sizes integer array. |
| 4 | procedure SizeToArray(var Dst: TDoubleArray); | Sizes double precision array. |
| 5 | procedure SizeToArray(var Dst: TSmallIntArray); | Sizes integer array. |
| 6 | procedure SizeToArray(var Dst: TIntegerArray); | Sizes integer array. |
| 7 | procedure SizeToArray(var Dst: TSingleArray); | Size single precision array. |
| 8 | procedure SizeToArray(var Dst: TWordArray); | Sizes integer array. |
Overload 1: procedure SizeToArray(var Dst: TCplxArray);
Sizes the array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TCplxArray |
Result: stored in self (calling object)
Sizes the Dst array so that it can hold all the values stored in the calling object. If the TMtxVec.Complex property is false an exception will be raised.
Overload 2: procedure SizeToArray(var Dst: TSCplxArray);
Sizes the array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TSCplxArray |
Result: stored in self (calling object)
Sizes the Dst array so that it can hold all the values stored in the calling object. If the TMtxVec.Complex property is false an exception will be raised.
Overload 3: procedure SizeToArray(var Dst: TByteArray);
Sizes integer array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TByteArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.
Overload 4: procedure SizeToArray(var Dst: TDoubleArray);
Sizes double precision array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TDoubleArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.
Overload 5: procedure SizeToArray(var Dst: TSmallIntArray);
Sizes integer array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TSmallIntArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.
Overload 6: procedure SizeToArray(var Dst: TIntegerArray);
Sizes integer array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TIntegerArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.
Overload 7: procedure SizeToArray(var Dst: TSingleArray);
Size single precision array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TSingleArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.
Overload 8: procedure SizeToArray(var Dst: TWordArray);
Sizes integer array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TWordArray |
Result: stored in self (calling object)
If the TMtxVec.Complex property is true the Length of the Dst array will be 2*TMtxVecBase.Length.