MF_Row_divrC
| MD_Row_divrC |
ME_Row_divrC |
MCF_Row_divrC |
MCD_Row_divrC |
MCE_Row_divrC |
|
Function | reverse division: divide a constant by all elements of one row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_divrC( fMatrix MA, ui ht, ui len, ui iRow, float C ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_divrC( const ui iRow, const T& C); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_divrC( MA:fMatrix; ht, len, iRow:UIntSize; C:Single ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_divrC( fMatrix d_MA, ui ht, ui len, ui iRow, float C );
int cusdMF_Row_divrC( fMatrix d_MA, ui ht, ui len, ui iRow, float *d_C );
void MFcu_Row_divrC( fMatrix h_MA, ui ht, ui len, ui iRow, float C ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_divrC( d_MA:fMatrix; ht, len, iRow:UIntSize; C:Single ): IntBool;
function cusdMF_Row_divrC( d_MA:fMatrix; ht, len, iRow:UIntSize; d_C:PSingle ): IntBool;
procedure MFcu_Row_divrC( h_MA:fMatrix; ht, len, iRow:UIntSize; C:Single );
|
|
Description | MAiRow,i = C / MAiRow,i, i=0,...,len-1 |
|
|