VF_ReImtoC | VD_ReImtoC | VE_ReImtoC |
|
Function | Construct a cartesian complex vector from real and imaginary parts |
|
Syntax C/C++ | #include <VCFstd.h>
void VF_ReImtoC( cfVector Y, fVector Re, fVector Im, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<complex<T>>::ReImtoC( const vector<T>& Re, const vector<T>& Im ); |
Pascal/Delphi | uses VCFstd;
procedure VF_ReImtoC( X:cfVector; Re, Im:fVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVCFstd.h>
int cudaVF_ReImtoC( cfVector Y, fVector d_Re, fVector d_Im, ui size );
void VFcu_ReImtoC( cfVector Y, fVector h_Re, fVector h_Im, ui size );
|
CUDA function Pascal/Delphi | uses VCFstd;
function cudaVF_ReImtoC( d_X:cfVector; d_Re, d_Im:fVector; size:UIntSize ): IntBool;
procedure VFcu_ReImtoC( h_X:cfVector; h_Re, h_Im:fVector; size:UIntSize );
|
|
Description | The complex vector Y is constructed from two real vectors that become the real and imaginary parts of Y. |
|
|
|
|