Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix Power(TCplx Base, TMtx Exponent) | Result = the power function |
| 2 | Vector Power(TCplx Base, TVec Exponent) | Result = the power function |
| 3 | Matrix Power(TMtx Base, TCplx Exponent) | Result = the power function |
| 4 | Matrix Power(TMtx Base, TMtx Exponent) | |
| 5 | Matrix Power(TMtx Base, Double Exponent) | Result = the power function |
| 6 | Vector Power(TVec Base, TCplx Exponent) | Result = the power function |
| 7 | Vector Power(TVec Base, TVec Exponent) | Result = the power function |
| 8 | Vector Power(TVec Base, Double Exponent) | Result = the power function |
| 9 | Matrix Power(Double Base, TMtx Exponent) | Result = the power function |
| 10 | Vector Power(Double Base, TVec Exponent) | Result = the power function |
Overload 1: Matrix Power(TCplx Base, TMtx Exponent)
Overload 2: Vector Power(TCplx Base, TVec Exponent)
Overload 3: Matrix Power(TMtx Base, TCplx Exponent)
Overload 4: Matrix Power(TMtx Base, TMtx Exponent)
Overload 5: Matrix Power(TMtx Base, Double Exponent)
Compute the power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TMtx | source TMtx |
| 2 | Exponent | Double | scalar |
Returns: Matrix
Remarks:
Internally calls Dew.Math.Matrix.Power
Overload 6: Vector Power(TVec Base, TCplx Exponent)
Overload 7: Vector Power(TVec Base, TVec Exponent)
Overload 8: Vector Power(TVec Base, Double Exponent)
Compute the power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TVec | source TVec |
| 2 | Exponent | Double | scalar |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.Power
Overload 9: Matrix Power(Double Base, TMtx Exponent)
Compute the power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | Double | scalar |
| 2 | Exponent | TMtx | source TMtx |
Returns: Matrix
Remarks:
Internally calls Dew.Math.Matrix.Power
Overload 10: Vector Power(Double Base, TVec Exponent)
Compute the power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | Double | scalar |
| 2 | Exponent | TVec | source TVec |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.Power