MF_Rows_absmin
| MD_Rows_absmin |
ME_Rows_absmin |
MCF_Rows_absmin |
MCD_Rows_absmin |
MCE_Rows_absmin |
|
Function | store the absolute minima of all individual rows in a column vector |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_absmin( fVector Y, fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<T>::Rows_absmin( const matrix<T>& MA );
void vector<T>::Rows_absmin( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_absmin( Y:fVector; MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_absmin( fVector d_Y, fMatrix d_MA, ui ht, ui len );
int cudaMCF_Rows_absmin( fVector d_Y, cfMatrix d_MA, ui ht, ui len )
void MFcu_Rows_absmin( fVector h_Y, fMatrix h_MA, ui ht, ui len );
void MCFcu_Rows_absmin( fVector h_Y, cfMatrix h_MA, ui ht, ui len ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_absmin( d_Y:fVector; d_MA:fMatrix; ht, len:UIntSize ): IntBool;
function cudaMCF_Rows_absmin( d_Y:fVector; d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_absmin( h_Y:fVector; h_MA:fMatrix; ht, len:UIntSize );
procedure MCFcu_Rows_absmin( h_Y:fVector; h_MA:cfMatrix; ht, len:UIntSize );
|
|
Description | The minimum absolute value of each row i is stored as the element Yi for i=0,...,ht-1 |
|
|