How to compile against a specific MCR version?
Show older comments
I have an application compiled for MCR 7.17 about a year ago. This has been in constant use by a third party. They requested a small change to address changes to an external API, which I made and recompiled, now for MCR 8.1, which is what I now have on my machine. Third party also installs MCR 8.1, but now the executable fails. The log files my application writes tell me that it fails not at the point of my new change, which generates the expected output, but fails later in (to-the-best-of-my-knowledge) non-dependent code, apparently on a 'find' statement with 'Too many input arguments'. I can't easily recreate a development environment because of a 1TB data stack on the third-party machine that I no longer have on mine. (Bad development management practice perhaps, but I still have a problem.)
So, my questions:
- Has the behaviour of 'find' changed between MCR 7.17 and 8.1?
- How can I compile against a specific MCR version? i.e. for MCR 17.7 on my R2013a installation.
4 Comments
Neil Caithness
on 5 Nov 2013
Friedrich
on 5 Nov 2013
add a few lines of code before the find call to save the current workspace scope into a mat file and let the end user send that mat file to you. use that mat file to debug your matlab code to figure out the error in the code.
Image Analyst
on 5 Nov 2013
Can you show us what the find() line of code looks like?
Neil Caithness
on 7 Nov 2013
Answers (2)
Hi Neil,
I do not think that the behavior of "find" has changed between the MCR versions. However, to be sure you can check the same on the documentation for MATLAB versions online. Below is the link:
As far as compiling against a new MCR is concerned, you need to install the new MCR and then add it as a first thing in your Windows PATH environment variable. Below is the link for the same.
Image Analyst
on 7 Nov 2013
Assuming ECO_ID and eco_id are both integers, I see nothing wrong with that. And there is only one argument (the logical expression eco_id==eco(i).ECO_ID), which is not too many. I don't know what you're doing with k but you might want only one k, in case there are multiple matches. So in that case
k = find(eco_id==eco(i).ECO_ID, 1, 'first'); % Get only the first match.
if isempty(k)
warningMessage = sprintf('Warning, ecod_id %d not found!', eco_id);
uiwait(warndlg(warningMessage));
% Perhaps break out of the loop if you need to,
% or use continue to skip to end of loop.
end
2 Comments
Neil Caithness
on 7 Nov 2013
Image Analyst
on 7 Nov 2013
Is there anyway you could obtain the source code?
Categories
Find more on Application Deployment 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!