|
Function | Transformation of a cartesian complex into a polar complex vector |
|
Syntax C/C++ | #include <VPFstd.h>
void VF_CtoP( pfVector Y, cfVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<polar<T>>::CtoP( const vector<complex<T>>& X ); |
Pascal/Delphi | uses VPFstd;
procedure VF_CtoP( Y:pfVector; X:cfVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVPFstd.h>
int cudaVF_CtoP( pfVector d_Y, cfVector d_X, ui size );
void VFcu_CtoP( pfVector h_Y, cfVector h_X, ui size );
|
CUDA function Pascal/Delphi | uses VPFstd;
function cudaVF_CtoP( d_Y:pfVector; d_X:cfVector; size:UIntSize ): IntBool;
procedure VFcu_CtoP( h_Y:pfVector; h_X:cfVector; size:UIntSize );
|
|
Description | X is transformed from cartesian coordinates {Re, Im} into polar coordinates {Mag @ Arg}. |
|
|
|
|