MF_Row_subV
| MD_Row_subV |
ME_Row_subV |
MCF_Row_subV |
MCD_Row_subV |
MCE_Row_subV |
|
Function | element-wise subtraction of a vector from one row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_subV( 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_subV( MA:fMatrix; ht, len, iRow:UIntSize; X:fVector ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_subV( fMatrix d_MA, ui ht, ui len, ui iRow, fVector d_X );
void MFcu_Row_subV( fMatrix h_MA, ui ht, ui len, ui iRow, fVector h_X ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_subV( d_MA:fMatrix; ht, len, iRow:UIntSize; d_X:fVector ): IntBool;
procedure MFcu_Row_subV( h_MA:fMatrix; ht, len, iRow:UIntSize; h_X:fVector );
|
|
Description | MAiRow,i -= Xi, i=0,...,len-1 |
|
|