Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function IntPower(const Base: TMtx; Exponent: Integer): Matrix; | Result = the integer power function |
| 2 | function IntPower(const Base: TVec; Exponent: Integer): Vector; | Result = the integer power function |
Overload 1: function IntPower(const Base: TMtx; Exponent: Integer): Matrix;
Compute the integer power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TMtx | |
| 2 | Exponent | Integer |
Returns: Matrix
Remarks:
Internally calls Matrix.IntPower
Overload 2: function IntPower(const Base: TVec; Exponent: Integer): Vector;
Compute the integer power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TVec | |
| 2 | Exponent | Integer |
Returns: Vector
Remarks:
Internally calls Vector.IntPower