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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see a few lines of cods like this
dlmwrite('data.bvals',bvals); dlmwrite('data_b1000.bvals',bvals1000);
https://github.com/brain-life/pestillilab_projects/search?utf8=%E2%9C%93&q=dlmwrite&type=
To make the output bvals/bvecs more inter-operable with other apps, bvecs/bvals should be space delimited to follow the FSL standard.
dlmwrite('data.bvals',bvals, 'delimiter', ' '); dlmwrite('data_b1000.bvals',bvals1000, 'delimiter', ' ');
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see a few lines of cods like this
https://github.com/brain-life/pestillilab_projects/search?utf8=%E2%9C%93&q=dlmwrite&type=
To make the output bvals/bvecs more inter-operable with other apps, bvecs/bvals should be space delimited to follow the FSL standard.
The text was updated successfully, but these errors were encountered: