VF_ArgtoP | VD_ArgtoP | VE_ArgtoP |
|
Function | Overwrite the Arg part of a polar complex vector with a real vector |
|
Syntax C/C++ | #include <VPFstd.h>
void VF_ArgtoP( pfVector Y, fVector Arg, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<polar<T>>::ArgtoP( const vector<T>& Arg ); |
Pascal/Delphi | uses VPFstd;
procedure VF_ArgtoP( X:pfVector; Arg:fVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVPFstd.h>
int cudaVF_ArgtoP( pfVector d_Y, fVector d_Arg, ui size );
void VFcu_ArgtoP( pfVector h_Y, fVector h_Arg, ui size );
|
CUDA function Pascal/Delphi | uses VPFstd;
function cudaVF_ArgtoP( d_X:pfVector; d_Arg:fVector; size:UIntSize ): IntBool;
procedure VFcu_ArgtoP( h_X:pfVector; h_Arg:fVector; size:UIntSize );
|
|
Description | The Arg part of the polar complex vector Y is overwritten with the elements of the real-valued vector Arg. The Mag part of Y is not affected. |
|
|
|
|