MF_Rows_sub
| MD_Rows_sub |
ME_Rows_sub |
MCF_Rows_sub |
MCD_Rows_sub |
MCE_Rows_sub |
|
Function | make one row the difference of itself and another row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_sub( fMatrix MA, ui ht, ui len, unsigned destRow, unsigned sourceRow ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_sub( const unsigned destRow, const unsigned sourceRow ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_sub( MA:fMatrix; ht, len, destRow, sourceRow:UIntSize; ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_sub( fMatrix d_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow );
void MFcu_Rows_sub( fMatrix h_MA, ui ht, ui len, unsigned destRow, unsigned sourceRow ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_sub( d_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize ): IntBool;
procedure MFcu_Rows_sub( h_MA:fMatrix; ht, len, destRow, sourceRow:UIntSize );
|
|
Description | MAdestRow, j -= MAsourceRow, j, i=0,...,len-1 |
|
|