GetFEM  5.4.2
gmm_condition_number.h File Reference

computation of the condition number of dense matrices. More...

#include "gmm_dense_qr.h"

Go to the source code of this file.

Functions

template<typename MAT >
number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type gmm::condition_number (const MAT &M, typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &emin, typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &emax)
 computation of the condition number of dense matrices using SVD. More...
 
template<typename MAT >
number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type gmm::condest (const MAT &M, typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &emin, typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &emax)
 estimation of the condition number (TO BE DONE...)
 

Detailed Description

computation of the condition number of dense matrices.

Author
Yves Renard Yves..nosp@m.Rena.nosp@m.rd@in.nosp@m.sa-l.nosp@m.yon.f.nosp@m.r, Julien Pommier Julie.nosp@m.n.Po.nosp@m.mmier.nosp@m.@ins.nosp@m.a-tou.nosp@m.lous.nosp@m.e.fr
Date
August 27, 2003.

Definition in file gmm_condition_number.h.

Function Documentation

◆ condition_number()

template<typename MAT >
number_traits<typename linalg_traits<MAT>::value_type>::magnitude_type gmm::condition_number ( const MAT &  M,
typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &  emin,
typename number_traits< typename linalg_traits< MAT >::value_type >::magnitude_type &  emax 
)

computation of the condition number of dense matrices using SVD.

Uses symmetric_qr_algorithm => dense matrices only.

Parameters
Ma matrix.
eminsmallest (in magnitude) eigenvalue
emaxlargest eigenvalue.

Definition at line 55 of file gmm_condition_number.h.