| MF_Rows_prod
 | MD_Rows_prod | 
ME_Rows_prod |   
| MCF_Rows_prod | 
MCD_Rows_prod | 
MCE_Rows_prod |  
  | 
| Funktion | Produkte über alle Elemente jeder einzelnen Zeile in einem Spalten-Vektor speichern |  
  | 
| 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-Funktion 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-Funktion 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 );
 |  
  | 
| Beschreibung | Yi = prod( MAi,j, j=0,...,len-1),  i=0,...,ht-1 |  
  | 
 |