MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / geqrf

Function geqrf

bayes/include/open_ptrack/bayes/uLAPACK.hpp:81–84  ·  view source on GitHub ↗

Type overloads for C++

Source from the content-addressed store, hash-verified

79
80 // Type overloads for C++
81 inline void geqrf( const int & m, const int & n, double da[], const int & lda, double dtau[], double dwork[], const int& ldwork, int& info)
82 {
83 dgeqrf_(m,n,da,lda,dtau,dwork,ldwork,info);
84 }
85 inline void geqrf( const int & m, const int & n, float da[], const int & lda, float dtau[], float dwork[], const int& ldwork, int& info)
86 {
87 sgeqrf_(m,n,da,lda,dtau,dwork,ldwork,info);

Callers 2

predictMethod · 0.85
observe_innovationMethod · 0.85

Calls 3

dataMethod · 0.80
sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected