Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Explicit(const AValue: Matrix): T2DCplxArray; | Copies data in AValue to T2DCxplArray and returns result. |
| 2 | class operator Explicit(const AValue: Matrix): VectorInt; | Copies Matrix data to VectorInt. |
| 3 | class operator Explicit(const AValue: Matrix): TDoubleArray; | Copies data in AValue to TDoubleArray and returns result. |
| 4 | class operator Explicit(const AValue: Matrix): T2DDoubleArray; | Copies data in AValue to T2DDoubleArray and returns result. |
| 5 | class operator Explicit(const AValue: Matrix): TSingleArray; | Copies data in AValue to TSingleArray and returns result. |
Overload 1: class operator Explicit(const AValue: Matrix): T2DCplxArray;
Copies data in AValue to T2DCxplArray and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Matrix |
Returns: TCplx[][]
Overload 2: class operator Explicit(const AValue: Matrix): VectorInt;
Copies Matrix data to VectorInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Matrix |
Result: stored in self (calling object), returns self for chaining
Remarks:
Copies all values from AValue to the result.
Overload 3: class operator Explicit(const AValue: Matrix): TDoubleArray;
Copies data in AValue to TDoubleArray and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Matrix |
Returns: Double[]
Overload 4: class operator Explicit(const AValue: Matrix): T2DDoubleArray;
Copies data in AValue to T2DDoubleArray and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Matrix |
Returns: Double[][]
Overload 5: class operator Explicit(const AValue: Matrix): TSingleArray;
Copies data in AValue to TSingleArray and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Matrix |
Returns: Single[]