Reputation: 19
Hi I'm in a great trouble I have a wavelet transform code for image processing in a an older version of matlab which uses older functions, not supported in new matlab version i.e mmread() etc. is there any tool or anything which can help me converting or running this code??? thank you very much
Upvotes: 1
Views: 4849
Reputation: 24127
If you have a license for MATLAB that is in maintenance, you can download previous versions of MATLAB from MathWorks website.
Upvotes: 2
Reputation: 74930
When there's a rare incompatible change in furnctions in Matlab, the solution is to modify the code to use the new functions. If you want to ensure that your code will still run on the old versions of Matlab as well, then you can use verlessthan
:
if verLessThan('matlab', '7.0.1')
% -- Put code to run under MATLAB 7.0.0 and earlier here --
else
% -- Put code to run under MATLAB 7.0.1 and later here --
end
Upvotes: 4