Skip to content

Commit cebd039

Browse files
committedAug 29, 2024
Added ISMRM-PDF
1 parent f6460b2 commit cebd039

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎Docs/IR-Calc_ISMRM_GadOE.pdf

778 KB
Binary file not shown.

‎IR_Calculator.m

+4-4
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ function mainDIRNul( T1z1, T1z2 )
351351
% disp( [ S0W_t, S0L_t ] )
352352
% plot(Ti2,Ti1) ; % DEBUG: Plot the TI1 calculated for each TI2
353353
% S0_DIFF = abs(S0_DIR(:,1)-S0_DIR(:,2)) ; % DEBUG: Calculate signal difference between two T1s
354-
% [~,minind] = min(S0_DIFF) ; % Find the T1Wnull crossing graphically (as [minval,minind])
354+
% [~,minind] = min(S0_DIFF) ; % Find the T1W-null crossing graphically (as [minval,minind])
355355
% iC.T.Ti2n = Ti2(minind) ;
356356
% plot(Ti2,S0_DIFF) ; % DEBUG: Plot the WM/MS signal difference
357357
hold off
@@ -512,7 +512,7 @@ function SetMode( mode ) % Sets the run mode and
512512
else
513513
SetT1n( 2, 1 ) ;
514514
end % if
515-
case 3 % T1W-DIR default: (Null out CSF as the longest T1)
515+
case 3 % T1Wn-DIR default: (Null out CSF as the longest T1)
516516
end % switch
517517
iC.P.Mode = mode ; % Make the mode setting global
518518
if ( mode ~= 3 ) && ( oldMode ~= 3 )
@@ -539,7 +539,7 @@ function SetT1n( mode, T1s ) % Sets the Nulling selec
539539
i = 1:4 ;
540540
case 2 % DIR: Plot Mz for brain tissues (WM, GM, CSF, WML?)
541541
i = 1:4 ;
542-
case 3 % T1W-DIR: Plot the signal for WM and WML
542+
case 3 % T1Wn-DIR: Plot the signal for WM and WML
543543
i = [ 1 4 ] ; % NOTE: This is not implemented yet; Mode 3 uses its own plot
544544
end % switch
545545
iC.M.Plt = iC.M.T(:,i); iC.M.Leg = iC.M.Tag(1,i) ; % Update the T1 times to plot and their label texts
@@ -639,7 +639,7 @@ function IR_CreateUI() % Display a button to sh
639639
'Callback' , @plotT2_callback ) ; % UI to create T2 vs TE plot
640640
end % if
641641

642-
if ismember( iC.P.Mode, [ 2 3 ] ) % If DIR/T1W_n:
642+
if ismember( iC.P.Mode, [ 2 3 ] ) % If DIR/T1Wn:
643643
cPar = [ 0 3 2 ] ; % Switch to this mode from mode 1-3
644644
uicontrol( 'Style' , 'pushbutton' , ...
645645
'ToolTipString' , '[t] Switch mode' , ...

0 commit comments

Comments
 (0)
Please sign in to comment.