MF_Row_delete
| MD_Row_delete |
ME_Row_delete |
MCF_Row_delete |
MCD_Row_delete |
MCE_Row_delete |
MI_Row_delete | MBI_Row_delete | MSI_Row_delete | MLI_Row_delete | MQI_Row_delete |
MU_Row_delete | MUB_Row_delete | MUS_Row_delete | MUL_Row_delete | MUQ_Row_delete; |
|
Function | delete one row from a matrix |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_delete( fMatrix MB, fMatrix MA, ui htA, ui lenA, ui iRow ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_delete( const matrix<T>& MA, const ui iRow ); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_delete( MB, MA:fMatrix; htA, lenA, iRow:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_delete( fMatrix d_MB, fMatrix d_MA, ui htA, ui lenA, ui iRow );
void MFcu_Row_delete( fMatrix h_MB, fMatrix h_MA, ui htA, ui lenA, ui iRow ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_delete( d_MB, d_MA:fMatrix; htA, lenA, iRow:UIntSize ): IntBool;
procedure MFcu_Row_delete( h_MB, h_MA:fMatrix; htA, lenA, iRow:UIntSize );
|
|
Description | MBi,j = MAi,j, i=0,...,iRow-1, j=0,...,len-1
MBi,j = MAi+1,j, i=iRow,...,htA-2, j=0,...,lenA-1
The parameters htA and lenA refer to the input matrix |
|
|