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.
feedback
|
|
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:
We get:
Which is equivalent to MATLAB's own SVD function:
that gives:
| |||
|
feedback
|