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