| 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 ); |
|
| 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 |
|