12#ifndef TLAPACK_LEGACY_LASET_HH
13#define TLAPACK_LEGACY_LASET_HH
38 template <
class uplo_t,
typename TA>
42 using internal::create_matrix;
46 uplo != Uplo::General);
49 if (m <= 0 || n <= 0)
return;
76 template <
typename TA>
constexpr internal::LowerTriangle LOWER_TRIANGLE
Lower Triangle access.
Definition types.hpp:188
constexpr internal::UpperTriangle UPPER_TRIANGLE
Upper Triangle access.
Definition types.hpp:186
constexpr internal::GeneralAccess GENERAL
General access.
Definition types.hpp:180
void laset(uplo_t uplo, const type_t< matrix_t > &alpha, const type_t< matrix_t > &beta, matrix_t &A)
Initializes a matrix to diagonal and off-diagonal values.
Definition laset.hpp:38
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
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