setenv AFNI_XJPEG_IMXY 768x1024which means to set the x-size (horizontal) to 768 pixels and the y-size (vertical) to 1024 pixels. These values are the default, by the way.
If the first value 'A' is negative and less than -1, its absolute value is the number of pixels across PER ROW. If the second value 'B' is negative, its absolute value is the number of pixels down PER ROW. (Usually there are many fewer columns than rows.)
30@0 1 -1 0 0 30@0 0 0 1 -1
Stim = means put +1 in the matrix row for each lag of Stim +Stim = same as above -Stim = means put -1 in the matrix for for each lag of Stim Stim[2..7] = means put +1 in the matrix for lags 2..7 of Stim 3*Stim[2..7] = means put +3 in the matrix for lags 2..7 of Stim Stim[[2..4]] = means put +1 in the matrix for lags 2..4 of Stim in 3 successive rows of the matrix, as in 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 whereas Stim[2..4] would yield one matrix row 0 0 1 1 1 0 0 0There can be no spaces or '*' characters in the stimulus symbols; each set of stimulus symbols on a row should be separated by one or more spaces. For example, the two multi-lag regressors entered with the options below
-stim_label 1 Ear -stim_minlag 1 0 -stim_maxlag 1 5 \ -stim_label 2 Wax -stim_minlag 2 2 -stim_maxlag 2 7could have a GLT matrix row specified by
+Ear[2..5] -Wax[4..7]which would translate into a matrix row like
{zeros for the baseline} 0 0 1 1 1 1 0 0 -1 -1 -1 -1
-gltsym 'SYM: +Ear[2..5] -Wax[4..7]'where the 'SYM:' that starts the string indicates that the rest of the string should be used to define the 1 row matrix. It is important that this string be enclosed in forward single quotes, as shown. If you want to have multiple rows specified, use the '\' character to mark the end of each row, as in
-gltsym 'SYM: +Ear[2..5] \ -Wax[4..7]'
-input fred+orig ethel+orig lucy+orig ricky+origEach command line argument after "-input" that does NOT start with a '-' character is taken to be a new dataset. These datasets will be catenated together in time (internally) to form one big dataset. Other notes:
++ voxel loop:0123456789.0123456789.0123456789.0123456789.0123456789.where each digit is printed when 2% of the voxels are done.
-stim_times k tname rtype
12.3 19.8 23.7 29.2 39.8 52.7 66.6 21.8 32.7 41.9 55.5These times will be converted to global times by the program, by adding the time offset for each imaging run.
* 3.2 7.9 18.2 21.3 * 8.3 17.5 22.2
* * 30 *However, this will be confused with the 1 column format, which means global times, and so this is wrong. Instead, you can put an extra '*' on one line with an actual stimulus, and then things will work OK:
* * 30 * *
-nodata 114 2.5to indicate 114 points in time with a spacing of 2.5 s.