System.VarCmplx.VarComplexTimesReal

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function VarComplexTimesReal(const AValue: Variant; const AFactor: Double): Variant;

C++

extern DELPHI_PACKAGE System::Variant __fastcall VarComplexTimesReal(const System::Variant &AValue, const double AFactor);

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 multiplied by a real number.

VarComplexTimesReal returns a complex value times a real number.

AValue is a Variant whose value represents the complex number.

AFactor is a real number.

VarComplexTimesReal returns a variant whose value is AValue times AFactor.

See Also