Line 56 of INSTALL_Direct_Method_Examples.m file contains a Windows dependent directory delimiter '\', which make this code not executable in Mac or Linux.
You may recognize platform before using those delimiter such as:
if ispc
dirdelimiter = '\';
else
dirdelimiter = '/';
end
Line 56 of INSTALL_Direct_Method_Examples.m file contains a Windows dependent directory delimiter
'\'
, which make this code not executable in Mac or Linux. You may recognize platform before using those delimiter such as:and