MATLAB: Matlab Builder NE exception with supposedly toolbox support

cMATLAB Builder NE

I have successfully built my series of M script files (including Pairs.m) with deploytool in the Matlab Builder NE toolbox. I also checked the support setting of the package build to ensure the Econemtric toolbox function I am calling which is egcitest. Everything seems to bridge ok between my C# application and the Builder NE toolbox generated DLL. When it calls egcitest, I get a strange exception from Matlab Compiler Runtime (MCR) which is:
.. MWMCR::EvaluateFunction error … Error using ==> load Unable to read file Data_EGCITest: No such file or directory. Error in => Pairs.m at line nn
How is this possible if the Matlab Builder NE setting includes the support of egcitest from the Econometrics toolbox. Can anyone help me on this? I am using Matlab 2011a and Visual Studio 2010 Ultimate. Thanks

Best Answer

This is not a bug in EGCITEST or DEPLOYTOOL.
The dependency analysis that the MATLAB Compiler carries out at compile time is unable to pick up the dependency on the data file since it’s not MATLAB code. Any data files that are referenced from code that is being deployed need to be added explicitly to the project.
To do this, add the .mat file to your DEPLOYTOOL project. Drag $MATLABROOT/toolbox/econ/econ/Data_EGCITest.mat into the project where it says “add files/directories” in the Build tab of DEPLOYTOOL. If compilation is being done on the command line using the MCC command, this dependency would be resolved using the -a option to MCC:
-a fullfile(matlabroot, toolbox, econ, econ, Data_EGCITest.mat)
o Dave Lane (MathWorks Quality Engineering)
o Bill Mueller (Econometrics Toolbox)