|
Function | Overwrite the real part of a cartesian complex vector with a real vector |
|
Syntax C/C++ | #include <VCFstd.h>
void VF_RetoC( cfVector Y, fVector Re, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<complex<T>>::RetoC( const vector<T>& Re ); |
Pascal/Delphi | uses VCFstd;
procedure VF_RetoC( X:cfVector; Re:fVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVCFstd.h>
int cudaVF_RetoC( cfVector d_Y, fVector d_Im, ui size );
void VFcu_RetoC( cfVector h_Y, fVector h_Im, ui size );
|
CUDA function Pascal/Delphi | uses VCFstd;
function cudaVF_RetoC( d_X:cfVector; d_Im:fVector; size:UIntSize ): IntBool;
procedure VFcu_RetoC( h_X:cfVector; h_Im:fVector; size:UIntSize );
|
|
Description | The real part of the complex vector Y is overwritten with the elements of the real-valued vector Re. The imaginary part of Y is not affected. |
|
|
|
|