|
| 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:UInt ); |
|
| 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. |
|
|
|
|