The specified module could not be found error when using the backslash operator!
Afficher commentaires plus anciens
Hello, I'm running MATLAB 2014a 64xbit and I get an error message pop up every time I try and use the backslash operator (\) in my funtions. this is the exact error
BLAS loading error:
mkl_custom.dll: The specified module could not be found.
and then it'll tell me where the error is for example
Error in PS6Q4 (line 9)
B=(A'*A)\(A'*y)
This error appears for all my functions which this operator is included, this is the m-file for that specific case above.
function PS6Q4
x=[1.14 5.62 0.31 2.21 3.54 2.87]';
y=[3.40 66.2 0.43 8.95 32.8 19.4]';
A=[x.^2 x]
B=(A'*A)\(A'*y)
end
If someone can please help me with a solution to this, that would be much appreciated!
2 commentaires
Mostafa
le 8 Mar 2014
Hirokazu Tanaka
le 14 Sep 2018
Deleting the Environment Variable "BLAS_VERSION" (if defined) could solve the issue? If not defined, MATLAB will just use the library that's included in the software package.
Réponses (0)
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!