Legend:
- Unmodified
- Added
- Removed
-
trunk/src/compile.m
r908 r923 43 43 SubfctPath=['-I ' SubfctPath];%string indicating the option of including the path SubfctPath 44 44 end 45 hver=ver('MATLAB'); 46 FctNameVersion=[FctName '_MCRROOT' regexprep(hver.Version,'\.','')];%suppress the dot in version number 45 [mcrmajor, mcrminor] = mcrversion; 46 MCRROOT = ['MCRROOT',int2str(mcrmajor),int2str(mcrminor)]; 47 FctNameVersion=[FctName,'_',MCRROOT]; 48 %hver=ver('MATLAB'); 49 %FctNameVersion=[FctName '_MCRROOT' regexprep(hver.Version,'\.','')];%suppress the dot in version number 47 50 try 48 51 disp(['mcc -m -R -nojvm -R -nodisplay -R -singleCompThread ' SubfctPath ' ' FctName '.m']) -
trunk/src/series.m
r922 r923 1510 1510 set(handles.series,'Pointer','watch') % set the mouse pointer to 'watch' 1511 1511 set(handles.ActionExt,'BackgroundColor',[1 1 0]) 1512 hver=ver('MATLAB'); 1513 MCRROOT=['MCRROOT' regexprep(hver.Version,'\.','')];%suppress the dot in version number 1512 [mcrmajor, mcrminor] = mcrversion; 1513 MCRROOT = ['MCRROOT',int2str(mcrmajor),int2str(mcrminor)]; 1514 %hver=ver('MATLAB'); 1515 %MCRROOT=['MCRROOT' regexprep(hver.Version,'\.','')];%suppress the dot in version number 1514 1516 RunTime = getenv(MCRROOT); 1515 1517 ActionNameVersion=[ActionName '_' MCRROOT];
Note: See TracChangeset
for help on using the changeset viewer.