VF_PtoAbs | VD_PtoAbs | VE_PtoAbs |
|
Function | Absolute value (magnitude) of polar complex numbers |
|
Syntax C/C++ | #include <VPFstd.h>
void VF_PtoAbs( fVector Abs, pfVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::PtoAbs( const vector<polar<T>>& X ); |
Pascal/Delphi | uses VPFstd;
procedure VF_PtoAbs( Abs:fVector; X:pfVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVPFstd.h>
int cudaVF_PtoAbs( fVector d_Abs, pfVector d_X, ui size );
void VFcu_PtoAbs( fVector h_Abs, pfVector h_X, ui size );
|
CUDA function Pascal/Delphi | uses VPFstd;
function cudaVF_PtoAbs( d_Abs:fVector; d_X:pfVector; size:UIntSize ): IntBool;
procedure VF_PtoAbs( h_Abs:fVector; h_X:pfVector; size:UIntSize );
|
|
Description | The absolute value, i.e. the magnitude of each element of the polar complex vector X is extracted. This function is identical to VPF_abs and VF_PtoMag. For historical reasons, all three names have been preserved. |
|
|
|
|