AFNI Message Board

Dear AFNI users-

We are very pleased to announce that the new AFNI Message Board framework is up! Please join us at:

https://discuss.afni.nimh.nih.gov

Existing user accounts have been migrated, so returning users can login by requesting a password reset. New users can create accounts, as well, through a standard account creation process. Please note that these setup emails might initially go to spam folders (esp. for NIH users!), so please check those locations in the beginning.

The current Message Board discussion threads have been migrated to the new framework. The current Message Board will remain visible, but read-only, for a little while.

Sincerely, AFNI HQ

History of AFNI updates  

|
January 27, 2004 02:29PM
Jane,

Sorry that I did not quite understand your concern the first time.

For consistency normalization is usually done after registration, but I don't see such a normalization order as a problem. For example, if you have four runs during the 2nd day with each run having 92 time points, you can get their means first:

3dTstat -mean -prefix mean1 dataset+orig'[<0>..<91>]'
3dTstat -mean -prefix mean2 dataset+orig'[<92>..<183>]'
3dTstat -mean -prefix mean3 dataset+orig'[<184>..<275>]'
3dTstat -mean -prefix mean4 dataset+orig'[<276>..<367>]'

Then normalize each run:

3dcalc \
-a dataset+orig'[<0>..<91>]' \
-b mean1+orig \
-expr "a/b*100" \
-prefix dataset.norm1

3dcalc \
-a dataset+orig'[<92>..<183>]' \
-b mean2+orig \
-expr "a/b*100" \
-prefix dataset.norm2

3dcalc \
-a dataset+orig'[<184>..<275>]' \
-b mean3+orig \
-expr "a/b*100" \
-prefix dataset.norm3

3dcalc \
-a dataset+orig'[<276>..<367>]' \
-b mean4+orig \
-expr "a/b*100" \
-prefix dataset.norm4

Concatenate the four normalized runs:

3dTcat -prefix dataset.norm \
dataset.norm1+orig \
dataset.norm2+orig \
dataset.norm3+orig \
dataset.norm4+orig

Gang
Subject Author Posted

registration and % signal change

Jane Lange January 27, 2004 12:04PM

Re: registration and % signal change

Gang Chen January 27, 2004 12:41PM

Re: registration and % signal change

Jane Lange January 27, 2004 01:42PM

Re: registration and % signal change

bob cox January 27, 2004 02:20PM

outliers/normalization question

Jane Lange January 30, 2004 03:54PM

Re: registration and % signal change

Gang Chen January 27, 2004 02:29PM