MF_Rows_max
| MD_Rows_max |
ME_Rows_max |
MI_Rows_max | MBI_Rows_max | MSI_Rows_max | MLI_Rows_max | MQI_Rows_max |
MU_Rows_max | MUB_Rows_max | MUS_Rows_max | MUL_Rows_max | MUQ_Rows_max |
|
Function | store the maxima of all individual rows in a column vector |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_max( fVector Y, fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<T>::Rows_max( const matrix<T>& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_max( Y:fVector; MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_max( fVector d_Y, fMatrix d_MA, ui ht, ui len );
void MFcu_Rows_max( fVector h_Y, fMatrix h_MA, ui ht, ui len ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_max( d_Y:fVector; d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_max( h_Y:fVector; h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | The maximum value of each row i is stored as the element Yi for i=0,...,ht-1 |
|
|