12#ifndef TLAPACK_SVD_QR_HH
13#define TLAPACK_SVD_QR_HH
80template <
class matrix_t,
83 enable_if_t<is_same_v<type_t<d_t>, real_type<type_t<d_t>>>,
int> = 0,
84 enable_if_t<is_same_v<type_t<e_t>, real_type<type_t<e_t>>>,
int> = 0>
101 const idx_t n = size(
d);
109 if (n == 0)
return 0;
113 if (
uplo == Uplo::Lower) {
116 for (idx_t i = 0; i < n - 1; ++i) {
120 d[i + 1] = c *
d[i + 1];
125 auto u2 = col(
U, i + 1);
131 idx_t
itmax = 30 * n;
139 for (idx_t i = 1; i < n; ++i) {
140 mu = abs(
d[i]) * (
mu / (
mu + abs(
e[i - 1])));
244 if (abs(
e[i]) <
tol *
mu) {
249 mu = abs(
d[i + 1]) * (
mu / (
mu + abs(
e[i])));
268 if (abs(
e[i]) <
tol *
mu) {
273 mu = abs(
d[i]) * (
mu / (
mu + abs(
e[i])));
321 auto u2 = col(
U, i + 1);
325 auto vt1 = row(
Vt, i);
326 auto vt2 = row(
Vt, i + 1);
347 auto u1 = col(
U, i - 1);
352 auto vt1 = row(
Vt, i - 1);
353 auto vt2 = row(
Vt, i);
376 d[i + 1] =
csr *
d[i + 1];
382 if (i + 1 <
istop - 1) {
384 e[i + 1] =
csl *
e[i + 1];
390 auto u2 = col(
U, i + 1);
394 auto vt1 = row(
Vt, i);
395 auto vt2 = row(
Vt, i + 1);
412 d[i - 1] =
csr *
d[i - 1];
417 d[i - 1] =
csl *
d[i - 1] -
snl *
e[i - 1];
420 e[i - 2] =
csl *
e[i - 2];
425 auto u1 = col(
U, i - 1);
430 auto vt1 = row(
Vt, i - 1);
431 auto vt2 = row(
Vt, i);
441 for (idx_t i = 0; i < n; ++i) {
445 auto vt1 = row(
Vt, i);
452 for (idx_t i = 0; i < n - 1; ++i) {
465 auto vt2 = row(
Vt, i);
Uplo
Definition types.hpp:50
constexpr int sgn(const T &val)
Type-safe sgn function.
Definition utils.hpp:109
void svd22(const T &f, const T &g, const T &h, T &ssmin, T &ssmax, T &csl, T &snl, T &csr, T &snr)
Computes the singular value decomposition of a 2-by-2 real triangular matrix.
Definition svd22.hpp:55
void singularvalues22(const T &f, const T &g, const T &h, T &ssmin, T &ssmax)
Computes the singular value decomposition of a 2-by-2 real triangular matrix.
Definition singularvalues22.hpp:40
void rot(vectorX_t &x, vectorY_t &y, const c_type &c, const s_type &s)
Apply plane rotation:
Definition rot.hpp:44
void swap(vectorX_t &x, vectorY_t &y)
Swap vectors, .
Definition swap.hpp:31
size_type< vector_t > iamax(const vector_t &x, const IamaxOpts< abs_f > &opts)
Return .
Definition iamax.hpp:234
void lartg(const T &a, const T &b, real_type< T > &c, T &s, T &r)
Construct plane rotation that eliminates b, such that:
Definition lartg.hpp:38
void scal(const alpha_t &alpha, vector_t &x)
Scale vector by constant, .
Definition scal.hpp:30
int svd_qr(Uplo uplo, bool want_u, bool want_vt, d_t &d, e_t &e, matrix_t &U, matrix_t &Vt)
Computes the singular values and, optionally, the right and/or left singular vectors from the singula...
Definition svd_qr.hpp:85
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113