A change in the mcpath file (line 30) from the previous version seems to have broken the ability to find files in the bin folder, typically executables.
Operating System: Windows 10
MATLAB: '9.2.0.538062 (R2017a)'
Error: '"cgalsurf.exe"' is not recognized as an internal or external command, operable program or batch file.
Current Code: mcpath (line 30) - if(exist(tempname,'file'))
Edited Code: mcpath (line 30) - if(exist([tempname getexeext],'file')) <-- looks for specific file (recommended)
Alternative Code: mcpath (line 30) - if(exist([fileparts(which(mfilename)) filesep 'bin'],'file')) <-- looks for the bin folder, this is how the previous version code worked.
A change in the mcpath file (line 30) from the previous version seems to have broken the ability to find files in the bin folder, typically executables.
Operating System: Windows 10 MATLAB: '9.2.0.538062 (R2017a)' Error: '"cgalsurf.exe"' is not recognized as an internal or external command, operable program or batch file. Current Code: mcpath (line 30) - if(exist(tempname,'file')) Edited Code: mcpath (line 30) - if(exist([tempname getexeext],'file')) <-- looks for specific file (recommended) Alternative Code: mcpath (line 30) - if(exist([fileparts(which(mfilename)) filesep 'bin'],'file')) <-- looks for the bin folder, this is how the previous version code worked.