MF_Row_subC
| MD_Row_subC |
ME_Row_subC |
MCF_Row_subC |
MCD_Row_subC |
MCE_Row_subC |
|
Function | subtract a constant from all elements of one row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_subC( fMatrix MA, ui ht, ui len, ui iRow, float C ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_subC( const ui iRow, const T& C); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_subC( MA:fMatrix; ht, len, iRow:UIntSize; C:Single ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_subC( fMatrix d_MA, ui ht, ui len, ui iRow, float C );
int cusdMF_Row_subC( fMatrix d_MA, ui ht, ui len, ui iRow, float *d_C );
void MFcu_Row_subC( fMatrix h_MA, ui ht, ui len, ui iRow, float C ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_subC( d_MA:fMatrix; ht, len, iRow:UIntSize; C:Single ): IntBool;
function cusdMF_Row_subC( d_MA:fMatrix; ht, len, iRow:UIntSize; d_C:PSingle ): IntBool;
procedure MFcu_Row_subC( h_MA:fMatrix; ht, len, iRow:UIntSize; C:Single );
|
|
Description | MAiRow,i -= C, i=0,...,len-1 |
|
|