Loading [MathJax]/jax/output/HTML-CSS/config.js
Tatooine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages Concepts
gecon.h
Go to the documentation of this file.
1#ifndef TATOOINE_LAPACK_GECON_H
2#define TATOOINE_LAPACK_GECON_H
3//==============================================================================
5//==============================================================================
6namespace tatooine::lapack {
7//==============================================================================
24//==============================================================================
25//template <typename T, size_t N>
26//auto gecon(tensor<T, N, N>& A, Norm norm, T& rcond) {
27// auto const n = lange(A, norm);
28// auto ipiv = tensor<std::int64_t, N>{};
29// getrf(A, ipiv);
30// return ::lapack::gecon(norm, N, A.data(), N, n, &rcond);
31//}
32//==============================================================================
34//==============================================================================
35} // namespace tatooine::lapack
36//==============================================================================
37#endif
Definition: base.h:6