MF_Row_divrV
| MD_Row_divrV |
ME_Row_divrV |
MCF_Row_divrV |
MCD_Row_divrV |
MCE_Row_divrV |
|
Function | element-wise reverse division: divide a vector by one row of a matrix, storing the result back into the row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_divrV( fMatrix MA, ui ht, ui len, ui iRow, fVector X ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_divrV( const ui iRow, const vector<T>& X); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_divrV( MA:fMatrix; ht, len, iRow:UIntSize; X:fVector ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_divrV( fMatrix d_MA, ui ht, ui len, ui iRow, fVector d_X );
void MFcu_Row_divrV( fMatrix h_MA, ui ht, ui len, ui iRow, fVector h_X ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_divrV( d_MA:fMatrix; ht, len, iRow:UIntSize; d_X:fVector ): IntBool;
procedure MFcu_Row_divrV( h_MA:fMatrix; ht, len, iRow:UIntSize; h_X:fVector );
|
|
Description | MAiRow,i = Xi / MAiRow,i, i=0,...,len-1 |
|
|