35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_UNGLQ_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_UNGLQ_H_
57 void cunglq_(
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int*
info );
58 void zunglq_(
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int*
info );
78 inline void unglq(
int m,
int n,
int k, complex<float>* A,
int lda,
const complex<float>* tau,
79 complex<float>* work,
int lwork,
int*
info );
81 inline void unglq(
int m,
int n,
int k, complex<double>* A,
int lda,
const complex<double>* tau,
82 complex<double>* work,
int lwork,
int*
info );
117 inline void unglq(
int m,
int n,
int k, complex<float>* A,
int lda,
const complex<float>* tau,
118 complex<float>* work,
int lwork,
int*
info )
122 cunglq_( &m, &n, &k, reinterpret_cast<float*>( A ), &lda,
123 const_cast<float*>( reinterpret_cast<const float*>( tau ) ),
124 reinterpret_cast<float*>( work ), &lwork, info );
159 inline void unglq(
int m,
int n,
int k, complex<double>* A,
int lda,
const complex<double>* tau,
160 complex<double>* work,
int lwork,
int*
info )
164 zunglq_( &m, &n, &k, reinterpret_cast<double*>( A ), &lda,
165 const_cast<double*>( reinterpret_cast<const double*>( tau ) ),
166 reinterpret_cast<double*>( work ), &lwork, info );
Log level for high-level information.
Definition: LogLevel.h:80
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void unglq(int m, int n, int k, complex< float > *A, int lda, const complex< float > *tau, complex< float > *work, int lwork, int *info)
LAPACK kernel for the reconstruction of the orthogonal matrix Q from a LQ decomposition.
Definition: unglq.h:117
Header file for the complex data type.
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.In case of an invalid compile time expression, a compilation error is cr...
Definition: StaticAssert.h:112