Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to learn how to call the built-in LAPACK/BLAS routines in MATLAB. I have experience in MATLAB and mex files but I've actually no idea how to call LAPACK or BLAS libraries. I've found the gateway routines in file exchange that simplifies the calls since I don't have to write a mex file for any function such as this one. I need any toy example to learn the basic messaging between MATLAB and these built-in libraries. Any toy example such as matrix multiplication or LU decomposition is welcome.

share|improve this question
1  
Why FORTRAN? I am not sure but I always thought that LAPACK/BLAS have been ported to C/C++ 30 years ago and MATLAB uses this implementation! – Mikhail Jun 22 '11 at 11:05
Well, you see that I'm so new to it :( I see FORTRAN codes when I check for their documentation. Let me update the question accordingly. – petrichor Jun 22 '11 at 11:07
2  
@Mikhail, @Ismail: They libraries themselves are written in Fortran, and the calling conventions are those of Fortran. You are right that there are wrappers for C/C++, CBLAS/ CLAPACK being the most straightforward ones, and then a bunch of templated/generic/whatever things for C++. – Zhenya Jun 22 '11 at 12:08

2 Answers

up vote 5 down vote accepted

If you look inside the lapack.m file from the FEX submission mentioned, you will see a couple of examples on how to use the function:

Example: SVD decomposition using DGESVD:

X = rand(4,3);
[m,n] = size(X);
C = lapack('dgesvd', 'A', 'A', m, n, X, m, zeros(n,1), ...
           zeros(m), m, zeros(n), n, zeros(5*m,1), 5*m, 0);
[s,U,VT] = C{[7,8,10]};
V = VT';

We get:

U =
     -0.44459      -0.6264     -0.54243       0.3402
     -0.61505     0.035348      0.69537      0.37004
     -0.41561     -0.26532      0.10543     -0.86357
     -0.50132      0.73211     -0.45948    -0.039753
s =
       2.1354
      0.88509
      0.27922
V =
     -0.58777      0.20822     -0.78178
      -0.6026     -0.75743      0.25133
     -0.53981      0.61882      0.57067

Which is equivalent to MATLAB's own SVD function:

[U,S,V] = svd(X);
s = diag(S);

that gives:

U =
     -0.44459      -0.6264     -0.54243       0.3402
     -0.61505     0.035348      0.69537      0.37004
     -0.41561     -0.26532      0.10543     -0.86357
     -0.50132      0.73211     -0.45948    -0.039753
s =
       2.1354
      0.88509
      0.27922
V =
     -0.58777      0.20822     -0.78178
      -0.6026     -0.75743      0.25133
     -0.53981      0.61882      0.57067
share|improve this answer

A good/pratical example of how to use SVD in matlab is explained here: Transforming captured co-ordinates into screen co-ordinates

More on how to calculate svd in objective-c with lapack is written here calculate the V from A = USVt in objective-C with SVD from LAPACK in xcode

share|improve this answer
fellowworldcitizen, welcome to SO. The question asks how to call built-in LAPACK routines from MATLAB. Your answer has good references but it is not a real answer to the question. – petrichor Aug 11 '12 at 10:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.