Home > fmri > utils > vanhorn > vanhorn_defaults.m

vanhorn_defaults

PURPOSE ^

vanhorn_defaults.m

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 vanhorn_defaults.m

 Default variable definitions used in Jack Van Horn's analysis scripts

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % vanhorn_defaults.m
0002 %
0003 % Default variable definitions used in Jack Van Horn's analysis scripts
0004 %
0005 
0006 
0007 % ***************************************
0008 % Define Endian Type for Image Data Input
0009 ENDIANIN='ieee-le';   % Use this when running on Intel-Based Processors and
0010                       % with data written using an Intel Processor
0011                       % e.g. A DELL Linux Box
0012 
0013 %ENDIANIN='ieee-be';  % Use this when running on SUN-Based Processors and
0014                       % with data written using a SUN Processor
0015                       % e.g. dexter.dartmouth.edu
0016 
0017 % ****************************************
0018 % Define Endian Type for Image Data Output
0019 ENDIANOUT='ieee-le';  % Use this when running on Intel-Based Processors and
0020                       % with data written using an Intel Processor
0021                       % e.g. A DELL Linux Box
0022 
0023 %ENDIANOUT='ieee-be'; % Use this when running on SUN-Based Processors and
0024                       % with data written using a SUN Processor
0025                       % e.g. dexter.dartmouth.edu
0026 
0027               
0028 % *********************
0029 % Set Masking Threshold
0030 THRESH=550.0;
0031 
0032 % **************************************
0033 % Flag for Normalizing the Design Matrix
0034 NORMDESMTX=0;
0035 
0036 % ***************************
0037 % fMR Data Normalization Mode
0038 DATA_NORM_MODE = 3;
0039 
0040 % ***************************
0041 % Flag for Outlier Protection
0042 OUTLIER_CORRECTION=1;
0043 OUTLIER_THRESH=4.0;
0044 
0045 % ************************************************
0046 % Flag for The Existence of a Matlab Contrast File
0047 CONTRAST_FILE = 0;
0048 
0049 % ************************************
0050 % Critical Probability Threshold Value
0051 pcrit=0.05;
0052 
0053 % ***************************
0054 % Set A Small Tolerance Value
0055 TINY=1e-5;
0056 
0057 % ********************
0058 % F_indiv Scatterplots
0059 F_INDIV_PLOTS=0;
0060 
0061 % ***************
0062 % Local Max Plots
0063 LOCAL_MAX_PLOTS=1;
0064 
0065 % ************************************************************
0066 % If Christian Buchel's Structural Equation Modeling Routine's
0067 % are Available set SEM=1, else SEM=0
0068 SEM=0;

Generated on Wed 20-Sep-2023 04:00:50 by m2html © 2003