MATLAB: How can i solve this problem

system biology

??? Invalid MEX-file
'C:\Users\AIG\Documents\GLUCOSE-INSULIN\SensSB_12_09_26_public_release\SensSB_12_09_26_public_release\optimization_solvers\SSm
R2010A MATLAB7.5\local_solvers\n2fb\wdn2fb.mexw32': The specified
module could not be found.
.
Error in ==> call_n2fb at 71
[X,IV,V,TY] = wdn2fb(N,P,X,B,IV,LIV,LV,V,UI,TY);

Best Answer

You appear to be attempting to use the 32 bit MEX file wdn2fb.mexw32 . 32 bit MEX files can only be used with the 32 bit versions of MATLAB (this is an operating systems limitation in nearly all operating systems.)
If you are using a 32 bit MATLAB to invoke the 32 bit MEX file, then some DLL that the MEX file needs is not present in your system.
Related Question