MF_Rows_add
| MD_Rows_add |
ME_Rows_add |
MCF_Rows_add |
MCD_Rows_add |
MCE_Rows_add |
|
Function | make one row the sum of itself and another row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_add( fMatrix MA, ui ht, ui len, unsigned destRow, unsigned sourceRow ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_add( const unsigned destRow, const unsigned sourceRow ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_add( MA:fMatrix; ht, len, destRow, sourceRow:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_add( fMatrix d_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow );
void MFcu_Rows_add( fMatrix h_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_add( d_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize ): IntBool;
procedure MFcu_Rows_add( h_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize );
|
|
Description | MAdestRow, j += MAsourceRow, j, i=0,...,len-1 |
|
|