intro-to-mrtools

The GUI

Notes

The gui is a convenient way of interacting with the data for a particular session

mrSESSION.mat

load('mrSession.mat')
% info about the sesion in a struct
session

Simply the metadata that was entered at the mrInit() step - but in a convenient struct and needed so mrTools code can pick this up in various steps internally.

>> session

session = 

    mrLoadRetVersion: 4.7000
         description: 'demo analysis'
             subject: 'S1'
            operator: 'ds'
              magnet: 'Allegra 3T'
                coil: 'LifeService'
            protocol: 'cbi_ep2d_bold: '

Information about groups contains some more useful info about the scans stored in the Raw group. More on how data is stored in groups on this page.

% info about "groups"
groups
% and turn parameters of scans into table for display
struct2table(groups.scanParams)