| MCF_conj
| MCD_conj |
MCE_conj |
|
| Function | complex conjugate |
|
| Syntax C/C++ | #include <MFstd.h>
void MCF_conj( cfMatrix MB, cfMatrix MA, ui ht, ui len ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::conj(); |
| Pascal/Delphi | uses MFstd;
procedure MCF_conj( MB, MA:cfMatrix; ht, len:UIntSize ); |
|
| CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_conj( cfMatrix d_MB, cfMatrix d_MA, ui ht, ui len );
void MCFcu_conj( cfMatrix h_MB, cfMatrix h_MA, ui ht, ui len );
|
| CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_conj( d_MB, d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MCFcu_conj( h_MB, h_MA:cfMatrix; ht, len:UIntSize );
|
|
| Description | MBij.Re = MAij.Re
MBij.Im = -MAij.Im |
|
|