Created
December 13, 2018 13:30
-
-
Save Remi-Gau/08bdf2e22ffefa7d40c235048ca97560 to your computer and use it in GitHub Desktop.
script that prints the results of an SPM contrats (obtained via the GUI on SPM) to a csv file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% script that prints the results of an SPM contrats (obtained via the GUI on SPM) | |
% to a csv file | |
%% Print a csv files of the results | |
Results_file = 'result.csv'; | |
fid = fopen (Results_file, 'w'); | |
fprintf (fid, '%s', xSPM.title); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, '%s', TabDat.tit); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, TabDat.ftr{6,1}, TabDat.ftr{6,2}); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, 'Cluster forming threshold = %s,', xSPM.thresDesc); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, 'Minimum cluster size %i,', xSPM.k); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, 'Smoothness (FWHM in mm),'); | |
fprintf (fid, '%6.3f,', xSPM.FWHM .* xSPM.VOX); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, 'Resel count %6.3f,', TabDat.ftr{8,2}(3)); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, 'Voxel count %6.3f,', TabDat.ftr{8,2}(2)); | |
fprintf (fid, '\n\n'); | |
fprintf (fid, '\n'); | |
%% Print the header | |
for i=1:size(TabDat.hdr,1)-1 | |
for j=1:size(TabDat.hdr,2) | |
fprintf (fid, '%s,', TabDat.hdr{i,j}); | |
end | |
fprintf (fid, '\n'); | |
end | |
%% Print the data | |
for i=1:size(TabDat.dat,1) | |
for j=1:size(TabDat.dat,2) | |
fprintf (fid, '%6.3f,', TabDat.dat{i,j}); | |
end | |
fprintf (fid, '\n\n\n\n'); | |
end | |
%% | |
fclose (fid); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment