MF_Row_subrV
| MD_Row_subrV |
ME_Row_subrV |
MCF_Row_subrV |
MCD_Row_subrV |
MCE_Row_subrV |
|
Function | element-wise reverse subtraction: subtract one row from a vector, storing the result back into the row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_subrV( fMatrix MA, ui ht, ui len, ui iRow, fVector X ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_subrV( const ui iRow, const vector<T>& X); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_subrV( MA:fMatrix; ht, len, iRow:UIntSize; X:fVector ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_subrV( fMatrix d_MA, ui ht, ui len, ui iRow, fVector d_X );
void MFcu_Row_subrV( fMatrix h_MA, ui ht, ui len, ui iRow, fVector h_X ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_subrV( d_MA:fMatrix; ht, len, iRow:UIntSize; d_X:fVector ): IntBool;
procedure MFcu_Row_subrV( h_MA:fMatrix; ht, len, iRow:UIntSize; h_X:fVector );
|
|
Description | MAiRow,i = Xi - MAiRow,i, i=0,...,len-1 |
|
|