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 | procedure CopyFromArray(const Src: T2DCplxArray); | Sizes the matrix to match the size of the 2D array and copies all the values. |
| 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 | procedure CopyFromArray(const Src: T2DDoubleArray); | Copies the matrix from a 2D array. |
| 6 | 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; | ||
| 7 | 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; | ||
| 8 | 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 Matrix.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: procedure CopyFromArray(const Src: T2DCplxArray);
Sizes the matrix to match the size of the 2D array and copies all the values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | T2DCplxArray |
Result: stored in self (calling object)
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 Matrix.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 Matrix.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: procedure CopyFromArray(const Src: T2DDoubleArray);
Copies the matrix from a 2D array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | T2DDoubleArray |
Result: stored in self (calling object)
Sizes the matrix to match the size of the 2D array and copies all the values.
Overload 6: 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 Matrix.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 7: 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 Matrix.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] to the calling object values [Index]..[Index+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
The size of the calling object is not changed. If the array border are overrun an exception will be raised.
Overload 8: 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 Matrix.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.