We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Running setup_morph.m does not work for Unix-based operating systems because the paths are hardcoded with "\" es separtor:
MORpH/setup_morph.m
Lines 66 to 67 in a0fe436
For Unix-based operating systems, it must be "/". I suspect that the correct way to create path strings in MATLAB is to use the fullfile function.
fullfile
There are many more paths in this script, and perhaps throughout the project, for which the fullfile function should be used instead of strcat.
strcat
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running setup_morph.m does not work for Unix-based operating systems because the paths are hardcoded with "\" es separtor:
MORpH/setup_morph.m
Lines 66 to 67 in a0fe436
For Unix-based operating systems, it must be "/".
I suspect that the correct way to create path strings in MATLAB is to use the
fullfile
function.There are many more paths in this script, and perhaps throughout the project, for which the
fullfile
function should be used instead ofstrcat
.The text was updated successfully, but these errors were encountered: