| MF_Row_extract
| MD_Row_extract |
ME_Row_extract |
| MCF_Row_extract |
MCD_Row_extract |
MCE_Row_extract |
| MI_Row_extract | MBI_Row_extract | MSI_Row_extract | MLI_Row_extract | MQI_Row_extract |
| MU_Row_extract | MUB_Row_extract | MUS_Row_extract | MUL_Row_extract | MUQ_Row_extract |
|
| Function | copy one row into a vector |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_Row_extract( fVector Y, fMatrix MA, ui ht, ui len, ui iRow ); |
| C++ MatObj | #include <OptiVec.h>
void vector<T>::Row_extract( const matrix<T>& MA, const ui iRow ); |
| Pascal/Delphi | uses MFstd;
procedure MF_Row_extract( Y:fVector; MA:fMatrix; ht, len, iRow:UIntSize ); |
|
| CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_extract( fVector d_Y, fMatrix d_MA, ui ht, ui len, ui iRow );
void MFcu_Row_extract( fVector h_Y, fMatrix h_MA, ui ht, ui len, ui iRow ); |
| CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_extract( d_Y:fVector; d_MA:fMatrix; ht, len, iRow:UIntSize ): IntBool;
procedure MFcu_Row_extract( h_Y:fVector; h_MA:fMatrix; ht, len, iRow:UIntSize );
|
|
| Description | Xi = MAiRow,i, i=0,...,len-1 |
|
|