MCF_Dia_sabsmax
| MCD_Dia_sabsmax |
MCE_Dia_sabsmax |
|
Function | Find the complex number of largest sum |Re| + |Im| along the diagonal of a square matrix |
|
Syntax C/C++ | #include <MCFstd.h>
fComplex MCF_Dia_sabsmax( cfMatrix MA, ui len ); |
C++ MatObj | #include <OptiVec.h>
complex<T> matrix<complex<T>>::Dia_sabsmax( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MCFstd;
function MCF_Dia_sabsmax( MA:cfMatrix; len:UIntSize ): fComplex;
Alternative syntax:
procedure MCF_Dia_sabsmax( var Max:fComplex; MA:cfMatrix; len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Dia_sabsmax( fComplex *h_RetVal, cfMatrix d_MA, ui len );
int cusdMCF_Dia_sabsmax( fComplex *d_RetVal, cfMatrix d_MA, ui len );
fComplex MCFcu_Dia_sabsmax( cfMatrix h_MA, ui len );
|
CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_Dia_sabsmax( var h_RetVal:fComplex; d_MA:cfMatrix; len:UIntSize ): IntBool;
function cusdMCF_Dia_sabsmax( d_RetVal:PfComplex; d_MA:cfMatrix; len:UIntSize ): IntBool;
function MCFcu_Dia_sabsmax( h_MA:cfMatrix; len:UIntSize ): fComplex;
Alternative syntax:
procedure MCFcu_Dia_sabsmax( var h_RetVal:fComplex; h_MA:cfMatrix; len:UIntSize );
|
|
Description | The complex number of largest sum |Re| + |Im|, is found. |
|
|