MF_Cols_Cadd
| MD_Cols_Cadd |
ME_Cols_Cadd |
MCF_Cols_Cadd |
MCD_Cols_Cadd |
MCE_Cols_Cadd |
|
Function | make one column the sum of itself and another column, scaled by a constant |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Cols_Cadd( fMatrix MA, ui ht, ui len, unsigned destCol, unsigned sourceCol, float C ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Cols_Cadd( const unsigned destCol, const unsigned sourceCol, const T& C ); |
Pascal/Delphi | uses MFstd;
procedure MF_Cols_Cadd( MA:fMatrix; ht, len, destCol, sourceCol:UIntSize;
C:Single ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Cols_Cadd( fMatrix d_MA, ui ht, ui len, unsigned destCol, unsigned sourceCol, float C );
int cusdMF_Cols_Cadd( fMatrix d_MA, ui ht, ui len, unsigned destCol, unsigned sourceCol, float *d_C );
void MFcu_Cols_Cadd( fMatrix h_MA, ui ht, ui len, unsigned destCol, unsigned sourceCol, float C ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Cols_Cadd( d_MA:fMatrix; ht, len, destCol, sourceCol:UIntSize; C:Single ): IntBool;
function cusdMF_Cols_Cadd( d_MA:fMatrix; ht, len, destCol, sourceCol:UIntSize; d_C:PSingle ): IntBool;
procedure MFcu_Cols_Cadd( h_MA:fMatrix; ht, len, destCol, sourceCol:UIntSize; C:Single );
|
|
Description | MAi,destCol += C * MAi,sourceCol, i=0,..,ht-1 |
|
|