The specified module could not be found error when using the backslash operator!
Show older comments
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 Comments
Mostafa
on 8 Mar 2014
Hirokazu Tanaka
on 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.
Answers (0)
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!