Skip to content

Commit

Permalink
cosmetics, some commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
mrikasper committed Mar 15, 2022
1 parent 9d0cb16 commit 2d154f2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
9 changes: 1 addition & 8 deletions uhfbold_plot_acq_duration_epi_spiral.m
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,8 @@
stringLegend{iPlot} = sprintf('%s R = %d (Gradient %3d / %4d)', ...
trajPlotNames{idTraj}, R, ...
1000*Gmax, SRmax);
% stringLegend{iPlot} = sprintf('%s R = %d (G_{max} = %3.0f mT/m, SR_{max} = %4.0f T/m/s)', ...
% trajPlotNames{idTraj}, R, ...
% 1000*Gmax, SRmax);
end
% stringLegend{iPlot} = sprintf('%s R = %d (%s, G_{max} = %3.0f mT/m, SR_{max} = %4.0f T/m/s)', ...
% trajPlotNames{idTraj}, R, gradSystemNames{idGradSystem}, ...
% 1000*Gmax, SRmax);
%
hp(iPlot) = plot(x(:,iPlot),y(:,iPlot));
hp(iPlot) = plot(x(:,iPlot),y(:,iPlot));
hp(iPlot).Marker = markerArray{R};
hp(iPlot).MarkerSize = 12;
hp(iPlot).Color = colorArray(idGradSystem,:);
Expand Down
17 changes: 13 additions & 4 deletions uhfbold_plot_snr_2Dvs3DvsSMS.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,18 @@

% T1 Values from [Poser2010]
T1 = 1.4;
TR = 70e-3; %;65e-3%70e-3; % TR between consecutive excitations (neighboring slices or re-excitation 3D volume)
Rz = 4; % maximum assumed undersampling factor in slice direction for SMS (MB factor) and 3D
FOVz = 120; %100; %120;

% TR between consecutive excitations (neighboring slices or re-excitation 3D volume)
% 50 ms is the favorable trajectory duration for 7T (see Fig. 24.4.1), and
% I added some buffer for slice excitation, longer TE and contrast cleanup
% (fat suppression, spoiling)
TR = 70e-3; % 65e-3; %70e-3;

% maximum assumed undersampling factor in slice direction for SMS (MB factor) and 3D
% only affects the 2nd figure with the SMS comparison, Rz = 1 is fixed in
% Figure 1
RzFigure2 = 4; % 2;
FOVz = 120; % 100; %120;


idSubject = 'FEINBERGATRON';
Expand Down Expand Up @@ -151,7 +160,7 @@
%% Plot 2D vs 3D vs SMS SNR
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Rz = 4;
Rz = RzFigure2;
stringTitle = {'SNR 2D vs SMS vs 3D Acquisition', ...
sprintf('(T_1 = %4d ms, TR_{slice} = %2d ms, FOV_z = %3d mm, R_z = %d)', ...
T1*1e3, TR*1e3, FOVz, Rz)};
Expand Down

0 comments on commit 2d154f2

Please sign in to comment.