System.VarCmplx.VarComplexPower
Delphi
function VarComplexPower(const AValue, APower: Variant): Variant;
C++
extern DELPHI_PACKAGE System::Variant __fastcall VarComplexPower(const System::Variant &AValue, const System::Variant &APower);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.VarCmplx.pas System.VarCmplx.hpp |
System.VarCmplx | System.VarCmplx |
Description
Returns the value of a complex number raised to a specified power.
VarComplexPower returns the result of raising AValue to the power APower.
AValue is a Variant whose value represents the complex number.
APower is a Variant that specifies the power to which you want to raise AValue. It can also be a complex number.
VarComplexPower returns a Variant whose value is AValue raised to the APower power.