Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec CopyFromArray(TCplx[] Src) | Copies values from an array. |
| └ indexed: TMtxVec CopyFromArray(TCplx[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 2 | TMtxVec CopyFromArray(Byte[] Src) | Copies values from a 1 byte unsigned integer type Src array. |
| └ indexed: TMtxVec CopyFromArray(Byte[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 3 | TMtxVec CopyFromArray(Double[] Src) | Copies values from a real Src array. |
| └ indexed: TMtxVec CopyFromArray(Double[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 4 | TMtxVec CopyFromArray(Int16[] Src) | Copies values from an 2 byte signed integer type Src array. |
| └ indexed: TMtxVec CopyFromArray(Int16[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 5 | TMtxVec CopyFromArray(Int32[] Src) | Copies values from an integer type Src array. |
| └ indexed: TMtxVec CopyFromArray(Int32[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 6 | TMtxVec CopyFromArray(Single[] Src) | Copies values from a real single precision floating point Src array. |
| └ indexed: TMtxVec CopyFromArray(Single[] Src, Int32 SrcIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVec CopyFromArray(TCplx[] Src)
Copies values from an array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplx[] |
Result: stored in self (calling object), returns self for chaining
Copies values from a complex array. The size and Dew.Math.Vector.Complex properties of the calling object are set implicitly.
Indexed: TMtxVec CopyFromArray(TCplx[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
Copies values from the Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplx[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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: TMtxVec CopyFromArray(Byte[] Src)
Copies values from a 1 byte unsigned integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Byte[] |
Result: stored in self (calling object), returns self for chaining
The size and Dew.Math.Vector.Complex properties of the calling object are set implicitely.
Indexed: TMtxVec CopyFromArray(Byte[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | Byte[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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: TMtxVec CopyFromArray(Double[] Src)
Copies values from a real Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Double[] |
Result: stored in self (calling object), returns self for chaining
The size and Dew.Math.Vector.Complex properties of the calling object are set implicitely.
Indexed: TMtxVec CopyFromArray(Double[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | Double[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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: TMtxVec CopyFromArray(Int16[] Src)
Copies values from an 2 byte signed integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Int16[] |
Result: stored in self (calling object), returns self for chaining
The size and Dew.Math.Vector.Complex properties of the calling object are set implicitely.
Indexed: TMtxVec CopyFromArray(Int16[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | Int16[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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: TMtxVec CopyFromArray(Int32[] Src)
Copies values from an integer type Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Int32[] |
Result: stored in self (calling object), returns self for chaining
The size and Dew.Math.Vector.Complex properties of the calling object are set implicitely.
Indexed: TMtxVec CopyFromArray(Int32[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | Int32[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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: TMtxVec CopyFromArray(Single[] Src)
Copies values from a real single precision floating point Src array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Single[] |
Result: stored in self (calling object), returns self for chaining
The size and Dew.Math.Vector.Complex properties of the calling object are set implicitely.
Indexed: TMtxVec CopyFromArray(Single[] Src, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | Single[] | |
| 2 | SrcIndex | Int32 | source start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | 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.