MF_Row_insert
| MD_Row_insert |
ME_Row_insert |
MCF_Row_insert |
MCD_Row_insert |
MCE_Row_insert |
MI_Row_insert | MBI_Row_insert | MSI_Row_insert | MLI_Row_insert | MQI_Row_insert |
MU_Row_insert | MUB_Row_insert | MUS_Row_insert | MUL_Row_insert | MUQ_Row_insert |
|
Function | augment a matrix by insertion of one row |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Row_insert( fMatrix MB, fMatrix MA, ui htB, ui lenB, ui iRow, fVector X ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Row_insert( const matrix<T>& MA, const ui iRow, const vector<T>& X ); |
Pascal/Delphi | uses MFstd;
procedure MF_Row_insert( MB, MA:fMatrix; htB, lenB, iRow:UIntSize; X:fVector ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Row_insert( fMatrix d_MB, fMatrix d_MA, ui htB, ui lenB, ui iRow, fVector d_X );
void MFcu_Row_insert( fMatrix h_MB, fMatrix h_MA, ui htB, ui lenB, ui iRow, fVector h_X ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Row_insert( d_MB, d_MA:fMatrix; htB, lenB, iRow:UIntSize; d_X:fVector ): IntBool;
procedure MFcu_Row_insert( h_MB, h_MA:fMatrix; htB, lenB, iRow:UIntSize; h_X:fVector );
|
|
Description | MBi,j = MAi,j, i=0,...,iRow-1, j=0,...,len-1
MBiRow,j = Xj, j=0,...,lenB-1
MBi,j = MAi-1,j, i=iRow,...,htB-1, j=0,...,lenB-1
The parameters htB and lenB refer to the output matrix |
|
|