I am trying to use the Intel LAPACK library to find the QR factorization of a randomly generated matrix. I want the program to find the two matrices, Q and R. But, I'm having issues with the LAPACK documentation in trying to find out how or which routines can actually provide this functionality.
dgeqrfp looks like the right function to use, but it says it doesn't return Q explicitly.
This is my first time using LAPACK, so any help in trying to get this going would be very helpful. Thanks.