10#ifndef TLAPACK_CONJUGATE_HH
11#define TLAPACK_CONJUGATE_HH
23template <TLAPACK_VECTOR vector_t>
29 for (idx_t i = 0; i < size(
x); ++i) {
void conjugate(vector_t &x)
Conjugates a vector.
Definition conjugate.hpp:24
Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
Definition arrayTraits.hpp:15
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
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100