How do I use ‘sgeqpf’ function in LAPACK inside MATLAB?

I have to do a matrix computation called 'QR factorization with column pivoting' in MATLAB. So far, I know that the function 'sgeqpf' in LAPACK can do this computation. I try a long time but can't call the 'sgeqpf'.How can I do to complete this? I have MATLAB and Visual Studio 2010 in my computer. And, thank you very much.

 Accepted Answer

You could try this FEX package by Tim Toolan:
It provides a generic interface to the BLAS and LAPACK routines from MATLAB. If, instead, you are trying to call a BLAS or LAPACK routine directly from your own C/C++ code, then you simply need to link in the appropriate library files that are supplied (e.g., libmwblas.lib or libmwlapack.lib).

More Answers (0)

Categories

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!