| MF_Cols_max
 | MD_Cols_max | 
ME_Cols_max |   
| MI_Cols_max | MBI_Cols_max | MSI_Cols_max | MLI_Cols_max | MQI_Cols_max |   
| MU_Cols_max | MUB_Cols_max | MUS_Cols_max | MUL_Cols_max | MUQ_Cols_max |  
  | 
| Funktion | Maxima der einzelnen Spalten in einem Zeilen-Vektor speichern |  
  | 
| Syntax C/C++ | #include <MFstd.h> 
void MF_Cols_max( fVector Y, fMatrix MA, ui ht, ui len ); |  
| C++ MatObj | #include <OptiVec.h> 
void vector<T>::Cols_max( const matrix<T>& MA ); |  
| Pascal/Delphi | uses MFstd; 
procedure MF_Cols_max( Y:fVector; MA:fMatrix; ht, len:UIntSize ); |  
  | 
| CUDA-Funktion C/C++ | #include <cudaMFstd.h>
 int cudaMF_Cols_max( fVector d_Y, fMatrix d_MA, ui ht, ui len );
 void MFcu_Cols_max( fVector h_Y, fMatrix h_MA, ui ht, ui len ); |  
| CUDA-Funktion Pascal/Delphi | uses MFstd;
 function cudaMF_Cols_max( d_Y:fVector; d_MA:fMatrix; ht, len:UIntSize ): IntBool;
 procedure MFcu_Cols_max( h_Y:fVector; h_MA:fMatrix; ht, len:UIntSize );
 |  
  | 
| Beschreibung | Das Maximum jeder Spalte j wird gespeichert als Element Yj für j=0,..,len-1 |  
  | 
 |