VF_MagArgtoP | VD_MagArgtoP | VE_MagArgtoP |
|
Function | Construct a polar complex vector from separate vectors for magnitude and argument |
|
Syntax C/C++ | #include <VPFstd.h>
void VF_MagArgtoP( pfVector Y, fVector Mag, fVector Arg, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<polar<T>>::MagArgtoP( const vector<T>& Mag, const vector<T>& Arg ); |
Pascal/Delphi | uses VPFstd;
procedure VF_MagArgtoP( X:pfVector; Mag, Arg:fVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVPFstd.h>
int cudaVF_MagArgtoP( cfVector d_Y, fVector d_Mag, fVector d_Arg, ui size );
void VFcu_MagArgtoP( cfVector h_Y, fVector h_Mag, fVector h_Arg, ui size );
|
CUDA function Pascal/Delphi | uses VPFstd;
function cudaVF_MagArgtoP( d_X:cfVector; d_Mag, d_Arg:fVector; size:UIntSize ): IntBool;
procedure VFcu_MagArgtoP( h_X:cfVector; h_Mag, h_Arg:fVector; size:UIntSize );
|
|
Description | The polar complex vector Y is constructed from the two real vectors Mag and Arg. |
|
|
|
|