Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function CopyFromArray(const Src: TCplxArray): TMtxVec; | Copies values from an array. |
| └ indexed: function CopyFromArray(const Src: TCplxArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function CopyFromArray(const Src: TSCplxArray): TMtxVec; | Copies values from an array. |
| └ indexed: function CopyFromArray(const Src: TSCplxArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 3 | function CopyFromArray(const Src: TByteArray): TMtxVec; | Copies values from a 1 byte unsigned integer type Src array. |
| └ indexed: function CopyFromArray(const Src: TByteArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 4 | function CopyFromArray(const Src: TDoubleArray): TMtxVec; | Copies values from a real Src array. |
| └ indexed: function CopyFromArray(const Src: TDoubleArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 5 | function CopyFromArray(const Src: TSmallIntArray): TMtxVec; | Copies values from an 2 byte signed integer type Src array. |
| └ indexed: function CopyFromArray(const Src: TSmallIntArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 6 | function CopyFromArray(const Src: TIntegerArray): TMtxVec; | Copies values from an integer type Src array. |
| └ indexed: function CopyFromArray(const Src: TIntegerArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 7 | function CopyFromArray(const Src: TSingleArray): TMtxVec; | Copies values from a real single precision floating point Src array. |
| └ indexed: function CopyFromArray(const Src: TSingleArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function CopyFromArray(const Src: TCplxArray): TMtxVec;
Copies values from an array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplxArray |
Result: stored in self (calling object), returns self for chaining
Copies values from a complex array. The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TCplxArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from the Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplxArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 2: function CopyFromArray(const Src: TSCplxArray): TMtxVec;
Copies values from an array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSCplxArray |
Result: stored in self (calling object), returns self for chaining
Copies values from a complex array. The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TSCplxArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from the Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSCplxArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 3: function CopyFromArray(const Src: TByteArray): TMtxVec;
Copies values from a 1 byte unsigned integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TByteArray |
Result: stored in self (calling object), returns self for chaining
The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TByteArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from a 1 byte unsigned integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TByteArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 4: function CopyFromArray(const Src: TDoubleArray): TMtxVec;
Copies values from a real Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TDoubleArray |
Result: stored in self (calling object), returns self for chaining
The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TDoubleArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from the double precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TDoubleArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 5: function CopyFromArray(const Src: TSmallIntArray): TMtxVec;
Copies values from an 2 byte signed integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSmallIntArray |
Result: stored in self (calling object), returns self for chaining
The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TSmallIntArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from a 2 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSmallIntArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 6: function CopyFromArray(const Src: TIntegerArray): TMtxVec;
Copies values from an integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TIntegerArray |
Result: stored in self (calling object), returns self for chaining
The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TIntegerArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from a 4 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TIntegerArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Store the results to the calling object values [Index]..[Index+len-1]. The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 7: function CopyFromArray(const Src: TSingleArray): TMtxVec;
Copies values from a real single precision floating point Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSingleArray |
Result: stored in self (calling object), returns self for chaining
The size and TMtxVec.Complex properties of the calling object are set implicitely.
Indexed: function CopyFromArray(const Src: TSingleArray; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Copies values from the single precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TSingleArray | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The size of the calling object is not changed. If the array border are overrun an exception will be raised.