MF_Rows_lincomb
| MD_Rows_lincomb |
ME_Rows_lincomb |
MCF_Rows_lincomb |
MCD_Rows_lincomb |
MCE_Rows_lincomb |
|
Function | linear combination of two rows |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_lincomb( fMatrix MA, ui ht, ui len, unsigned destRow, float destC, unsigned srceRow, float srceC ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_lincomb( const unsigned destRow, const T& destC, const unsigned sourceRow, const T& srceC ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_lincomb( MA:fMatrix; ht, len:UIntSize; destRow:UIntSize; destC:Single;
srceRow:UIntSize; srceC:Single ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_lincomb( fMatrix d_MA, ui ht, ui len, unsigned destRow, float destC, unsigned srceRow, float srceC );
int cusdMF_Rows_lincomb( fMatrix d_MA, ui ht, ui len, unsigned destRow, float
d_destC, unsigned srceRow, float *d_srceC );
void MFcu_Rows_lincomb( fMatrix h_MA, ui ht, ui len, unsigned destRow, float destC, unsigned srceRow, float srceC );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_lincomb( d_MA:fMatrix; ht, len:UIntSize; destRow:UIntSize; destC:Single; srceRow:UIntSize; srceC:Single ): IntBool;
function cusdMF_Rows_lincomb( d_MA:fMatrix; ht, len:UIntSize; destRow:UIntSize; d_destC:PSingle; srceRow:UIntSize; d_srceC:PSingle ): IntBool;
procedure MFcu_Rows_lincomb( h_MA:fMatrix; ht, len:UIntSize; destRow:UIntSize; destC:Single; srceRow:UIntSize; srceC:Single );
|
|
Description | MAdestRow, j = destC * MAdestRow, j+ srceC * MAsrceRow, j, j=0,...,len-1 |
|
|