MCF_Dia_absmaxReIm
| MCD_Dia_absmaxReIm |
MCE_Dia_absmaxReIm |
|
Function | Separate determination of the largest absolute values of the real and imaginary parts occurring along the diagonal of a square matrix |
|
Syntax C/C++ | #include <MCFstd.h>
fComplex MCF_Dia_absmaxReIm( cfMatrix MA, ui len ); |
C++ MatObj | #include <OptiVec.h>
complex<T> matrix<complex<T>>::Dia_absmaxReIm( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MCFstd;
function MCF_Dia_absmaxReIm( MA:cfMatrix; len:UIntSize ): fComplex;
Alternative syntax:
procedure MCF_Dia_absmaxReIm( var RetVal:fComplex; MA:cfMatrix; len:UIntSize );
|
|
CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Dia_absmaxReIm( fComplex *h_RetVal, cfMatrix d_MA, ui len );
int cusdMCF_Dia_absmaxReIm( fComplex *d_RetVal, cfMatrix d_MA, ui len );
fComplex MCFcu_Dia_absmaxReIm( cfMatrix h_MA, ui len );
|
CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_Dia_absmaxReIm( var h_RetVal:fComplex; d_MA:cfMatrix; len:UIntSize ): IntBool;
function cusdMCF_Dia_absmaxReIm( d_RetVal:PfComplex; d_MA:cfMatrix; len:UIntSize ): IntBool;
function MCFcu_Dia_absmaxReIm( h_MA:cfMatrix; len:UIntSize ): fComplex;
Alternative syntax:
procedure MCFcu_Dia_absmaxReIm( var h_RetVal:fComplex; h_MA:cfMatrix; len:UIntSize );
|
|
Description | The maximum absolute values of the real and imaginary parts of the diagonal of a square matrix are combined into the complex return value (or, for Pascal/Delphi, into the variable Max). |
|
|