| MF_Row_divC
| MD_Row_divC |
ME_Row_divC |
| MCF_Row_divC |
MCD_Row_divC |
MCE_Row_divC |
|
| Function | divide all elements of one row by a constant |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_Row_divC( fMatrix MA, ui ht, ui len, ui iRow, float C ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_divC( const ui iRow, const T& C); |
| Pascal/Delphi | uses MFstd;
procedure MF_Row_divC( MA:fMatrix; ht, len, iRow:UIntSize; C:Single ); |
|
| CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_divC( fMatrix d_MA, ui ht, ui len, ui iRow, float C );
int cusdMF_Row_divC( fMatrix d_MA, ui ht, ui len, ui iRow, float *d_C );
void MFcu_Row_divC( fMatrix h_MA, ui ht, ui len, ui iRow, float C ); |
| CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_divC( d_MA:fMatrix; ht, len, iRow:UIntSize; C:Single ): IntBool;
function cusdMF_Row_divC( d_MA:fMatrix; ht, len, iRow:UIntSize; d_C:PSingle ): IntBool;
procedure MFcu_Row_divC( h_MA:fMatrix; ht, len, iRow:UIntSize; C:Single );
|
|
| Description | MAiRow,i /= C, i=0,...,len-1 |
|
|