MCF_Row_conj |
MCD_Row_conj |
MCE_Row_conj |
|
Function | complex conjugate of all elements of one column |
|
Syntax C/C++ | #include <MFstd.h>
void MCF_Row_conj( cfMatrix MA, ui ht, ui len, ui iRow ); |
C++ MatObj | #include <OptiVec.h>
void matrix<complex<T>>::Row_conj( const ui iRow ); |
Pascal/Delphi | uses MFstd;
procedure MCF_Row_conj( MA:cfMatrix; ht, len, iRow:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Row_conj( cfMatrix d_MA, ui ht, ui len, ui iRow );
void MCFcu_Row_conj( cfMatrix h_MA, ui ht, ui len, ui iRow ); |
CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_Row_conj( d_MA:cfMatrix; ht, len, iRow:UIntSize ): IntBool;
procedure MCFcu_Row_conj( h_MA:cfMatrix; ht, len, iRow:UIntSize );
|
|
Description | MAiRow,i = MA*iRow,i, i=0,...,len-1 |
|
|