MF_Rows_prod
| MD_Rows_prod |
ME_Rows_prod |
MCF_Rows_prod |
MCD_Rows_prod |
MCE_Rows_prod |
|
Function | products over all elements of each individual row, stored in a column vector |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_prod(fVector Y, fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<T>::Rows_prod( const matrix<T>& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_prod(Y:fVector; MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_prod( fVector d_Y, fMatrix d_MA, ui ht, ui len );
void MFcu_Rows_prod( fVector h_Y, fMatrix h_MA, ui ht, ui len ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_prod( d_Y:fVector; d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_prod( h_Y:fVector; h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | Yi = prod( MAi,j, j=0,...,len-1), i=0,...,ht-1 |
|
|