configuration of lapack and blas in matlab
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abeera Tariq
el 15 de Jun. de 2015
Respondida: James Tursa
el 16 de Jun. de 2015
I want to use Matlab for mex files using lapack or blas library.. I have no idea how to configure matlab for blas or lapack
2 comentarios
Geoff Hayes
el 16 de Jun. de 2015
Abeera - have you looked at the link http://www.mathworks.com/help/matlab/matlab_external/calling-lapack-and-blas-functions-from-mex-files.html?
Respuesta aceptada
James Tursa
el 16 de Jun. de 2015
MATLAB ships with BLAS and LAPACK libraries. E.g., on Windows for 64-bit Microsoft compilation, you can typically find them here:
lib_blas = [matlabroot '\extern\lib\win64\microsoft\libmwblas.lib']
lib_lapack = [matlabroot '\extern\lib\win64\microsoft\libmwlapack.lib']
To link your code with these, you can just do this:
cfilename = 'my_mex_name.c';
mex(cfilename,lib_blas,lib_lapack);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!