MF_Rows_Cadd
| MD_Rows_Cadd |
ME_Rows_Cadd |
MCF_Rows_Cadd |
MCD_Rows_Cadd |
MCE_Rows_Cadd |
|
Function | make one row the sum of itself and another row, scaled by a constant |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_Cadd( fMatrix MA, ui ht, ui len, unsigned destRow, unsigned sourceRow, float C ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_Cadd( const unsigned destRow, const unsigned sourceRow, const T& C ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_Cadd( MA:fMatrix; ht, len, destRow, sourceRow:UIntSize; C:Single ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_Cadd( fMatrix d_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow, float C );
int cusdMF_Rows_Cadd( fMatrix d_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow, float *d_C );
void MFcu_Rows_Cadd( fMatrix h_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow, float C ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_Cadd( d_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize; C:Single ): IntBool;
function cusdMF_Rows_Cadd( d_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize; d_C:PSingle ): IntBool;
procedure MFcu_Rows_Cadd( h_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize; C:Single );
|
|
Description | MAdestRow, j += C * MAsourceRow, j, i=0,...,len-1 |
|
|