Difference between revisions of "Lab05"
From ACL@NCU
Line 1: | Line 1: | ||
=Downloads= | =Downloads= | ||
#[[ | #[[Media:Lab05data.tar.gz]] (type "tar xvf Lab05data.tar.gz" to extract) | ||
# | # | ||
Line 46: | Line 46: | ||
</pre> | </pre> | ||
=Single Subject General Linear Model (GLM)= | |||
=References= | =References= | ||
[http://afni.nimh.nih.gov/pub/dist/HOWTO/howto/ht03_stim/html/AFNI_howto.html stimulus timing tutorial ] | [http://afni.nimh.nih.gov/pub/dist/HOWTO/howto/ht03_stim/html/AFNI_howto.html stimulus timing tutorial ] |
Revision as of 00:22, 19 November 2014
Downloads
- Media:Lab05data.tar.gz (type "tar xvf Lab05data.tar.gz" to extract)
Linux
- create symbolic link to a path
ln -s <destination> <symbolic link>
- For example, typing the following command in your home directory (~):
ln -s /media/DATA2/guests/public/Lab05 fmric
- Create a symbolic link "fmric" pointing to "/media/DATA2/guests/public/Lab05" (assuming it exists). Thus, under your home directory, type:
cd fmric
you will be in "~/fmric", where all the contents of /media/DATA2/guests/public/Lab05 can be accessed.
- Note: Deleting the symbolic link won't remove the contents of its destination.
- Loop with tcsh
foreach <variable> (<list items>) <your command> end
The statements above will iterate <your command> for the length of your list items.
Example: #!/usr/bin/tcsh foreach run (1 2 3) echo $run end