From f7e37e26b503f3869a08433cecd6944330e4c64f Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Thu, 27 Apr 2023 09:51:45 -0400 Subject: [PATCH 1/9] Add github action to codespell master on push and PRs --- .github/workflows/codespell.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/codespell.yml diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 00000000..5768d7c6 --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,19 @@ +--- +name: Codespell + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Codespell + uses: codespell-project/actions-codespell@v1 From 0d83fce70270606cb3bf1ba39b7b3fe9bd1095dd Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Thu, 27 Apr 2023 09:51:45 -0400 Subject: [PATCH 2/9] Add rudimentary codespell config --- .codespellrc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 00000000..9ec0d7c4 --- /dev/null +++ b/.codespellrc @@ -0,0 +1,4 @@ +[codespell] +skip = .git,*.pdf,*.svg +# +# ignore-words-list = From c2ae67dd21d129967c92c677aff6330d67722db7 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 15:24:22 -0500 Subject: [PATCH 3/9] ignores --- .codespellrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codespellrc b/.codespellrc index 9ec0d7c4..f3359c32 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] -skip = .git,*.pdf,*.svg +skip = .git,*.pdf,*.svg,*.js,_build,*.html,*.rtf,External # -# ignore-words-list = +ignore-words-list = ons,ans,fpr,ttests,myu,whos,ser,htmp,fwe,dout From 35bf59aa5746e55eed09ff651d8a8b7707bb3126 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 15:43:27 -0500 Subject: [PATCH 4/9] Consensus typo --- CanlabCore/@fmri_data/predict.m | 2 +- CanlabCore/mlpcr/mlpcr2.m | 12 ++++++------ CanlabCore/mlpcr/mlpcr3.m | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CanlabCore/@fmri_data/predict.m b/CanlabCore/@fmri_data/predict.m index b271f5b5..79d598cc 100644 --- a/CanlabCore/@fmri_data/predict.m +++ b/CanlabCore/@fmri_data/predict.m @@ -108,7 +108,7 @@ % models), between eigenvectors, between scores, within % eigenvectors and within scores. Requires 'subjID' option followed % by size(obj.dat,2) x 1 vector of block labels. -% Optional: Concensus PCA, {'cpca', 1}. [Default]={'cpca, 0}. +% Optional: Consensus PCA, {'cpca', 1}. [Default]={'cpca, 0}. % Optional: Dimension selection, {'numcomponents', [bt, wi]}. % [Default] = {'numcomponents',[Inf,Inf]} (df constrained) % Note: You probably want to bootstrap this manually if diff --git a/CanlabCore/mlpcr/mlpcr2.m b/CanlabCore/mlpcr/mlpcr2.m index 08ee6c01..045eeb27 100644 --- a/CanlabCore/mlpcr/mlpcr2.m +++ b/CanlabCore/mlpcr/mlpcr2.m @@ -21,7 +21,7 @@ % If the defaults are used then the result is identical to PCR, only you % get both within and between subject predictive models in addition to the % full model. Different results may be obtained with hyperparameter -% optimization or concensus PCA enabled. +% optimization or consensus PCA enabled. % % Input :: % @@ -52,9 +52,9 @@ % default if you wish to treat trait differences as % noise. % -% 'cpca' - followed by 0/1 to indicate whether or not concensus PCA +% 'cpca' - followed by 0/1 to indicate whether or not consensus PCA % (Westerhuis, et al. 1998) should be used in place of -% standard pca. If concensus PCA is enabled eigenvectors +% standard pca. If consensus PCA is enabled eigenvectors % will be selected such that variance is explained % equally across all blocks. Otherwise eigenvectors will % best represent blocks with the most observations. @@ -64,7 +64,7 @@ % and will consequently fight against CPCA. A future % update may fix this, and if so this note should be % removed. -% Note 2: In principle concensus PCA could be implemened +% Note 2: In principle consensus PCA could be implemened % for traditional PCR too. It just hasn't been. % % Output :: @@ -117,7 +117,7 @@ % (allowing the user to force retention of one or the other even if % eigenvalue rank doesn't justify it) % - passthrough options to higher level cv_mlpcr, cv_mlpcr_bt and -% cv_mlpcr_wi scripts. Concensus PCA should also use concensus cv_err, +% cv_mlpcr_wi scripts. Consensus PCA should also use consensus cv_err, % cv_mlpcr_wi and cv_mlpcr_bt should have within and between priority % (respectively) by default. @@ -185,7 +185,7 @@ end - % Get concensus PCA solution, which weighs each block equally + % Get consensus PCA solution, which weighs each block equally % requires Matlab 2016b or later perform operation across all % columns like this with sf [pc_w,~,~] = svd((sf.*Xw)', 'econ'); diff --git a/CanlabCore/mlpcr/mlpcr3.m b/CanlabCore/mlpcr/mlpcr3.m index eb98df70..61b387ce 100644 --- a/CanlabCore/mlpcr/mlpcr3.m +++ b/CanlabCore/mlpcr/mlpcr3.m @@ -21,7 +21,7 @@ % If the defaults are used then the result is identical to PCR, only you % get both within and between subject predictive models in addition to the % full model. Different results may be obtained with hyperparameter -% optimization or concensus PCA enabled. +% optimization or consensus PCA enabled. % % Input :: % @@ -52,9 +52,9 @@ % default if you wish to treat trait differences as % noise. % -% 'cpca' - followed by 0/1 to indicate whether or not concensus PCA +% 'cpca' - followed by 0/1 to indicate whether or not consensus PCA % (Westerhuis, et al. 1998) should be used in place of -% standard pca. If concensus PCA is enabled eigenvectors +% standard pca. If consensus PCA is enabled eigenvectors % will be selected such that variance is explained % equally across all blocks. Otherwise eigenvectors will % best represent blocks with the most observations. @@ -64,7 +64,7 @@ % and will consequently fight against CPCA. A future % update may fix this, and if so this note should be % removed. -% Note 2: In principle concensus PCA could be implemened +% Note 2: In principle consensus PCA could be implemened % for traditional PCR too. It just hasn't been. % % 'randInt' - Fit a random intercept model. Default=false @@ -129,7 +129,7 @@ % (allowing the user to force retention of one or the other even if % eigenvalue rank doesn't justify it) % - passthrough options to higher level cv_mlpcr, cv_mlpcr_bt and -% cv_mlpcr_wi scripts. Concensus PCA should also use concensus cv_err, +% cv_mlpcr_wi scripts. Consensus PCA should also use consensus cv_err, % cv_mlpcr_wi and cv_mlpcr_bt should have within and between priority % (respectively) by default. @@ -224,7 +224,7 @@ end - % Get concensus PCA solution, which weighs each block equally + % Get consensus PCA solution, which weighs each block equally % requires Matlab 2016b or later perform operation across all % columns like this with sf [pc_w,~,~] = svd((sf.*Xw)', 'econ'); From e6d4b99cc22538400f24652de48adf1efbd242f2 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 15:55:34 -0500 Subject: [PATCH 5/9] [DATALAD RUNCMD] sagittal typo === Do not change lines below === { "chain": [], "cmd": "git-sedi saggital sagittal", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- CanlabCore/@fmridisplay/addpoints.m | 4 +- CanlabCore/@fmridisplay/fmridisplay.m | 10 ++-- CanlabCore/@fmridisplay/montage.m | 16 +++--- CanlabCore/@fmridisplay/zoom_in_on_regions.m | 4 +- CanlabCore/@image_vector/display_slices.m | 24 ++++---- CanlabCore/@image_vector/slices.m | 6 +- CanlabCore/@statistic_image/multi_threshold.m | 2 +- .../cluster_nmdsfig.m | 4 +- CanlabCore/Data_extraction/readim2.m | 2 +- .../ROI_drawing_tools/draw_anatomical_roi.m | 4 +- .../draw_anatomical_roi_2008.m | 4 +- ...gression_multisubject_bootstrapweightmap.m | 2 +- .../canlab_results_fmridisplay.m | 52 +++++++++--------- .../cluster_orthviews_classes.m | 2 +- .../cluster_orthviews_montage.m | 2 +- .../cluster_orthviews_showcenters.m | 2 +- .../make_figure_into_orthviews.m | 2 +- .../Visualization_functions/roi_contour_map.m | 6 +- .../spm_orthviews_showposition.m | 6 +- .../tor_ihb_TalSpace.m | 8 +-- .../create_anatomical_underlay_2016.m | 4 +- .../insula_ribbon_partial_script.m | 2 +- .../_build/doctrees/misc_tools.doctree | Bin 4585121 -> 4585121 bytes .../_build/doctrees/moduleslist.doctree | Bin 6558854 -> 6558854 bytes .../_build/doctrees/oo_tools.doctree | Bin 1052718 -> 1052718 bytes .../SPHINX_DOCS/_build/html/misc_tools.html | 20 +++---- .../SPHINX_DOCS/_build/html/moduleslist.html | 46 ++++++++-------- .../SPHINX_DOCS/_build/html/oo_tools.html | 10 ++-- .../SPHINX_DOCS/_build/html/searchindex.js | 2 +- docs_sphinx_old/misc_tools.html | 20 +++---- docs_sphinx_old/moduleslist.html | 46 ++++++++-------- docs_sphinx_old/oo_tools.html | 10 ++-- docs_sphinx_old/searchindex.js | 2 +- 33 files changed, 162 insertions(+), 162 deletions(-) diff --git a/CanlabCore/@fmridisplay/addpoints.m b/CanlabCore/@fmridisplay/addpoints.m index 496be742..939646f8 100644 --- a/CanlabCore/@fmridisplay/addpoints.m +++ b/CanlabCore/@fmridisplay/addpoints.m @@ -11,7 +11,7 @@ % - enter xyz as n x 3 list of coordinates in mm to plot (world space) % - Points or text labels or both % - Flexible slice spacing, colors, marker sizes/styles, axis layout (one row/standard square) -% - axial, saggital, or coronal orientation handled automatically +% - axial, sagittal, or coronal orientation handled automatically % - Multiple different sets of points can be plotted in different colors/text labels % % :Optional Inputs: @@ -178,7 +178,7 @@ case 'axial' whcol = 3; - case {'sagg', 'sagittal', 'saggital'} + case {'sagg', 'sagittal', 'sagittal'} whcol = 1; diff --git a/CanlabCore/@fmridisplay/fmridisplay.m b/CanlabCore/@fmridisplay/fmridisplay.m index 089326cb..ba8e0e64 100644 --- a/CanlabCore/@fmridisplay/fmridisplay.m +++ b/CanlabCore/@fmridisplay/fmridisplay.m @@ -27,17 +27,17 @@ % obj = montage(obj, 'spacing', 4); % obj = addblobs(obj, cl, 'trans', 'color', [0 0 1], 'smooth'); % -% Add axial and parasaggital montages to the same figure: +% Add axial and parasagittal montages to the same figure: % o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 6); % axh = axes('Position', [0.03 0.45 .1 .5]); -% o2 = montage(o2, 'saggital', 'wh_slice', [0 0 0], 'existing_axes', axh); +% o2 = montage(o2, 'sagittal', 'wh_slice', [0 0 0], 'existing_axes', axh); % % Add blue outlines only: % obj = addblobs(obj, cl, 'outline', 'color', [0 0 1]); % % Sagittal images and blobs: % o2 = fmridisplay; -% o2 = montage(o2, 'saggital', 'slice_range', [-20 20], 'onerow'); +% o2 = montage(o2, 'sagittal', 'slice_range', [-20 20], 'onerow'); % o2 = addblobs(o2, cl); % legend(o2, 'figure') % o2 = addblobs(o2, cl, 'contour', 'color', [0 1 0]); @@ -48,7 +48,7 @@ % % Overlapping sagittal and axial images with outlines % o2 = fmridisplay; -% o2 = montage(o2, 'saggital', 'slice_range', [-10 10], 'onerow'); +% o2 = montage(o2, 'sagittal', 'slice_range', [-10 10], 'onerow'); % enlarge_axes(gcf, 1.2); % o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 4); % o2 = addblobs(o2, cl, 'splitcolor', {[0 0 1] [.3 0 .8] [.8 .3 0] [1 1 0]}); @@ -59,7 +59,7 @@ % o2 = addblobs(o2, cl, 'splitcolor', {[0 0 1] [0 1 1] [1 .5 0] [1 1 0]}, 'cmaprange', [-2 2], 'trans'); % o2 = addblobs(o2, cl, 'splitcolor', {[0 0 1] [0 1 1] [1 .5 0] [1 1 0]}, 'cmaprange', [-2 2], 'transvalue', .85); % -% o2 = montage(o2, 'saggital', 'slice_range', [-6 6], 'onerow'); +% o2 = montage(o2, 'sagittal', 'slice_range', [-6 6], 'onerow'); % o2 = montage(o2, 'axial', 'slice_range', [-20 30], 'onerow', 'spacing', 8); % xyz = a list of [x y z] coordinates, one coord per row % o2 = montage(o2, 'axial', 'wh_slice', xyz, 'onerow'); diff --git a/CanlabCore/@fmridisplay/montage.m b/CanlabCore/@fmridisplay/montage.m index d3bab7ba..33fc0af6 100644 --- a/CanlabCore/@fmridisplay/montage.m +++ b/CanlabCore/@fmridisplay/montage.m @@ -3,7 +3,7 @@ % - Solid brain slices or contour outlines % - Points or text labels or both % - Flexible slice spacing, colors, marker sizes/styles, axis layout (one row/standard square) -% - axial or saggital orientation +% - axial or sagittal orientation % % :Usage: % :: @@ -36,7 +36,7 @@ % **{'close', 'closeenough', 'close_enough'}:** % close_enough = varargin{i+1}; % -% **{'sagg','saggital','sagittal'}:** +% **{'sagg','sagittal','sagittal'}:** % orientation = 'sagittal'; % % **{'MarkerSize', 'markersize'}:** @@ -70,7 +70,7 @@ % followed my mm values for slices desired % e.g., for cluster/region centers, xyz = cat(1, cl.mm_center) % o2 = montage(o2, 'axial', 'wh_slice', xyz, 'onerow'); -% o2 = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow'); +% o2 = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow'); % % **'spacing':** % followed by inter-slice spacing in mm @@ -109,15 +109,15 @@ % :: % % axh = axes('Position', [0.05 0.4 .1 .5]); -% o2 = montage(o2, 'saggital', 'wh_slice', xyz(1,:), 'existing_axes', axh); +% o2 = montage(o2, 'sagittal', 'wh_slice', xyz(1,:), 'existing_axes', axh); % -% o2 = montage(o2, 'saggital', 'slice_range', [-10 10], 'onerow'); +% o2 = montage(o2, 'sagittal', 'slice_range', [-10 10], 'onerow'); % o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 4); % o2 = montage(o2, 'axial', 'slice_range', [-20 30], 'onerow', 'spacing', 8); % o2 = montage(o2, 'axial', 'wh_slice', xyz, 'onerow'); % -% % Parasaggital only: -% o2 = montage(o2, 'saggital', 'slice_range', [-4 4], 'onerow', 'spacing', 8); +% % Parasagittal only: +% o2 = montage(o2, 'sagittal', 'slice_range', [-4 4], 'onerow', 'spacing', 8); % % Add/remove blobs and points with fmridisplay.addblobs, % fmridisplay.addpoints, fmridisplay.removeblobs, fmridisplay.removepoints @@ -194,7 +194,7 @@ varargin{i+1} = []; varargin{i} = []; - case {'sag', 'sagg','saggital','sagittal'}, myview = 'sagittal'; + case {'sag', 'sagg','sagittal','sagittal'}, myview = 'sagittal'; case {'cor', 'coronal'}, myview = 'coronal'; diff --git a/CanlabCore/@fmridisplay/zoom_in_on_regions.m b/CanlabCore/@fmridisplay/zoom_in_on_regions.m index 7c3f9a53..009e8e62 100644 --- a/CanlabCore/@fmridisplay/zoom_in_on_regions.m +++ b/CanlabCore/@fmridisplay/zoom_in_on_regions.m @@ -2,7 +2,7 @@ function zoom_in_on_regions(o2, cl, orientation) % Assumes you have one axis per region in a montage registered in an % fmridisplay object (o2). Given the object o2, which montage to adjust % (montage_num), a corresponding region object with coordinates (cl), and an -% orientation ('axial', 'saggital', or 'coronal'), this object method zooms +% orientation ('axial', 'sagittal', or 'coronal'), this object method zooms % in on each cluster by adjusting the axes. % % Tor Wager, Feb 2018 @@ -25,7 +25,7 @@ function zoom_in_on_regions(o2, cl, orientation) xl = xyzminmax(1, :); yl = xyzminmax(2, :); - case 'saggital' + case 'sagittal' xl = xyzminmax(2, :); yl = xyzminmax(3, :); diff --git a/CanlabCore/@image_vector/display_slices.m b/CanlabCore/@image_vector/display_slices.m index 5f552930..98c77451 100644 --- a/CanlabCore/@image_vector/display_slices.m +++ b/CanlabCore/@image_vector/display_slices.m @@ -1,7 +1,7 @@ function [whsl, plate] = display_slices(dat, varargin) % Creates 3 separate montage views - ax, cor, sagg in a special figure window % -% - By default, a figure with axial, coronal, and saggital montages are +% - By default, a figure with axial, coronal, and sagittal montages are % created. But it's also easy to create nicer-looking separate figures with % only one view. % - Also easy to select slices: Enter 'startslice' and 'endslice', each followed by values, to display @@ -20,7 +20,7 @@ % % :Inputs: % -% **'axial', 'saggital', 'sagittal', 'coronal':** +% **'axial', 'sagittal', 'sagittal', 'coronal':** % Keywords to control view % % **'spacing'** @@ -60,14 +60,14 @@ % % display_slices(dat); % display_slices(dat, 'coronal'); -% display_slices(dat, 'saggital', 'spacing', 10); % 10 mm spacing -% display_slices(dat, 'saggital', 'spacing', 10, 'vertical'); -% display_slices(dat, 'saggital', 'slices_per_row', 12); +% display_slices(dat, 'sagittal', 'spacing', 10); % 10 mm spacing +% display_slices(dat, 'sagittal', 'spacing', 10, 'vertical'); +% display_slices(dat, 'sagittal', 'slices_per_row', 12); % display_slices(dat, 'axial', 'slices_per_row', 20, 'spacing', 4, 'startslice', -10, 'endslice', 10); % z = -10 to 10 mm, 4 mm spacing % % Make a montage of a subset of slices and make it fill the figure: % create_figure('sagg') -% display_slices(dat, 'saggital', 'slices_per_row', 4, 'spacing', 3, 'startslice', -20, 'endslice', 20) +% display_slices(dat, 'sagittal', 'slices_per_row', 4, 'spacing', 3, 'startslice', -20, 'endslice', 20) % set(gca, 'Position', [.05 .05 .9 1]); % colormap gray % @@ -96,7 +96,7 @@ if ischar(varargin{i}) switch varargin{i} % reserved keywords - case {'axial', 'saggital', 'sagittal', 'coronal'}, myview = varargin{i}; + case {'axial', 'sagittal', 'sagittal', 'coronal'}, myview = varargin{i}; case 'spacing', spacing = varargin{i + 1}; case 'vertical', stackorient = 1; case 'slices_per_row', s = varargin{i + 1}; @@ -127,7 +127,7 @@ fh = create_figure('slice_display'); axis off ax1 = axes('OuterPosition', [.05 .05 .20 .90], 'Position', [.05 .05 .20 .90]); - display_slices(dat, 'saggital', 'spacing', 8, 'vertical'); + display_slices(dat, 'sagittal', 'spacing', 8, 'vertical'); ax2 = axes('OuterPosition', [.229 .05 .8 .150]); %[.20 .05 .8 .30]); set(ax2, 'Position', get(ax2, 'OuterPosition')); @@ -160,7 +160,7 @@ switch myview case 'axial' wh_col = 3; - case {'saggital', 'sagittal'} + case {'sagittal', 'sagittal'} wh_col = 1; case 'coronal' wh_col = 2; @@ -240,7 +240,7 @@ otherwise error('unknown slice view.') subvol = abs(vdat(:, :, whsl)); sumabsval = sum(sum(subvol, 1), 2); - case {'saggital', 'sagittal'} + case {'sagittal', 'sagittal'} subvol = abs(vdat(whsl, :, :)); sumabsval = sum(sum(subvol, 2), 3); @@ -285,7 +285,7 @@ otherwise error('unknown slice view.') case 'axial' stacked{i} = vdat(:, :, i); stacked{i} = rot90(stacked{i}); - case {'saggital', 'sagittal'} + case {'sagittal', 'sagittal'} stacked{i} = squeeze(vdat(i, :, :)); stacked{i} = rot90(stacked{i}); case 'coronal' @@ -361,7 +361,7 @@ otherwise error('unknown slice view.') nullvox = vdat == 0 | isnan(vdat); bottom = all(nullvox, 3); - if strcmp(myview, 'saggital') || strcmp(myview, 'sagittal') + if strcmp(myview, 'sagittal') || strcmp(myview, 'sagittal') % skip else nullx = squeeze(all(bottom, 2)); diff --git a/CanlabCore/@image_vector/slices.m b/CanlabCore/@image_vector/slices.m index b62b3de1..8744556c 100644 --- a/CanlabCore/@image_vector/slices.m +++ b/CanlabCore/@image_vector/slices.m @@ -13,7 +13,7 @@ % :Optional Inputs: % % **orientation:** -% can be followed by 'saggital', 'axial', or 'coronal' +% can be followed by 'sagittal', 'axial', or 'coronal' % % **slice_mm:** % is followed by the mm coord of the slice to display; default = 0 @@ -50,14 +50,14 @@ % slices(dat, 'slice', -5); % display sagg at x = -5 % o = slices(dat, 'names', terms); % use 'terms' var as names % -% o2 = slices(all_chi2_images, 'orientation', 'saggital', 'slice', 0); +% o2 = slices(all_chi2_images, 'orientation', 'sagittal', 'slice', 0); % % .. % Copyright 2011, Tor Wager % .. slice_mm = 0; -my_orientation = 'saggital'; +my_orientation = 'sagittal'; nimgs = size(obj.dat, 2); dosplitcolor = 1; outlinecolor = []; diff --git a/CanlabCore/@statistic_image/multi_threshold.m b/CanlabCore/@statistic_image/multi_threshold.m index 93db185b..40a0fd9d 100644 --- a/CanlabCore/@statistic_image/multi_threshold.m +++ b/CanlabCore/@statistic_image/multi_threshold.m @@ -369,7 +369,7 @@ % % o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 6, 'noverbose'); % axh = axes('Position', [0.05 0.4 .1 .5]); - % o2 = montage(o2, 'saggital', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); + % o2 = montage(o2, 'sagittal', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); end end diff --git a/CanlabCore/Cluster_contig_region_tools/Cluster-based_multivar_tools/cluster_nmdsfig.m b/CanlabCore/Cluster_contig_region_tools/Cluster-based_multivar_tools/cluster_nmdsfig.m index 0e9ab959..e08c31b1 100644 --- a/CanlabCore/Cluster_contig_region_tools/Cluster-based_multivar_tools/cluster_nmdsfig.m +++ b/CanlabCore/Cluster_contig_region_tools/Cluster-based_multivar_tools/cluster_nmdsfig.m @@ -288,8 +288,8 @@ % cluster_orthviews_showcenters(cl,'coronal',overlay); % save_figure('cluster_slices_coronal'); % - % cluster_orthviews_showcenters(cl,'saggital',overlay); - % save_figure('cluster_slices_saggital'); + % cluster_orthviews_showcenters(cl,'sagittal',overlay); + % save_figure('cluster_slices_sagittal'); end diary off diff --git a/CanlabCore/Data_extraction/readim2.m b/CanlabCore/Data_extraction/readim2.m index 72b43df7..de9e88bc 100644 --- a/CanlabCore/Data_extraction/readim2.m +++ b/CanlabCore/Data_extraction/readim2.m @@ -14,7 +14,7 @@ % to plot montage of slices to the screen % % **sagg:** -% to rotate to saggital view +% to rotate to sagittal view % % **cor:** % to rotate to coronal view diff --git a/CanlabCore/ROI_drawing_tools/draw_anatomical_roi.m b/CanlabCore/ROI_drawing_tools/draw_anatomical_roi.m index 3c88b85b..280ad118 100644 --- a/CanlabCore/ROI_drawing_tools/draw_anatomical_roi.m +++ b/CanlabCore/ROI_drawing_tools/draw_anatomical_roi.m @@ -45,8 +45,8 @@ vol = double(vol); -dosagg = input('Press 1 to choose saggital slices, or 0 for axial.'); -% if saggital, use vol, not rvol +dosagg = input('Press 1 to choose sagittal slices, or 0 for axial.'); +% if sagittal, use vol, not rvol % y is not reversed % ginput x = brain y, ginput y = brainz, slice = x diff --git a/CanlabCore/ROI_drawing_tools/draw_anatomical_roi_2008.m b/CanlabCore/ROI_drawing_tools/draw_anatomical_roi_2008.m index 30bb202d..5baecc7c 100644 --- a/CanlabCore/ROI_drawing_tools/draw_anatomical_roi_2008.m +++ b/CanlabCore/ROI_drawing_tools/draw_anatomical_roi_2008.m @@ -107,7 +107,7 @@ function draw_anatomical_roi_2008(meth, varargin) meth = 'exit'; case 'freesagg' - disp('Draw freehand region on the saggital slice in Slices fig.'); + disp('Draw freehand region on the sagittal slice in Slices fig.'); data = get_gui_data; axis_handle = data.saggh; draw_freehand(axis_handle); @@ -667,7 +667,7 @@ function smooth_vol(varargin) str = 'draw_anatomical_roi_2008(''freesagg'');'; str = expand_callback_str(str); -uicontrol(f,'String','Draw (saggital)',... +uicontrol(f,'String','Draw (sagittal)',... 'Position',[x2start 200-35*0 150 30],... 'CallBack', str,... 'Interruptible','on',... diff --git a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_regression_multisubject_bootstrapweightmap.m b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_regression_multisubject_bootstrapweightmap.m index 3f177009..5c6bd065 100644 --- a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_regression_multisubject_bootstrapweightmap.m +++ b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_regression_multisubject_bootstrapweightmap.m @@ -547,7 +547,7 @@ function nested_choose_ndims() obj = montage(obj, 'onerow'); % Show axial montage of underlay %obj = montage(obj, 'axial', 'slice_range', [-40 55], 'onerow', 'spacing', 8); enlarge_axes(gcf, .95); - obj = montage(obj, 'saggital', 'slice_range', [-6 6], 'onerow'); + obj = montage(obj, 'sagittal', 'slice_range', [-6 6], 'onerow'); for i = 1:length(thresh) diff --git a/CanlabCore/Visualization_functions/canlab_results_fmridisplay.m b/CanlabCore/Visualization_functions/canlab_results_fmridisplay.m index 036f07f9..e7bfdb57 100644 --- a/CanlabCore/Visualization_functions/canlab_results_fmridisplay.m +++ b/CanlabCore/Visualization_functions/canlab_results_fmridisplay.m @@ -51,9 +51,9 @@ % % **'montagetype':** % -% 'full' Axial, coronal, and saggital slices, 4 cortical surfaces -% 'compact' Midline saggital and two rows of axial slices [the default] -% 'compact2' A single row showing midline saggital and axial slices +% 'full' Axial, coronal, and sagittal slices, 4 cortical surfaces +% 'compact' Midline sagittal and two rows of axial slices [the default] +% 'compact2' A single row showing midline sagittal and axial slices % 'multirow' A series of 'compact2' displays in one figure for comparing different images/maps side by side % 'regioncenters' A series of separate axes, each focused on one region % 'full2' for a slightly less full montage that avoids colorbar overlap issues @@ -260,7 +260,7 @@ wh = strcmp(varargin, 'coronal'); if any(wh), montagetype = varargin{find(wh)}; varargin(wh) = []; end -wh = strcmp(varargin, 'saggital'); +wh = strcmp(varargin, 'sagittal'); if any(wh), montagetype = varargin{find(wh)}; varargin(wh) = []; end wh = strcmp(varargin, 'allslices'); @@ -358,20 +358,20 @@ case 'compact' % The default - % saggital + % sagittal axh1 = axes('Position', [-0.02 0.4 .17 .17]); - [o2, dat] = montage(o2, 'saggital', 'wh_slice', [-4 0 0], 'onerow', 'noverbose', 'existing_axes', axh1); + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', [-4 0 0], 'onerow', 'noverbose', 'existing_axes', axh1); text(50, -50, 'left'); drawnow axh2 = axes('Position', [-0.02 0.6 .17 .17]); - o2 = montage(o2, 'volume_data', dat, 'saggital', 'wh_slice', [4 0 0], 'onerow', 'noverbose', 'existing_axes', axh2); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'wh_slice', [4 0 0], 'onerow', 'noverbose', 'existing_axes', axh2); text(50, -50, 'right'); drawnow % sagg center axh3 = axes('Position', [.08 0.5 .17 .17]); - o2 = montage(o2, 'volume_data', dat, 'saggital', 'wh_slice', [0 0 0], 'onerow', 'noverbose', 'existing_axes', axh3); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'wh_slice', [0 0 0], 'onerow', 'noverbose', 'existing_axes', axh3); drawnow; o2.montage{3}.slice_mm_coords; @@ -427,15 +427,15 @@ end - % saggital + % sagittal axh = axes('Position', [-0.02 .75-shiftvals(i) .17 .17]); % [-0.02 0.15+shiftvals(i) .17 .17]); axh(2) = axes('Position', [.022 .854-shiftvals(i) .17 .17]); if i == 1 - [o2, dat] = montage(o2, 'saggital', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); + [o2, dat] = montage(o2, 'sagittal', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); else - o2 = montage(o2, 'volume_data', dat, 'saggital', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); end drawnow @@ -449,8 +449,8 @@ case 'full' - % saggital - [o2, dat] = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + % sagittal + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); shift_axes(-0.02, -0.04); % coronal @@ -483,8 +483,8 @@ case 'full2' - % saggital - [o2, dat] = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + % sagittal + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); shift_axes(-0.02, -0.04); % coronal @@ -534,8 +534,8 @@ axh = axes('Position', [-0.02 .75-.3 .17 .17]); % [-0.02 0.15+shiftvals(i) .17 .17]); axh(2) = axes('Position', [.022 .854-.3 .17 .17]); - %o2 = montage(o2, 'saggital', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); - o2 = montage(o2, 'volume_data', dat, 'saggital', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); + %o2 = montage(o2, 'sagittal', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'slice_range', [-2 2], 'spacing', 4, 'onerow', 'noverbose', 'existing_axes', axh); %ss = get(0, 'ScreenSize'); %set(gcf, 'Position', [round(ss(3)/12) round(ss(4)*.9) round(ss(3)*.8) round(ss(4)/5.5) ]) % this line messes p the @@ -549,14 +549,14 @@ o2 = montage(o2, 'coronal', 'slice_range', [-40 50], 'onerow', 'spacing', 8, 'noverbose'); wh_montages = 1; - case 'saggital' - o2 = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + case 'sagittal' + o2 = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); wh_montages = 1; case 'allslices' - [o2, dat] = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); shift_axes(-0.02, -0.04); axh = axes('Position', [-0.02 0.37 .17 .17]); @@ -569,8 +569,8 @@ wh_montages = [1 2 3]; case 'full hcp' - % saggital - [o2, dat] = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + % sagittal + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); shift_axes(-0.02, -0.04); % coronal @@ -617,8 +617,8 @@ % use same o2, but add montages switch montagetype case 'full' - % saggital - [o2, dat] = montage(o2, 'saggital', 'wh_slice', xyz, 'onerow', 'noverbose'); + % sagittal + [o2, dat] = montage(o2, 'sagittal', 'wh_slice', xyz, 'onerow', 'noverbose'); shift_axes(-0.02, -0.04); % coronal @@ -651,13 +651,13 @@ case 'compact' [o2, dat] = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 6, 'noverbose'); axh = axes('Position', [0.05 0.4 .1 .5]); - o2 = montage(o2, 'volume_data', dat, 'saggital', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); case 'compact2' [o2, dat] = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 8, 'noverbose'); enlarge_axes(gcf, 1); axh = axes('Position', [-0.03 0.15 .2 1]); - o2 = montage(o2, 'volume_data', dat, 'saggital', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); + o2 = montage(o2, 'volume_data', dat, 'sagittal', 'wh_slice', [0 0 0], 'existing_axes', axh, 'noverbose'); % shift all axes down and right shift_axes(+0.03, -0.10); diff --git a/CanlabCore/Visualization_functions/cluster_orthviews_classes.m b/CanlabCore/Visualization_functions/cluster_orthviews_classes.m index ae2e1381..0da44eb7 100644 --- a/CanlabCore/Visualization_functions/cluster_orthviews_classes.m +++ b/CanlabCore/Visualization_functions/cluster_orthviews_classes.m @@ -36,7 +36,7 @@ % % classes = c.ClusterSolution.classes; % overlay = EXPT.overlay; -% cluster_orthviews_classes(cl,c.ClusterSolution.classes, EXPT.overlay, 'saggital', 0); +% cluster_orthviews_classes(cl,c.ClusterSolution.classes, EXPT.overlay, 'sagittal', 0); % cluster_orthviews_classes(cl,c.ClusterSolution.classes, EXPT.overlay, 'axial', 0); % cluster_orthviews_classes(cl,c.ClusterSolution.classes, EXPT.overlay, 'coronal', 0); % cluster_orthviews_classes(cl,c.ClusterSolution.classes, EXPT.overlay, [], 0); diff --git a/CanlabCore/Visualization_functions/cluster_orthviews_montage.m b/CanlabCore/Visualization_functions/cluster_orthviews_montage.m index 66117b82..69d07076 100644 --- a/CanlabCore/Visualization_functions/cluster_orthviews_montage.m +++ b/CanlabCore/Visualization_functions/cluster_orthviews_montage.m @@ -332,7 +332,7 @@ axish(other_axes) = []; poss(other_axes, :) = []; -% sort into order: axial, coronal, saggital +% sort into order: axial, coronal, sagittal ssum = sum(poss(:, 1:2), 2); [ssum, ind] = sort(ssum); axish = axish(ind); diff --git a/CanlabCore/Visualization_functions/cluster_orthviews_showcenters.m b/CanlabCore/Visualization_functions/cluster_orthviews_showcenters.m index 573dbe52..58286320 100644 --- a/CanlabCore/Visualization_functions/cluster_orthviews_showcenters.m +++ b/CanlabCore/Visualization_functions/cluster_orthviews_showcenters.m @@ -145,7 +145,7 @@ axish(other_axes) = []; poss(other_axes, :) = []; - % sort into order: axial, coronal, saggital + % sort into order: axial, coronal, sagittal ssum = sum(poss(:, 1:2), 2); [ssum, ind] = sort(ssum); axish = axish(ind); diff --git a/CanlabCore/Visualization_functions/make_figure_into_orthviews.m b/CanlabCore/Visualization_functions/make_figure_into_orthviews.m index 5187860f..d46f6855 100644 --- a/CanlabCore/Visualization_functions/make_figure_into_orthviews.m +++ b/CanlabCore/Visualization_functions/make_figure_into_orthviews.m @@ -5,7 +5,7 @@ % [hh1,hh2,hh3,hl,a1,a2,a3] = make_figure_into_orthviews % % Copies a surface rendering or glass brain into three separate view -% panels, one saggital, one axial, and one coronal +% panels, one sagittal, one axial, and one coronal % % returns handles to objects in each view and hl light handles % diff --git a/CanlabCore/Visualization_functions/roi_contour_map.m b/CanlabCore/Visualization_functions/roi_contour_map.m index cb1d1496..b823ca5a 100644 --- a/CanlabCore/Visualization_functions/roi_contour_map.m +++ b/CanlabCore/Visualization_functions/roi_contour_map.m @@ -1,5 +1,5 @@ function info = roi_contour_map(dat, varargin) -% Draw a pattern map of one slice (either saggital, axial, or coronal) that +% Draw a pattern map of one slice (either sagittal, axial, or coronal) that % shows the most voxels, or the slice that you specify (e.g., x = #). % You can also draw outlines for the significant voxels from a statistical test. % @@ -64,7 +64,7 @@ % % **'xyz':** % When you want a specific view and slice, you can use this -% option with 'coord'. (1:x - saggital view, 2:y - coronal +% option with 'coord'. (1:x - sagittal view, 2:y - coronal % view, 3:z - axial view) % % **'coord':** @@ -94,7 +94,7 @@ % info.dat: % - [2x30 double] (xyz mesh) % - Z: [1x30 double] (z values) -% - xyz: 3 (1:x-saggital, 2:y-coronal, 3:z-axial) +% - xyz: 3 (1:x-sagittal, 2:y-coronal, 3:z-axial) % - xyz_coord: -2 (slice coordinate; in this case, z = 3) % - region_idx: 1 % diff --git a/CanlabCore/Visualization_functions/spm_orthviews_showposition.m b/CanlabCore/Visualization_functions/spm_orthviews_showposition.m index d02aeefa..bea9b37c 100644 --- a/CanlabCore/Visualization_functions/spm_orthviews_showposition.m +++ b/CanlabCore/Visualization_functions/spm_orthviews_showposition.m @@ -34,7 +34,7 @@ % coronal h(2) = put_text(axish(2),['y = ' num2str(pos(2))]); - % saggital + % sagittal h(3) = put_text(axish(3),['x = ' num2str(pos(1))]); end @@ -64,7 +64,7 @@ % % axish(other_axes) = []; % % poss(other_axes,:) = []; % % - % % % sort into order: axial, coronal, saggital + % % % sort into order: axial, coronal, sagittal % % ssum = sum(poss(:,1:2),2); % % [ssum,ind] = sort(ssum); % % axish = axish(ind); @@ -76,7 +76,7 @@ % % % coronal % % h(2) = put_text(axish(2),['y = ' num2str(pos(2))]); % % - % % % saggital + % % % sagittal % % h(3) = put_text(axish(3),['x = ' num2str(pos(1))]); diff --git a/CanlabCore/Visualization_functions/tor_ihb_TalSpace.m b/CanlabCore/Visualization_functions/tor_ihb_TalSpace.m index 50923df7..b4293389 100644 --- a/CanlabCore/Visualization_functions/tor_ihb_TalSpace.m +++ b/CanlabCore/Visualization_functions/tor_ihb_TalSpace.m @@ -68,12 +68,12 @@ function tor_ihb_TalSpace() % % axes hAxAxial axial % axes hAxFront frontal -% axes hAxSagL left saggital -% axes hAxSagR right saggital +% axes hAxSagL left sagittal +% axes hAxSagR right sagittal % strucure array clusters array of selected clusters % integer indClusterToView index of currently viewed cluster in clusters array -% bool drawSymLS == 1 if draw symmetrical on left saggital -% bool drawSymRS == 1 if draw symmetrical on right saggital +% bool drawSymLS == 1 if draw symmetrical on left sagittal +% bool drawSymRS == 1 if draw symmetrical on right sagittal % %---------------------------------------------------------------------------------- % diff --git a/CanlabCore/canlab_canonical_brains/Canonical_brains_surfaces/create_anatomical_underlay_2016.m b/CanlabCore/canlab_canonical_brains/Canonical_brains_surfaces/create_anatomical_underlay_2016.m index 4f04f394..bcb030da 100644 --- a/CanlabCore/canlab_canonical_brains/Canonical_brains_surfaces/create_anatomical_underlay_2016.m +++ b/CanlabCore/canlab_canonical_brains/Canonical_brains_surfaces/create_anatomical_underlay_2016.m @@ -71,9 +71,9 @@ o2 = fmridisplay('overlay', which(imgs{i})); - % saggital + % sagittal axh = axes('Position', [-0.02 0.15+shiftvals(i) .17 .17]); - o2 = montage(o2, 'saggital', 'wh_slice', [0 0 0], 'onerow', 'noverbose', 'existing_axes', axh); + o2 = montage(o2, 'sagittal', 'wh_slice', [0 0 0], 'onerow', 'noverbose', 'existing_axes', axh); drawnow % axial diff --git a/CanlabCore/canlab_canonical_brains/Cortical_ROI_masks/insula_ribbon_partial_script.m b/CanlabCore/canlab_canonical_brains/Cortical_ROI_masks/insula_ribbon_partial_script.m index a67eee1d..dd533fc1 100644 --- a/CanlabCore/canlab_canonical_brains/Cortical_ROI_masks/insula_ribbon_partial_script.m +++ b/CanlabCore/canlab_canonical_brains/Cortical_ROI_masks/insula_ribbon_partial_script.m @@ -1,4 +1,4 @@ -% procedure: use draw_anatomical_ROI_2008 to draw saggital slices +% procedure: use draw_anatomical_ROI_2008 to draw sagittal slices % then mask with cortical ribbon from segmentation % then clean up using draw... diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree index 1f10a161eaee4735d52cb25cf27cbbfcba7455f7..2c002520fa09f794481b2b8d6548107156f68633 100644 GIT binary patch delta 549 zcmZ|LyDx)L7{~FvZ|hR`OY7RY-_@lkEqZ9NNQBL3?qKU8F^EL_C%lWG6N5;aiW7r@ z!D0|3L^?L2kqFVw<$Id289sTQ-+7<&=H!XK8+sI5r`q$O9t_FEp|)&MjWecMbs8fO z*S4vV>$nCTCYX_jd=#J%78IcvB`8H1%29zzRG}JH*ieI7)S(^?XoMXOG@%(SXhj>^ z(Sc5Mp&LEuMIZX%!~g~{gkiWaf>Dgg>$v;OWeSEu#@(xXMc%%+kF~#O5KkhTDL2M3 z0gv2Fc@sryC%%lg#n?!Duhe1)n8XyOr7z=KJK}@f+Z9im8mEcLo_%37sN>6X@o7`X zt_LwJlec0uw`Y>eSicwQpOSEpo4I%w4*8i9H)eHAvgWC)GS0F%8qtJiw4fDj zXh#P+(FF&((Su&}p&tVngcB|dVHhJa9(BiDIcw{i#_fxHS>8OmPqe>i5Kn{KDK|zj zhH<%_@+1n>PP`dUv$2)-T&cwnFo8)-NpHrxddvrTurD4pHBJ+ejzeMC)bZuH_^49H zu6yB>$s4hf-80E$Y}^U;Pf0k+&Ro2S2KkW^*CusLvYORZ8oTlSDIR`9FqsyZ#*9p+ teZARtmVNog)x^S=?^V@^=3k`By>Fi>`?7xq0=hq-&j$3lm_8rM`~b6G27Ukl diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree index a84d2b742e246963c398482b6640ae099ebdcc0a..dc4c4a09235d3367c596e6cbf8be3ffaf5a2d7a2 100644 GIT binary patch delta 1022 zcmajeNlX(_7zgmQlvfG^mK|&>RIo@}5k`@!EEN^Og;uL}bf{9iNc12Hk#NFgWHfm2 zVn&RS8V{l|8iVE~s250#Mh+fa4#>eJB(*Vy8^(bCzX=#G>fx97ZSQ5~b=rUXQc^#h zQVfbwNm5Ko@#FPl1JkJ%$yd!MjrYDAy1h9WAo&#_$1`jH8I{5^A;{w$?yDIeI(VufR<)wYne z(E4hgg$?6%a<>hM_J{-thL zd%PA%g*4vd6+R7OlD9n*o*QWk0y}SfArvoWHm&caaC)I-@81hKjYxs?Zo+C=%EU`(QsG z62rHKY05bje!#y^hFx^;99gseO+_-KLaxk)-{n#nnX3PG2r9L_Olh39Qo_@+q!Tow zb%~Ol50*(2`Zud*XT8$wV&>4UR!MI#sGHoO@45}l38QS=WKa#jcJ7ZIkfQ5pY=}3MGETc$OmWqntLaS9fI#ekhkmx}YBjJS0$Y}83 z#f%Um7!RT`8iVE~s250#Mh+fa4#>eJB(*Vy8^(bCzX>&7)Wa|D+uqB}>$LCo<%B*s ztr!%elAt6iNe|iA3S&nn|5m|D3F&rWkSt#+6B?O*CP zwcBlm6iDUWZsF4aCVA^K;kl8vAh7X<7eY}yvueFBg)@sSE4NPyik)`cj0(r-UR6s> zfHX*lC18OJ$b>A&h8)O+JjjOvSPE9KfgP4XArwI|EQb;(g%#j{GFS=a-~<=AVHH%s zYVbfMh_D9MLKUooYVg8(*Z>=$25O-W>cIz_paC|+7T5}nunn4^8Mea?*a^G1CDwAs zo6ymDQnQr$13azNf7kFk)sWs(#~gkLz;4*X#~i_*DRi|%Vz5Y?stk_Pg(88yun+e0 zAu)7ogrF7M2#)7Pc+yIe(clOQz@jW!DDLv;VT2gXk-N*_UAvZ-4ZU z9f&!$Kl;b{@D)fw<2x?t?GIjZl{3M4C2zQ;i{50Ag)IkN^Mx delta 168 zcmZ3tz+v42hlUo$7N!>F7M2#)7Pc+yIe(ebGpFbMW!DDLv;VT2gXk-N*_UAvZ-4ZU z9f&!$Kl;b{@D)fw<2x?t?GIjZl{3M4C2zQ;i{504!%g^Z)<= diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html index ab396ee3..7ff983bb 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html @@ -639,7 +639,7 @@

Miscellaneous Toolsto plot montage of slices to the screen

sagg:
-

to rotate to saggital view

+

to rotate to sagittal view

cor:

to rotate to coronal view

@@ -17002,7 +17002,7 @@

Visualization_functions

Copies a surface rendering or glass brain into three separate view -panels, one saggital, one axial, and one coronal

+panels, one sagittal, one axial, and one coronal

returns handles to objects in each view and hl light handles

@@ -19928,7 +19928,7 @@

Visualization_functions
Visualization_functions.roi_contour_map(dat, varargin)
-

Draw a pattern map of one slice (either saggital, axial, or coronal) that +

Draw a pattern map of one slice (either sagittal, axial, or coronal) that shows the most voxels, or the slice that you specify (e.g., x = #). You can also draw outlines for the significant voxels from a statistical test.

@@ -19984,7 +19984,7 @@

Visualization_functions
‘xyz’:

When you want a specific view and slice, you can use this -option with ‘coord’. (1:x - saggital view, 2:y - coronal +option with ‘coord’. (1:x - sagittal view, 2:y - coronal view, 3:z - axial view)

‘coord’:
@@ -20017,7 +20017,7 @@

Visualization_functions
  • [2x30 double] (xyz mesh)
  • Z: [1x30 double] (z values)
  • -
  • xyz: 3 (1:x-saggital, 2:y-coronal, 3:z-axial)
  • +
  • xyz: 3 (1:x-sagittal, 2:y-coronal, 3:z-axial)
  • xyz_coord: -2 (slice coordinate; in this case, z = 3)
  • region_idx: 1
@@ -21085,12 +21085,12 @@

Visualization_functions
axes hAxAxial axial axes hAxFront frontal -axes hAxSagL left saggital -axes hAxSagR right saggital +axes hAxSagL left sagittal +axes hAxSagR right sagittal strucure array clusters array of selected clusters integer indClusterToView index of currently viewed cluster in clusters array -bool drawSymLS == 1 if draw symmetrical on left saggital -bool drawSymRS == 1 if draw symmetrical on right saggital
+bool drawSymLS == 1 if draw symmetrical on left sagittal +bool drawSymRS == 1 if draw symmetrical on right sagittal

@@ -2962,7 +2962,7 @@

Object Oriented ToolsSolid brain slices or contour outlines
  • Points or text labels or both
  • Flexible slice spacing, colors, marker sizes/styles, axis layout (one row/standard square)
  • -
  • axial or saggital orientation
  • +
  • axial or sagittal orientation
  • @@ -2999,7 +2999,7 @@

    Object Oriented Tools{‘close’, ‘closeenough’, ‘close_enough’}:

    close_enough = varargin{i+1};

    -
    {‘sagg’,’saggital’,’sagittal’}:
    +
    {‘sagg’,’sagittal’,’sagittal’}:

    orientation = ‘sagittal’;

    {‘MarkerSize’, ‘markersize’}:
    @@ -3038,7 +3038,7 @@

    Object Oriented Toolsfollowed my mm values for slices desired

    e.g., for cluster/region centers, xyz = cat(1, cl.mm_center) o2 = montage(o2, ‘axial’, ‘wh_slice’, xyz, ‘onerow’); -o2 = montage(o2, ‘saggital’, ‘wh_slice’, xyz, ‘onerow’);

    +o2 = montage(o2, ‘sagittal’, ‘wh_slice’, xyz, ‘onerow’);

    ‘spacing’:
    followed by inter-slice spacing in mm
    @@ -3076,15 +3076,15 @@

    Object Oriented Tools

    Define new axes in existing figure, and use those for montage:

    axh = axes('Position', [0.05 0.4 .1 .5]);
    -o2 = montage(o2, 'saggital', 'wh_slice', xyz(1,:), 'existing_axes', axh);
    +o2 = montage(o2, 'sagittal', 'wh_slice', xyz(1,:), 'existing_axes', axh);
     
    -o2 = montage(o2, 'saggital', 'slice_range', [-10 10], 'onerow');
    +o2 = montage(o2, 'sagittal', 'slice_range', [-10 10], 'onerow');
     o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 4);
     o2 = montage(o2, 'axial', 'slice_range', [-20 30], 'onerow', 'spacing', 8);
     o2 = montage(o2, 'axial', 'wh_slice', xyz, 'onerow');
     
    -% Parasaggital only:
    -o2 = montage(o2, 'saggital', 'slice_range', [-4 4], 'onerow', 'spacing', 8);
    +% Parasagittal only:
    +o2 = montage(o2, 'sagittal', 'slice_range', [-4 4], 'onerow', 'spacing', 8);
     

    Add/remove blobs and points with fmridisplay.addblobs, @@ -3819,9 +3819,9 @@

    fmridisplay_helper_functions
    fastmontage(dat);
     fastmontage(dat, 'coronal');
    -fastmontage(dat, 'saggital', 'spacing', 10);
    -fastmontage(dat, 'saggital', 'spacing', 10, 'vertical');
    -fastmontage(dat, 'saggital', 'slices_per_row', 12);
    +fastmontage(dat, 'sagittal', 'spacing', 10);
    +fastmontage(dat, 'sagittal', 'spacing', 10, 'vertical');
    +fastmontage(dat, 'sagittal', 'slices_per_row', 12);
     
    @@ -5011,7 +5011,7 @@

    fmridisplay_helper_functions

    Optional Inputs:
     
    orientation:
    -

    can be followed by ‘saggital’, ‘axial’, or ‘coronal’

    +

    can be followed by ‘sagittal’, ‘axial’, or ‘coronal’

    slice_mm:

    is followed by the mm coord of the slice to display; default = 0

    @@ -5058,7 +5058,7 @@

    fmridisplay_helper_functionsto plot montage of slices to the screen

    sagg:
    -

    to rotate to saggital view

    +

    to rotate to sagittal view

    cor:

    to rotate to coronal view

    @@ -26906,7 +26906,7 @@

    Visualization_functions

    Copies a surface rendering or glass brain into three separate view -panels, one saggital, one axial, and one coronal

    +panels, one sagittal, one axial, and one coronal

    returns handles to objects in each view and hl light handles

    @@ -29832,7 +29832,7 @@

    Visualization_functions
    Visualization_functions.roi_contour_map(dat, varargin)
    -

    Draw a pattern map of one slice (either saggital, axial, or coronal) that +

    Draw a pattern map of one slice (either sagittal, axial, or coronal) that shows the most voxels, or the slice that you specify (e.g., x = #). You can also draw outlines for the significant voxels from a statistical test.

    @@ -29888,7 +29888,7 @@

    Visualization_functions
    ‘xyz’:

    When you want a specific view and slice, you can use this -option with ‘coord’. (1:x - saggital view, 2:y - coronal +option with ‘coord’. (1:x - sagittal view, 2:y - coronal view, 3:z - axial view)

    ‘coord’:
    @@ -29921,7 +29921,7 @@

    Visualization_functions
    • [2x30 double] (xyz mesh)
    • Z: [1x30 double] (z values)
    • -
    • xyz: 3 (1:x-saggital, 2:y-coronal, 3:z-axial)
    • +
    • xyz: 3 (1:x-sagittal, 2:y-coronal, 3:z-axial)
    • xyz_coord: -2 (slice coordinate; in this case, z = 3)
    • region_idx: 1
    @@ -30989,12 +30989,12 @@

    Visualization_functions
    axes hAxAxial axial axes hAxFront frontal -axes hAxSagL left saggital -axes hAxSagR right saggital +axes hAxSagL left sagittal +axes hAxSagR right sagittal strucure array clusters array of selected clusters integer indClusterToView index of currently viewed cluster in clusters array -bool drawSymLS == 1 if draw symmetrical on left saggital -bool drawSymRS == 1 if draw symmetrical on right saggital
    +bool drawSymLS == 1 if draw symmetrical on left sagittal +bool drawSymRS == 1 if draw symmetrical on right sagittal
    @@ -4098,7 +4098,7 @@

    fmridisplay

    Optional Inputs:
     
    orientation:
    -

    can be followed by ‘saggital’, ‘axial’, or ‘coronal’

    +

    can be followed by ‘sagittal’, ‘axial’, or ‘coronal’

    slice_mm:

    is followed by the mm coord of the slice to display; default = 0

    @@ -4145,7 +4145,7 @@

    fmridisplayMiscellaneous Toolsto plot montage of slices to the screen

    sagg:
    -

    to rotate to saggital view

    +

    to rotate to sagittal view

    cor:

    to rotate to coronal view

    @@ -17002,7 +17002,7 @@

    Visualization_functions

    Copies a surface rendering or glass brain into three separate view -panels, one saggital, one axial, and one coronal

    +panels, one sagittal, one axial, and one coronal

    returns handles to objects in each view and hl light handles

    @@ -19928,7 +19928,7 @@

    Visualization_functions
    Visualization_functions.roi_contour_map(dat, varargin)
    -

    Draw a pattern map of one slice (either saggital, axial, or coronal) that +

    Draw a pattern map of one slice (either sagittal, axial, or coronal) that shows the most voxels, or the slice that you specify (e.g., x = #). You can also draw outlines for the significant voxels from a statistical test.

    @@ -19984,7 +19984,7 @@

    Visualization_functions
    ‘xyz’:

    When you want a specific view and slice, you can use this -option with ‘coord’. (1:x - saggital view, 2:y - coronal +option with ‘coord’. (1:x - sagittal view, 2:y - coronal view, 3:z - axial view)

    ‘coord’:
    @@ -20017,7 +20017,7 @@

    Visualization_functions
    • [2x30 double] (xyz mesh)
    • Z: [1x30 double] (z values)
    • -
    • xyz: 3 (1:x-saggital, 2:y-coronal, 3:z-axial)
    • +
    • xyz: 3 (1:x-sagittal, 2:y-coronal, 3:z-axial)
    • xyz_coord: -2 (slice coordinate; in this case, z = 3)
    • region_idx: 1
    @@ -21085,12 +21085,12 @@

    Visualization_functions
    axes hAxAxial axial axes hAxFront frontal -axes hAxSagL left saggital -axes hAxSagR right saggital +axes hAxSagL left sagittal +axes hAxSagR right sagittal strucure array clusters array of selected clusters integer indClusterToView index of currently viewed cluster in clusters array -bool drawSymLS == 1 if draw symmetrical on left saggital -bool drawSymRS == 1 if draw symmetrical on right saggital
    +bool drawSymLS == 1 if draw symmetrical on left sagittal +bool drawSymRS == 1 if draw symmetrical on right sagittal

    @@ -2962,7 +2962,7 @@

    Object Oriented ToolsSolid brain slices or contour outlines
  • Points or text labels or both
  • Flexible slice spacing, colors, marker sizes/styles, axis layout (one row/standard square)
  • -
  • axial or saggital orientation
  • +
  • axial or sagittal orientation
  • @@ -2999,7 +2999,7 @@

    Object Oriented Tools{‘close’, ‘closeenough’, ‘close_enough’}:

    close_enough = varargin{i+1};

    -
    {‘sagg’,’saggital’,’sagittal’}:
    +
    {‘sagg’,’sagittal’,’sagittal’}:

    orientation = ‘sagittal’;

    {‘MarkerSize’, ‘markersize’}:
    @@ -3038,7 +3038,7 @@

    Object Oriented Toolsfollowed my mm values for slices desired

    e.g., for cluster/region centers, xyz = cat(1, cl.mm_center) o2 = montage(o2, ‘axial’, ‘wh_slice’, xyz, ‘onerow’); -o2 = montage(o2, ‘saggital’, ‘wh_slice’, xyz, ‘onerow’);

    +o2 = montage(o2, ‘sagittal’, ‘wh_slice’, xyz, ‘onerow’);

    ‘spacing’:
    followed by inter-slice spacing in mm
    @@ -3076,15 +3076,15 @@

    Object Oriented Tools

    Define new axes in existing figure, and use those for montage:

    axh = axes('Position', [0.05 0.4 .1 .5]);
    -o2 = montage(o2, 'saggital', 'wh_slice', xyz(1,:), 'existing_axes', axh);
    +o2 = montage(o2, 'sagittal', 'wh_slice', xyz(1,:), 'existing_axes', axh);
     
    -o2 = montage(o2, 'saggital', 'slice_range', [-10 10], 'onerow');
    +o2 = montage(o2, 'sagittal', 'slice_range', [-10 10], 'onerow');
     o2 = montage(o2, 'axial', 'slice_range', [-40 50], 'onerow', 'spacing', 4);
     o2 = montage(o2, 'axial', 'slice_range', [-20 30], 'onerow', 'spacing', 8);
     o2 = montage(o2, 'axial', 'wh_slice', xyz, 'onerow');
     
    -% Parasaggital only:
    -o2 = montage(o2, 'saggital', 'slice_range', [-4 4], 'onerow', 'spacing', 8);
    +% Parasagittal only:
    +o2 = montage(o2, 'sagittal', 'slice_range', [-4 4], 'onerow', 'spacing', 8);
     

    Add/remove blobs and points with fmridisplay.addblobs, @@ -3819,9 +3819,9 @@

    fmridisplay_helper_functions
    fastmontage(dat);
     fastmontage(dat, 'coronal');
    -fastmontage(dat, 'saggital', 'spacing', 10);
    -fastmontage(dat, 'saggital', 'spacing', 10, 'vertical');
    -fastmontage(dat, 'saggital', 'slices_per_row', 12);
    +fastmontage(dat, 'sagittal', 'spacing', 10);
    +fastmontage(dat, 'sagittal', 'spacing', 10, 'vertical');
    +fastmontage(dat, 'sagittal', 'slices_per_row', 12);
     
    @@ -5011,7 +5011,7 @@

    fmridisplay_helper_functions

    Optional Inputs:
     
    orientation:
    -

    can be followed by ‘saggital’, ‘axial’, or ‘coronal’

    +

    can be followed by ‘sagittal’, ‘axial’, or ‘coronal’

    slice_mm:

    is followed by the mm coord of the slice to display; default = 0

    @@ -5058,7 +5058,7 @@

    fmridisplay_helper_functionsto plot montage of slices to the screen

    sagg:
    -

    to rotate to saggital view

    +

    to rotate to sagittal view

    cor:

    to rotate to coronal view

    @@ -26906,7 +26906,7 @@

    Visualization_functions

    Copies a surface rendering or glass brain into three separate view -panels, one saggital, one axial, and one coronal

    +panels, one sagittal, one axial, and one coronal

    returns handles to objects in each view and hl light handles

    @@ -29832,7 +29832,7 @@

    Visualization_functions
    Visualization_functions.roi_contour_map(dat, varargin)
    -

    Draw a pattern map of one slice (either saggital, axial, or coronal) that +

    Draw a pattern map of one slice (either sagittal, axial, or coronal) that shows the most voxels, or the slice that you specify (e.g., x = #). You can also draw outlines for the significant voxels from a statistical test.

    @@ -29888,7 +29888,7 @@

    Visualization_functions
    ‘xyz’:

    When you want a specific view and slice, you can use this -option with ‘coord’. (1:x - saggital view, 2:y - coronal +option with ‘coord’. (1:x - sagittal view, 2:y - coronal view, 3:z - axial view)

    ‘coord’:
    @@ -29921,7 +29921,7 @@

    Visualization_functions
    • [2x30 double] (xyz mesh)
    • Z: [1x30 double] (z values)
    • -
    • xyz: 3 (1:x-saggital, 2:y-coronal, 3:z-axial)
    • +
    • xyz: 3 (1:x-sagittal, 2:y-coronal, 3:z-axial)
    • xyz_coord: -2 (slice coordinate; in this case, z = 3)
    • region_idx: 1
    @@ -30989,12 +30989,12 @@

    Visualization_functions
    axes hAxAxial axial axes hAxFront frontal -axes hAxSagL left saggital -axes hAxSagR right saggital +axes hAxSagL left sagittal +axes hAxSagR right sagittal strucure array clusters array of selected clusters integer indClusterToView index of currently viewed cluster in clusters array -bool drawSymLS == 1 if draw symmetrical on left saggital -bool drawSymRS == 1 if draw symmetrical on right saggital
    +bool drawSymLS == 1 if draw symmetrical on left sagittal +bool drawSymRS == 1 if draw symmetrical on right sagittal
    @@ -4098,7 +4098,7 @@

    fmridisplay

    Optional Inputs:
     
    orientation:
    -

    can be followed by ‘saggital’, ‘axial’, or ‘coronal’

    +

    can be followed by ‘sagittal’, ‘axial’, or ‘coronal’

    slice_mm:

    is followed by the mm coord of the slice to display; default = 0

    @@ -4145,7 +4145,7 @@

    fmridisplay Date: Tue, 28 Nov 2023 15:56:01 -0500 Subject: [PATCH 6/9] [DATALAD RUNCMD] boostrap typo === Do not change lines below === { "chain": [], "cmd": "git-sedi boostrap bootstrap", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- CanlabCore/@fmri_data/predict.m | 2 +- .../xval_bestsubsets_brain.m | 2 +- .../xval_lasso_brain.m | 2 +- .../xval_lasso_brain_featureselect.m | 2 +- .../xval_ridge_brain.m | 2 +- .../Statistics_tools/canlab_run_paired_SVM.m | 2 +- .../scn_stats_helper_functions.m | 2 +- .../Visualization_functions/conf_region.m | 2 +- .../_build/doctrees/fmridata.doctree | Bin 211662 -> 211665 bytes .../_build/doctrees/misc_tools.doctree | Bin 4585121 -> 4585123 bytes .../_build/doctrees/moduleslist.doctree | Bin 6558854 -> 6558858 bytes .../_build/doctrees/oo_tools.doctree | Bin 1052718 -> 1052720 bytes .../SPHINX_DOCS/_build/html/fmridata.html | 2 +- .../SPHINX_DOCS/_build/html/misc_tools.html | 2 +- .../SPHINX_DOCS/_build/html/moduleslist.html | 2 +- .../SPHINX_DOCS/_build/html/searchindex.js | 2 +- docs_sphinx_old/fmridata.html | 2 +- docs_sphinx_old/misc_tools.html | 2 +- docs_sphinx_old/moduleslist.html | 2 +- docs_sphinx_old/searchindex.js | 2 +- 20 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CanlabCore/@fmri_data/predict.m b/CanlabCore/@fmri_data/predict.m index 79d598cc..39dd2392 100644 --- a/CanlabCore/@fmri_data/predict.m +++ b/CanlabCore/@fmri_data/predict.m @@ -500,7 +500,7 @@ % -added nancorr to ignore nans when calculating correlation % -added rng 'shuffle' to ensure that bootstrapping will use % different inital seed. VERY IMPORTANT for aggregating across -% multiple boostrap sessions! +% multiple bootstrap sessions! % % 11/28/13: Luke Chang % -added ability to use hv block cross-validation, which is good diff --git a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_bestsubsets_brain.m b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_bestsubsets_brain.m index 846f586a..f7ecc659 100644 --- a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_bestsubsets_brain.m +++ b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_bestsubsets_brain.m @@ -537,7 +537,7 @@ % % % CV(1) (leave-one-out cross-validation) % % % it estimates "half-sample" xval % % -% % bootfun = @(Y, X) xval_regression_boostrap_wrapper(Y, X); +% % bootfun = @(Y, X) xval_regression_bootstrap_wrapper(Y, X); % % STATS_FINAL.bootstrap.covs_only_r_rsq = bootstrp(200, bootfun, my_outcomes_orig{1}, covs{1}); % % STATS_FINAL.bootstrap.covs_only_summary = [mean(STATS_FINAL.bootstrap.covs_only_r_rsq) std(STATS_FINAL.bootstrap.covs_only_r_rsq) ]; % % STATS_FINAL.bootstrap.covs_only_summary_descrip = 'mean std of bootstrapped values' diff --git a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain.m b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain.m index 3d08a6a3..1857ced4 100644 --- a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain.m +++ b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain.m @@ -618,7 +618,7 @@ % % % CV(1) (leave-one-out cross-validation) % % % it estimates "half-sample" xval % % -% % bootfun = @(Y, X) xval_regression_boostrap_wrapper(Y, X); +% % bootfun = @(Y, X) xval_regression_bootstrap_wrapper(Y, X); % % STATS_FINAL.bootstrap.covs_only_r_rsq = bootstrp(200, bootfun, my_outcomes_orig{1}, covs{1}); % % STATS_FINAL.bootstrap.covs_only_summary = [mean(STATS_FINAL.bootstrap.covs_only_r_rsq) std(STATS_FINAL.bootstrap.covs_only_r_rsq) ]; % % STATS_FINAL.bootstrap.covs_only_summary_descrip = 'mean std of bootstrapped values' diff --git a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain_featureselect.m b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain_featureselect.m index 2deba72b..76c97c31 100644 --- a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain_featureselect.m +++ b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_lasso_brain_featureselect.m @@ -455,7 +455,7 @@ function permuted_histogram_plot(STATS_FINAL) % % % CV(1) (leave-one-out cross-validation) % % % it estimates "half-sample" xval % % -% % bootfun = @(Y, X) xval_regression_boostrap_wrapper(Y, X); +% % bootfun = @(Y, X) xval_regression_bootstrap_wrapper(Y, X); % % STATS_FINAL.bootstrap.covs_only_r_rsq = bootstrp(200, bootfun, my_outcomes_orig{1}, covs{1}); % % STATS_FINAL.bootstrap.covs_only_summary = [mean(STATS_FINAL.bootstrap.covs_only_r_rsq) std(STATS_FINAL.bootstrap.covs_only_r_rsq) ]; % % STATS_FINAL.bootstrap.covs_only_summary_descrip = 'mean std of bootstrapped values' diff --git a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_ridge_brain.m b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_ridge_brain.m index 04ddfbf2..1f289628 100644 --- a/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_ridge_brain.m +++ b/CanlabCore/Statistics_tools/Cross_validated_Regression/xval_ridge_brain.m @@ -494,7 +494,7 @@ % % % CV(1) (leave-one-out cross-validation) % % % it estimates "half-sample" xval % % -% % bootfun = @(Y, X) xval_regression_boostrap_wrapper(Y, X); +% % bootfun = @(Y, X) xval_regression_bootstrap_wrapper(Y, X); % % STATS_FINAL.bootstrap.covs_only_r_rsq = bootstrp(200, bootfun, my_outcomes_orig{1}, covs{1}); % % STATS_FINAL.bootstrap.covs_only_summary = [mean(STATS_FINAL.bootstrap.covs_only_r_rsq) std(STATS_FINAL.bootstrap.covs_only_r_rsq) ]; % % STATS_FINAL.bootstrap.covs_only_summary_descrip = 'mean std of bootstrapped values' diff --git a/CanlabCore/Statistics_tools/canlab_run_paired_SVM.m b/CanlabCore/Statistics_tools/canlab_run_paired_SVM.m index 8350c1ed..07e3f733 100644 --- a/CanlabCore/Statistics_tools/canlab_run_paired_SVM.m +++ b/CanlabCore/Statistics_tools/canlab_run_paired_SVM.m @@ -45,7 +45,7 @@ % Followed by logical 1/0 % % **boot_n:** -% Followed by number of boostrap samples desired (default = 100) +% Followed by number of bootstrap samples desired (default = 100) % % **parallelstr:** % Followed by string 'parallel' to use parallel processing in fmri_data.predict.m diff --git a/CanlabCore/Statistics_tools/scn_stats_helper_functions.m b/CanlabCore/Statistics_tools/scn_stats_helper_functions.m index 46984fac..e032d410 100644 --- a/CanlabCore/Statistics_tools/scn_stats_helper_functions.m +++ b/CanlabCore/Statistics_tools/scn_stats_helper_functions.m @@ -1263,7 +1263,7 @@ function loess_partial(M, Y, X, varargin) [final_boot_samples, alphaaccept] = get_boot_samples_needed(stats.p, whpvals_for_boot, targetu, bootsamples, verbose); % uses whpvals_for_boot, returns Be -% set up boostrap beta-generating function +% set up bootstrap beta-generating function % generic for multiple cols of Y (outcomes), multiple cols. of X % (predictors), weights equal or not (W) % much faster if X is intercept only! diff --git a/CanlabCore/Visualization_functions/conf_region.m b/CanlabCore/Visualization_functions/conf_region.m index 42cd124c..20497cce 100644 --- a/CanlabCore/Visualization_functions/conf_region.m +++ b/CanlabCore/Visualization_functions/conf_region.m @@ -70,7 +70,7 @@ % %create_figure('test'); % [h,h2] = plot_ellipse(cen(1),cen(2),theta,ci(1,1),ci(2,2)); % -% % plot standard deviation - for boostrapping, or for individual cases +% % plot standard deviation - for bootstrapping, or for individual cases % [h,h2] = plot_ellipse(cen(1),cen(2),theta,ci(1,1)*sqrt(N),ci(2,2)*sqrt(N)); % % :Example: Render individual subject conf regions diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/fmridata.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/fmridata.doctree index eec16f135e86dfe9a7d45e04dad53090f16143e2..6a2cb3c0463ee0a4bee75e5a26eba510dccfd551 100644 GIT binary patch delta 39 scmX^2mFMDDo`x-qd?kz}+kwO;CLn#FjByJiV@Z2S1>^RT3Z|$-07iljegFUf delta 33 pcmcckmFL`7o`x-qd?nlYOBgpXZ9i1TxP`I3yn=Cic?DC{Aprli4k!Qs diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree index 2c002520fa09f794481b2b8d6548107156f68633..eb805daa7c08940aae1bcb8a664478a3c50b9d85 100644 GIT binary patch delta 198 zcmWN^Npb;U7=YpG7DGY^f)GT^TFgVoJmws3VAZ9!7H^dUq}0DwuAr(flx^LkFcG4>5+hE6HCmM| vp8-QgZ}t4pE}DA!d>`svcaw^-n24#EiMd#arC5oz*odvziT&rI9csrv0iQ|e diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree index dc4c4a09235d3367c596e6cbf8be3ffaf5a2d7a2..fcb4bb505ca1498e49e8d0564d0658db77c2b32f 100644 GIT binary patch delta 444 zcmWO2w@zCD06ekQn#|HU=b*jQ#=q zKb+wVcfE@3lUaW8n?FREW1a;TSz?(L2V>EtApV$2$1amYZ?T8KNWm&=th2!; aTm0o8|Ji1TUG~`LfJ2TrPNvc)uaS2JcFNxX delta 436 zcmWmAHBJKn0EOW|ad&rjcXx^xcMk~+aE1;IBupd>oPmvjq$3Alh5PU^e91q(;XS{< z1Re=TVj{7hfxFvi_%ZMi7cIFD+!Q});)o}KM3P7*g;df=Cxc9~$R>we^2n!vLW=m` zE}@h%%Bi4|DypfWmOAQbpphn;X`z)i+UcN^F1qQVmp=L#V2~k(8DW$$#+hJ}DW;iW zmO18GV38n8EVIHYYpk>3zff@P?fWFEi9K`F_vuK&B3~XWqb2`77Iznl6D{uh}nRc9f&!Am=lP( WfS4PId4QM~i1~n+AE;BHm>mE;Jssfy delta 79 zcmdn6z+v42hlUo$7N!>FEi9K`ZQskmx`AbT%X=0J$#x(ch}nRc9f&!Am=lP(fS4PI Sd4QM~i1~n+AE-~Dm>mG)Z5Navigation

    -added nancorr to ignore nans when calculating correlation -added rng ‘shuffle’ to ensure that bootstrapping will use different inital seed. VERY IMPORTANT for aggregating across -multiple boostrap sessions!
    +multiple bootstrap sessions!
    11/28/13: Luke Chang
    -added ability to use hv block cross-validation, which is good for timeseries data with stationary autocorrelation. diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html index 7ff983bb..fcc3e36f 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html @@ -17604,7 +17604,7 @@

    Visualization_functions diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html index 9e86c563..a1f8e689 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html @@ -27508,7 +27508,7 @@

    Visualization_functions diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/searchindex.js b/docs_sphinx_old/SPHINX_DOCS/_build/html/searchindex.js index 57801fc6..a94ad710 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/searchindex.js +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:46,filenames:["index","moduleslist","toolboxes"],objects:{"":{"@canlab_dataset":[1,0,1,""],"@fmri_data":[1,0,1,""],"@fmri_mask_image":[1,0,1,""],"@fmri_model":[1,0,1,""],"@fmridisplay":[1,0,1,""],"@image_vector":[1,0,1,""],"@region":[1,0,1,""],"@statistic_image":[1,0,1,""],Cluster_contig_region_tools:[1,0,1,""],Data_extraction:[1,0,1,""],Data_processing_tools:[1,0,1,""],Filename_tools:[1,0,1,""],GLM_Batch_tools:[2,0,1,""],HRF_Est_Toolbox2:[2,0,1,""],Image_computation_tools:[1,0,1,""],Image_space_tools:[1,0,1,""],Image_thresholding:[1,0,1,""],Index_image_manip_tools:[1,0,1,""],Misc_utilities:[1,0,1,""],Model_building_tools:[1,0,1,""],OptimizeDesign11:[2,0,1,""],Parcellation_tools:[1,0,1,""],ROI_drawing_tools:[1,0,1,""],Statistics_tools:[1,0,1,""],Visualization_functions:[1,0,1,""],diagnostics:[2,0,1,""],fmridisplay_helper_functions:[1,0,1,""],hewma_utility:[1,0,1,""],peak_coordinates:[1,0,1,""]},"@canlab_dataset":{bars:[1,1,1,""],concatenate:[1,1,1,""],get_var:[1,1,1,""],glm:[1,1,1,""],glm_multilevel:[1,1,1,""],histogram:[1,1,1,""],mediation:[1,1,1,""],plot_var:[1,1,1,""],print_summary:[1,1,1,""],read_from_excel:[1,1,1,""],scattermatrix:[1,1,1,""],scatterplot:[1,1,1,""],spm2canlab_dataset:[1,1,1,""],ttest2:[1,1,1,""],write_text:[1,1,1,""]},"@fmri_data":{canlab_connectivity_preproc:[1,1,1,""],create:[1,1,1,""],extract_roi_averages:[1,1,1,""],horzcat:[1,1,1,""],hrf_fit:[1,1,1,""],plot:[1,1,1,""],predict:[1,1,1,""],predict_test_suite:[1,1,1,""],regress:[1,1,1,""],rescale:[1,1,1,""],saveplots:[1,1,1,""],signtest:[1,1,1,""],ttest:[1,1,1,""],windsorize:[1,1,1,""]},"@fmri_mask_image":{resample_to_image_space:[1,1,1,""]},"@fmri_model":{build:[1,1,1,""],build_single_trial:[1,1,1,""],get_condition_assignments:[1,1,1,""],get_session_X:[1,1,1,""],plot:[1,1,1,""],replace_basis_set:[1,1,1,""],robustfit:[1,1,1,""],rotate_to_pca:[1,1,1,""],single_trial_estimates:[1,1,1,""]},"@fmridisplay":{addblobs:[1,1,1,""],addpoints:[1,1,1,""],addthreshblobs:[1,1,1,""],legend:[1,1,1,""],montage:[1,1,1,""],surface:[1,1,1,""],transparency_change:[1,1,1,""]},"@image_vector":{apply_mask:[1,1,1,""],check_image_filenames:[1,1,1,""],compare_space:[1,1,1,""],extract_gray_white_csf:[1,1,1,""],extract_roi_averages:[1,1,1,""],fastmontage:[1,1,1,""],flip:[1,1,1,""],get_wh_image:[1,1,1,""],histogram:[1,1,1,""],history:[1,1,1,""],horzcat:[1,1,1,""],ica:[1,1,1,""],image_math:[1,1,1,""],image_similarity_plot:[1,1,1,""],image_similarity_plot_bucknermaps:[1,1,1,""],interpolate:[1,1,1,""],mean:[1,1,1,""],minus:[1,1,1,""],montage:[1,1,1,""],orthviews:[1,1,1,""],plot_current_orthviews_coord:[1,1,1,""],plus:[1,1,1,""],power:[1,1,1,""],preprocess:[1,1,1,""],read_from_file:[1,1,1,""],rebuild_volinfo_from_dat:[1,1,1,""],reconstruct_image:[1,1,1,""],remove_empty:[1,1,1,""],reparse_contiguous:[1,1,1,""],replace_empty:[1,1,1,""],resample_space:[1,1,1,""],resample_time:[1,1,1,""],sagg_slice_movie:[1,1,1,""],searchlight:[1,1,1,""],slices:[1,1,1,""],surface:[1,1,1,""],threshold:[1,1,1,""],trim_mask:[1,1,1,""],union:[1,1,1,""],write:[1,1,1,""]},"@region":{check_extracted_data:[1,1,1,""],extract_data:[1,1,1,""],merge:[1,1,1,""],posneg_separate:[1,1,1,""],region2imagevec2tmp:[1,1,1,""],region2imagevec:[1,1,1,""],region2struct:[1,1,1,""],reparse_continguous:[1,1,1,""],subdivide_by_atlas:[1,1,1,""],subdivide_by_local_max:[1,1,1,""],surface:[1,1,1,""],table:[1,1,1,""]},"@statistic_image":{conjunction:[1,1,1,""],convert2mask:[1,1,1,""],multi_threshold:[1,1,1,""],orthviews:[1,1,1,""],reparse_contiguous:[1,1,1,""],select_one_image:[1,1,1,""],threshold:[1,1,1,""]},Cluster_contig_region_tools:{anat_subclusters:[1,1,1,""],cluster2region:[1,1,1,""],cluster2subclusters:[1,1,1,""],cluster_close_enough:[1,1,1,""],cluster_export_pngs:[1,1,1,""],cluster_find_index:[1,1,1,""],cluster_interp:[1,1,1,""],cluster_intersection:[1,1,1,""],cluster_local_maxima:[1,1,1,""],cluster_set_intersection:[1,1,1,""],cluster_table:[1,1,1,""],cluster_table_successive_threshold:[1,1,1,""],clusters2CLU:[1,1,1,""],clusters2mask:[1,1,1,""],image2clusters:[1,1,1,""],mask2clusters:[1,1,1,""],mask2struct:[1,1,1,""],merge_clusters:[1,1,1,""],merge_nearby_clusters:[1,1,1,""],subclusters_from_local_max:[1,1,1,""],xyz2clusters:[1,1,1,""]},Data_extraction:{canlab_maskstats:[1,1,1,""],cluster_tmask:[1,1,1,""],extract_contrast_data:[1,1,1,""],extract_from_rois:[1,1,1,""],extract_image_data:[1,1,1,""],extract_indiv_peak_data:[1,1,1,""],read_hdr:[1,1,1,""],readim2:[1,1,1,""],timeseries_extract_slice:[1,1,1,""],tor_extract_rois:[1,1,1,""]},Data_processing_tools:{center_of_mass:[1,1,1,""],detransition:[1,1,1,""],downsample_scnlab:[1,1,1,""],fft_plot_scnlab:[1,1,1,""],filterAdjust:[1,1,1,""],fir2htw2:[1,1,1,""],get_snr:[1,1,1,""],htw_from_fit:[1,1,1,""],luisFilter:[1,1,1,""],nuisance_cov_estimates:[1,1,1,""],resample_scnlab:[1,1,1,""],scale:[1,1,1,""],scnlab_filter_fmri_data:[1,1,1,""],scnlab_outlier_id:[1,1,1,""],selective_average:[1,1,1,""],selective_average_group:[1,1,1,""],smooth_timeseries:[1,1,1,""],splineDetrend:[1,1,1,""],splinetrim:[1,1,1,""],trimts:[1,1,1,""],use_spm_filter:[1,1,1,""]},Filename_tools:{check_valid_imagename:[1,1,1,""],copy_image_files:[1,1,1,""],delete_ana_imgs:[1,1,1,""],dicom_tarzip:[1,1,1,""],escapeForShell:[1,1,1,""],expand_4d_filenames:[1,1,1,""],filename_get_new_root_dir:[1,1,1,""],getfullpath:[1,1,1,""],nums_from_text:[1,1,1,""],read_excel:[1,1,1,""],remove_disdaq_vols:[1,1,1,""],rename_lowercase:[1,1,1,""],rename_uppercase:[1,1,1,""],scan_get_files:[1,1,1,""],sort_image_filenames:[1,1,1,""]},GLM_Batch_tools:{canlab_glm_getinfo:[2,1,1,""],canlab_glm_group_levels:[2,1,1,""],canlab_glm_group_levels_run1input:[2,1,1,""],canlab_glm_maskstats:[2,1,1,""],canlab_glm_publish:[2,1,1,""],canlab_glm_roistats:[2,1,1,""],canlab_glm_subject_levels:[2,1,1,""],canlab_glm_subject_levels_run1subject:[2,1,1,""]},HRF_Est_Toolbox2:{Anneal_Logit:[2,1,1,""],Det_Logit:[2,1,1,""],Fit_Canonical_HRF:[2,1,1,""],Fit_Logit2:[2,1,1,""],Fit_sFIR:[2,1,1,""],Get_Logit:[2,1,1,""],HMHRFest:[2,1,1,""],PowerLoss:[2,1,1,""],ResidScan:[2,1,1,""],get_parameters2:[2,1,1,""],hrf_fit_one_voxel:[2,1,1,""],ilogit:[2,1,1,""]},Image_computation_tools:{apply_derivative_boost:[1,1,1,""],canlab_create_wm_ventricle_masks:[1,1,1,""],fisherp:[1,1,1,""],get_mask_vol:[1,1,1,""],image_eval_function:[1,1,1,""],image_eval_function_multisubj:[1,1,1,""],image_histogram1d:[1,1,1,""],mask_create_from_image_set:[1,1,1,""],mask_create_results_mask:[1,1,1,""],mask_fisher:[1,1,1,""],mask_image:[1,1,1,""],mask_intersection2:[1,1,1,""],mask_intersection:[1,1,1,""],mask_stouffer:[1,1,1,""],mask_union:[1,1,1,""],percent_sig_image:[1,1,1,""],reslice_imgs:[1,1,1,""],reverse_mask:[1,1,1,""],scn_write_plane:[1,1,1,""],tor_spm_mean_ui:[1,1,1,""]},Image_space_tools:{check_spm_mat:[1,1,1,""],check_spm_matfiles:[1,1,1,""],img2voxel:[1,1,1,""],mask2voxel:[1,1,1,""],mni2tal:[1,1,1,""],scn_map_image:[1,1,1,""],scn_resample_voxel_size:[1,1,1,""],tal2mni:[1,1,1,""],tal2vox:[1,1,1,""],transform_coordinates:[1,1,1,""],voxel2mask:[1,1,1,""],voxel2mm:[1,1,1,""]},Image_thresholding:{FDR:[1,1,1,""],cl_ext_3dClustSim:[1,1,1,""],cl_ext_make_resid:[1,1,1,""],cl_ext_spm_grf:[1,1,1,""],cl_ext_spm_spm:[1,1,1,""],clusterSizeMask:[1,1,1,""],threshold_imgs:[1,1,1,""]},Index_image_manip_tools:{flip_endianness:[1,1,1,""],iimg_check_volinfo:[1,1,1,""],iimg_cluster_extent:[1,1,1,""],iimg_cluster_index:[1,1,1,""],iimg_cluster_intersect:[1,1,1,""],iimg_cluster_prune:[1,1,1,""],iimg_clusters2indx:[1,1,1,""],iimg_indx2contiguousxyz:[1,1,1,""],iimg_intersection:[1,1,1,""],iimg_make_sure_indx:[1,1,1,""],iimg_mask:[1,1,1,""],iimg_multi_threshold:[1,1,1,""],iimg_princomp:[1,1,1,""],iimg_princomp_display:[1,1,1,""],iimg_read_img:[1,1,1,""],iimg_read_vols:[1,1,1,""],iimg_reconstruct_3dvol:[1,1,1,""],iimg_reconstruct_vols:[1,1,1,""],iimg_reslice:[1,1,1,""],iimg_smooth_3d:[1,1,1,""],iimg_sphere_timeseries:[1,1,1,""],iimg_stouffer:[1,1,1,""],iimg_threshold:[1,1,1,""],iimg_weighted_ttest:[1,1,1,""],iimg_write_images:[1,1,1,""],iimg_xyz2indx:[1,1,1,""],iimg_xyz2spheres:[1,1,1,""]},Misc_utilities:{CERTreader:[1,1,1,""],append:[1,1,1,""],blank_struct:[1,1,1,""],checkMatlabVersion:[1,1,1,""],circle:[1,1,1,""],combine_structs:[1,1,1,""],condf2indic:[1,1,1,""],depfun_aggregate:[1,1,1,""],distance:[1,1,1,""],distance_euclid:[1,1,1,""],erase_and_display:[1,1,1,""],erase_string:[1,1,1,""],explode:[1,1,1,""],fast_conv_fft:[1,1,1,""],getRandom:[1,1,1,""],get_first_help_lines:[1,1,1,""],implode:[1,1,1,""],naninsert:[1,1,1,""],nanremove:[1,1,1,""],oneinsert:[1,1,1,""],orthviews_multiple_objs:[1,1,1,""],pad:[1,1,1,""],padwithnan:[1,1,1,""],parse_char_to_cell:[1,1,1,""],parse_edat_txt:[1,1,1,""],print_matrix:[1,1,1,""],progressbar:[1,1,1,""],read_edat_output_2008:[1,1,1,""],robustcsvread:[1,1,1,""],scn_get_datetime:[1,1,1,""],scn_mat_conform:[1,1,1,""],search_struct_fields:[1,1,1,""],strip_path_dirs:[1,1,1,""],strip_svn_dirs:[1,1,1,""],strrep_recurse:[1,1,1,""],struct_strrep:[1,1,1,""],tor_ga:[1,1,1,""],zeroinsert:[1,1,1,""]},Model_building_tools:{fmri_spline_basis:[1,1,1,""],getPredictors:[1,1,1,""],ideal_deconv6:[1,1,1,""],intercept_model:[1,1,1,""],modifiedconv:[1,1,1,""],onsets2delta:[1,1,1,""],onsets2dx:[1,1,1,""],onsets2fmridesign:[1,1,1,""],onsets2parametric_mod_X:[1,1,1,""],plot_ideal_deconv5:[1,1,1,""],spm_mat2batchinput:[1,1,1,""],tor_make_deconv_mtx3:[1,1,1,""]},OptimizeDesign11:{optimizeGA:[2,1,1,""],optimizeGA_epochs:[2,1,1,""],optimize_rand_search:[2,1,1,""]},Parcellation_tools:{cluster_princomp:[1,1,1,""],inconsistent:[1,1,1,""],mask_princomp:[1,1,1,""],parcel_cl_nmds:[1,1,1,""],parcel_cl_nmds_plots:[1,1,1,""],parcel_clusters:[1,1,1,""],parcel_complete_sets:[1,1,1,""],parcel_images:[1,1,1,""]},ROI_drawing_tools:{add2mask:[1,1,1,""],clusters2roimask:[1,1,1,""],draw_anatomical_roi_2008:[1,1,1,""],sphere_mask:[1,1,1,""]},Statistics_tools:{Bspline:[1,1,1,""],ContinuousAccuracy:[1,1,1,""],F_test_full_vs_red:[1,1,1,""],F_test_no_intercept:[1,1,1,""],ICC:[1,1,1,""],ancova:[1,1,1,""],barplot_get_within_ste:[1,1,1,""],bayes_get_probabilities:[1,1,1,""],bayes_get_probabilities_2010:[1,1,1,""],bayes_meta_feature_abstract:[1,1,1,""],binotest:[1,1,1,""],binotest_dependent:[1,1,1,""],cancor:[1,1,1,""],canlab_connectivity_predict:[1,1,1,""],classify_bayes:[1,1,1,""],classify_choose_most_likely:[1,1,1,""],classify_naive_bayes:[1,1,1,""],classify_naive_bayes_2010:[1,1,1,""],classify_naive_bayes_objfun:[1,1,1,""],classify_viz_regions:[1,1,1,""],contrast_code:[1,1,1,""],correl_compare_dep:[1,1,1,""],correl_compare_dep_permtest:[1,1,1,""],correl_compare_dep_search:[1,1,1,""],correl_compare_indep:[1,1,1,""],correl_compare_indep_inputr:[1,1,1,""],correl_compare_permute:[1,1,1,""],correlation:[1,1,1,""],correlation_fast_series:[1,1,1,""],create_orthogonal_contrast_set:[1,1,1,""],dice_coeff_image:[1,1,1,""],doquality:[1,1,1,""],fisherz:[1,1,1,""],fit_gls:[1,1,1,""],fit_gls_brain:[1,1,1,""],getmeanquality:[1,1,1,""],glmfit_general:[1,1,1,""],glmfit_multilevel:[1,1,1,""],glmfit_multilevel_varexplained:[1,1,1,""],intercept:[1,1,1,""],loess_multilevel:[1,1,1,""],matrix_direct_effects:[1,1,1,""],matrix_direct_effects_ridge:[1,1,1,""],matrix_eval_function:[1,1,1,""],monotonic_regression:[1,1,1,""],moving_average:[1,1,1,""],noise_arp:[1,1,1,""],nonlin_fit:[1,1,1,""],nonlin_param_mod_brain:[1,1,1,""],nonlin_param_modulator:[1,1,1,""],nonlin_parammod_predfun:[1,1,1,""],pairwise_diffs:[1,1,1,""],partition_variables_indevel:[1,1,1,""],permute_setupperms:[1,1,1,""],permute_signtest:[1,1,1,""],plssquash:[1,1,1,""],princomp_largedata:[1,1,1,""],prplot_multilevel:[1,1,1,""],r2z:[1,1,1,""],regress_best_subsets_ga:[1,1,1,""],repeated_ancova:[1,1,1,""],rmanova2:[1,1,1,""],robust_reg_pooled:[1,1,1,""],roc_boot:[1,1,1,""],roc_calc:[1,1,1,""],roc_plot:[1,1,1,""],rsquare_calc:[1,1,1,""],rsquare_multiple_regions_multilevel:[1,1,1,""],scn_stats_helper_functions:[1,1,1,""],sdt_A:[1,1,1,""],searchlight_applymask:[1,1,1,""],searchlight_applymask_collate:[1,1,1,""],searchlight_correlation:[1,1,1,""],searchlight_disti:[1,1,1,""],searchlight_dream:[1,1,1,""],searchlight_saveresults:[1,1,1,""],shift_correl:[1,1,1,""],shift_signal:[1,1,1,""],signtest_matrix:[1,1,1,""],ste:[1,1,1,""],stepwise_tor:[1,1,1,""],stouffer:[1,1,1,""],subset_indicator_matrix:[1,1,1,""],t_test2:[1,1,1,""],testclustnew:[1,1,1,""],time_varying_estimate:[1,1,1,""],tscv:[1,1,1,""],tsquaretest:[1,1,1,""],ttest2_printout:[1,1,1,""],ttest3d:[1,1,1,""],var_prctile:[1,1,1,""],weighted_glmfit:[1,1,1,""],xcorr_multisubject:[1,1,1,""],xcorr_xy_multisubject:[1,1,1,""]},Visualization_functions:{addbrain:[1,1,1,""],addbrainleft:[1,1,1,""],addbrainright:[1,1,1,""],applycolormap:[1,1,1,""],arrow:[1,1,1,""],bar_wani:[1,1,1,""],barplot_colored:[1,1,1,""],barplot_columns2:[1,1,1,""],barplot_columns3:[1,1,1,""],barplot_columns:[1,1,1,""],barplot_grouped:[1,1,1,""],barplotter:[1,1,1,""],canlab_force_directed_graph:[1,1,1,""],canlab_results_fmridisplay:[1,1,1,""],cl_line_plots:[1,1,1,""],cl_overlap:[1,1,1,""],close_non_spm_graphics_figures:[1,1,1,""],cluster_barplot:[1,1,1,""],cluster_cutaways:[1,1,1,""],cluster_image_shape:[1,1,1,""],cluster_image_sphere:[1,1,1,""],cluster_orthviews:[1,1,1,""],cluster_orthviews_classes:[1,1,1,""],cluster_orthviews_montage:[1,1,1,""],cluster_orthviews_overlap2:[1,1,1,""],cluster_orthviews_overlap:[1,1,1,""],cluster_orthviews_overlap_3colors:[1,1,1,""],cluster_orthviews_showcenters:[1,1,1,""],cluster_surf:[1,1,1,""],cluster_surf_batch2:[1,1,1,""],cluster_surf_batch:[1,1,1,""],colormap_tor:[1,1,1,""],compare_filtered_t:[1,1,1,""],compare_slice:[1,1,1,""],conf_region:[1,1,1,""],create_figure:[1,1,1,""],errorbar_horizontal:[1,1,1,""],errorbar_width:[1,1,1,""],fill_area_around_points:[1,1,1,""],getVertexColors:[1,1,1,""],get_cluster_volume:[1,1,1,""],glassbrain_avi:[1,1,1,""],imageCluster:[1,1,1,""],imageCluster_block:[1,1,1,""],image_histogram:[1,1,1,""],line_plot_multisubject:[1,1,1,""],lineplot_columns:[1,1,1,""],make3Davi:[1,1,1,""],make3Davi_uncompressed:[1,1,1,""],make_figure_into_orthviews:[1,1,1,""],makelegend:[1,1,1,""],map_data_to_colormap:[1,1,1,""],mask2surface:[1,1,1,""],mdsfig:[1,1,1,""],mdsfig_3d:[1,1,1,""],mea_visualise:[1,1,1,""],montage_clusters:[1,1,1,""],montage_clusters_maxslice:[1,1,1,""],montage_clusters_medial:[1,1,1,""],montage_clusters_points:[1,1,1,""],montage_clusters_text2:[1,1,1,""],montage_clusters_text:[1,1,1,""],montage_image_Worsley:[1,1,1,""],movie_of_slice_timeseries:[1,1,1,""],movie_stillframes:[1,1,1,""],multi_threshold:[1,1,1,""],mvroi_mdsfig_plot2:[1,1,1,""],mvroi_mdsfig_plot_sepstates:[1,1,1,""],mvroi_mdsfig_plugin2:[1,1,1,""],mvroi_plot_firs:[1,1,1,""],nmdsfig1D:[1,1,1,""],nmdsfig:[1,1,1,""],nmdsfig_fill:[1,1,1,""],nmdsfig_legend:[1,1,1,""],plot3d:[1,1,1,""],plotDesign:[1,1,1,""],plot_correlation:[1,1,1,""],plot_correlation_samefig:[1,1,1,""],plot_dx_hrfs:[1,1,1,""],plot_ellipse:[1,1,1,""],plot_error:[1,1,1,""],plot_horizontal_line:[1,1,1,""],plot_hrf_model_fit:[1,1,1,""],plot_joint_hist_contour:[1,1,1,""],plot_matrix_cols:[1,1,1,""],plot_vertical_line:[1,1,1,""],prplot:[1,1,1,""],renderCluster_ui4:[1,1,1,""],renderCluster_ui:[1,1,1,""],roi_contour_map:[1,1,1,""],scn_export_papersetup:[1,1,1,""],scn_standard_colors:[1,1,1,""],selective_average_interactive_view_init:[1,1,1,""],sepplot:[1,1,1,""],shepardplot:[1,1,1,""],sphere_roi_tool:[1,1,1,""],spm_orthviews_change_colormap:[1,1,1,""],spm_orthviews_hotcool_colormap:[1,1,1,""],spm_orthviews_name_axis:[1,1,1,""],spm_orthviews_showposition:[1,1,1,""],spm_orthviews_white_background:[1,1,1,""],spm_ov_black2white:[1,1,1,""],standardMRIlighting:[1,1,1,""],surf_plot_tor:[1,1,1,""],surface_cutaway:[1,1,1,""],talairach_clusters:[1,1,1,""],timeseries_prplot:[1,1,1,""],tor_3d:[1,1,1,""],tor_fill_steplot:[1,1,1,""],tor_ihb_GetClusterSet:[1,1,1,""],tor_ihb_GetClusters:[1,1,1,""],tor_ihb_TalSpace:[1,1,1,""],tor_ihb_UpdateClusterTalVoxSize:[1,1,1,""],tor_polar_plot:[1,1,1,""],violinplot:[1,1,1,""],wani_pie:[1,1,1,""],xval_lasso_brain_permutation_histogram:[1,1,1,""]},diagnostics:{BiasPowerloss:[2,1,1,""],ResidScan:[2,1,1,""],add_nuisance_to_SPMcfg:[2,1,1,""],batch_efficiency:[2,1,1,""],batch_t_histograms:[2,1,1,""],canlab_qc_metrics1:[2,1,1,""],check_cluster_data:[2,1,1,""],compare_subjects256:[2,1,1,""],compare_subjects:[2,1,1,""],displayme:[2,1,1,""],ellipse:[2,1,1,""],fft_calc:[2,1,1,""],fmri_mask_thresh_canlab:[2,1,1,""],get_filename2:[2,1,1,""],get_filename:[2,1,1,""],hist2:[2,1,1,""],image_intensity_histograms:[2,1,1,""],img_hist2:[2,1,1,""],img_hist:[2,1,1,""],joint_hist:[2,1,1,""],make_conv_mtx:[2,1,1,""],multivar_dist:[2,1,1,""],orthogonalize:[2,1,1,""],power_from_variance:[2,1,1,""],power_loss:[2,1,1,""],publish_scn_session_spike_id:[2,1,1,""],qchist:[2,1,1,""],reset_SPMcfg:[2,1,1,""],scale_imgs_by_csf:[2,1,1,""],scn_component_rsquare:[2,1,1,""],scn_session_spike_id:[2,1,1,""],scn_spm_choose_hpfilter:[2,1,1,""],scn_spm_design_check:[2,1,1,""],scn_spm_get_events_of_interest:[2,1,1,""],scnlab_norm_check3:[2,1,1,""],scnlab_norm_check:[2,1,1,""],scnlab_pca_check1:[2,1,1,""],spm_general_hist:[2,1,1,""],spm_rfx_hist:[2,1,1,""],struct2yaml:[2,1,1,""],tor_get_physio:[2,1,1,""]},fmridisplay_helper_functions:{clusters2mask2011:[1,1,1,""],define_sampling_space:[1,1,1,""],display_slice:[1,1,1,""],map_to_world_space:[1,1,1,""],render_blobs:[1,1,1,""],resample_space:[1,1,1,""]},hewma_utility:{Gaussian_mix:[1,1,1,""],change_point:[1,1,1,""],cluster_kmeans_parcel:[1,1,1,""],cnt_runs:[1,1,1,""],ewma5:[1,1,1,""],get_ax_slice:[1,1,1,""],get_max_t:[1,1,1,""],hewma2:[1,1,1,""],hewma2_plot:[1,1,1,""],hewma_extract_voxel:[1,1,1,""],hewma_from_raw_timeseries:[1,1,1,""],hewma_gui:[1,1,1,""],hewma_plot_bivariate:[1,1,1,""],hewma_plot_coord_btnupfcn:[1,1,1,""],hewma_plot_cpmap:[1,1,1,""],hewma_plot_runlen:[1,1,1,""],hewma_save_timeseries:[1,1,1,""],linear_detrending:[1,1,1,""],timeseries_btwngroups_plot:[1,1,1,""],timeseries_mc_pvalue:[1,1,1,""],wb_hewma_shell:[1,1,1,""],weighted_reg:[1,1,1,""],weighted_reg_old2:[1,1,1,""],weighted_reg_oldglmfit_old:[1,1,1,""],whole_brain_ewma:[1,1,1,""],zero_crossing:[1,1,1,""]},peak_coordinates:{cluster_manova:[1,1,1,""],extract_ind_peak:[1,1,1,""],image2coordinates:[1,1,1,""],spatial_contrast:[1,1,1,""]}},objnames:{"0":["mat","module","MATLAB module"],"1":["mat","function","MATLAB function"]},objtypes:{"0":"mat:module","1":"mat:function"},terms:{"020515sp":[1,2],"020726ag":[1,2],"020827mk":[1,2],"020829jh":[1,2],"020903lb":[1,2],"02d":[1,2],"03d":1,"05_k10_neg":1,"05_k5_po":1,"060518mw":[1,2],"10th":1,"1iconw":[1,2],"1st":1,"1x1":1,"1x105":1,"1x2":1,"1x30":1,"1xm":1,"2007a":1,"2012a":1,"2014a":1,"2nd":[1,2],"2subject":[1,2],"2x30":1,"3dclustsim":1,"3dclustsim_dir":1,"3dfwhmx":1,"3dheadutil":1,"3rd":1,"4th":1,"4x4":1,"50x1000":1,"50x10000":1,"5th":1,"6_intel_64":1,"8bit":1,"91x109x91":1,"95ci":1,"_01aug2014":1,"_10k":1,"_column":1,"_dat":1,"_level":[1,2],"_p_":1,"_seg1":[1,2],"_seg3":[1,2],"_tmap_0002":1,"abstract":1,"boolean":1,"break":1,"byte":1,"case":[1,2],"catch":1,"char":[1,2],"class":1,"const":1,"default":[1,2],"export":1,"final":1,"float":1,"function":[0,1,2],"import":1,"int":1,"long":[1,2],"new":[],"null":1,"public":[],"return":[1,2],"super":[],"switch":1,"true":[1,2],"try":1,"var":[1,2],"while":1,aa_:1,aall:[1,2],ab_c:1,abbrev:1,abbrevi:1,abc:1,abil:1,abin:1,abl:1,about:1,abov:[1,2],abrupt:1,absent:1,absolut:[1,2],acc:1,acc_roi_mask:1,acc_x_dist:1,accept:1,access:1,accompani:1,accord:1,accordingli:1,account:[1,2],accumben:1,accur:1,accuraci:1,acl:1,acquisit:[1,2],across:[1,2],act:1,actcolor2:1,actcolor3:1,actcolor:1,action:1,activ:[1,2],activation_cutoff:1,activation_fwe_al:1,activation_map:1,activation_proport:1,activationdata:1,active_plus_corr_scatterplot_plugin:1,actual:[1,2],adapt:1,add2mask:1,add2movi:1,add:[1,2],add_nuisance_to_spmcfg:[1,2],addblob:1,addbrain:1,addbrainleft:1,addbrainright:1,addcolouredblob:1,addcon:[1,2],addintercept:[],addit:[1,2],additional_info:1,additional_input:1,additional_nuis:1,addmontag:1,addpoint:1,address:[1,2],addtext:1,addthreshblob:1,addvari:[],adequ:1,adjac:1,adjust:[1,2],adjusti:[],adjustmatrix:1,adress:1,advanc:1,advantag:1,affect:1,affin:1,afni:1,after:[1,2],afterward:1,again:1,against:[1,2],agglom:1,aggreg:1,agre:1,aic:1,akin:1,alarm:1,alfja:[],algo:1,algorithm:[1,2],algorithm_nam:1,all4_union_bg_surf:1,all:[1,2],all_chi2_imag:1,all_data:1,all_surf_handl:1,all_surf_handles2:1,allcverr:1,alld:1,allinfo:1,allinput:[1,2],allmodel:[1,2],allow:[1,2],allownan:1,allw:1,allyhat:1,alon:[0,1,2],along:[1,2],alph:1,alpha:[1,2],alphanumer:1,alphasim:1,alreadi:[1,2],also:[0,1,2],alt:1,altern:[1,2],altho:[1,2],alwai:1,ambar_carvalho:1,ambient:1,ambigu:1,american:1,ami:1,among:[1,2],amount:1,amp:1,amplitud:[1,2],amygdala:1,an_metafwe_rad10:1,analys:[1,2],analysi:[1,2],analysis_dir:[1,2],analysisnam:1,analyz:[1,2],analyze_cluster_roi:1,anat:1,anat_lbpa_th:1,anat_subclust:1,anatmeannam:1,anatom:[1,2],anatomc:[1,2],anatomi:[1,2],anatomynscalped_ft1:[],anatp:1,ancova:1,andreas_nguyen:1,anew:1,angela_val:1,angl:1,ani:[0,1,2],anjali:[],anneal:[1,2],anneal_logit:[1,2],annot:1,anonym:1,anoth:[1,2],anova:1,answer:1,ant:1,anterior:1,antialias:1,antic:1,anticip:1,anxieti:1,anybad:1,anyth:[1,2],anywai:1,anywher:[],aout:1,apart:1,appar:1,appear:1,append:[1,2],appli:[1,2],applic:1,apply_clust:1,apply_derivative_boost:1,apply_mask:1,apply_np:1,applycolormap:1,apprais:1,approach:[1,2],appropri:[1,2],approv:1,approxim:[1,2],april:[],aproach:[1,2],arbitrari:1,archiv:[],area:1,aren:[1,2],arg:1,argument:[1,2],aris:[],arma:1,armi:1,arord:1,around:[1,2],arrai:[1,2],arrang:1,arrow:1,arrowhead:1,artifact:[1,2],asc:[1,2],ascend:[1,2],ascii:1,ashar:[],ask:1,aslfd:[],aspect:1,aspectlib:[],assess:1,assign:1,associ:1,assum:[1,2],assumpt:[1,2],ast:1,ast_adj_x:1,ast_adj_y_neg:1,ast_adj_y_po:1,asterisk:1,asymmetr:1,asymmetri:[1,2],asymptot:1,atan:1,atla:1,atlas:1,atlas_labels_combin:1,atleast:1,atleastn:1,att:1,attach:1,attempt:1,atti:1,attribut:[1,2],auc:1,auc_by_modul:1,auc_mean_tri:1,auditori:[1,2],auditory_oddbal:[1,2],aug:1,augment:1,august:1,author:1,auto:1,autocorrel:1,automat:[1,2],automodul:[],autoregress:1,aux_fil:1,avail:1,averag:[1,2],average_ov:1,average_resp:1,avg152t1:[1,2],avg:[1,2],avgd:1,avgstat:1,avgvs3:1,avi:1,avoid:[1,2],awai:1,awri:1,axh:1,axi:[1,2],axial:1,axis_handl:1,axishandl:1,axisnum:1,axtyp:1,azimuth:1,azoffset:1,b2_e2:1,b_star:1,b_subset:1,back:[1,2],background:[1,2],backspac:1,backup:1,backward:1,bad:[1,2],badvox:1,balanc:1,balanced_ridg:[],bandpass:1,bandwidth:1,bar:[1,2],bar_edgecol:1,bar_edgewidth:1,bar_handl:1,bar_wani:1,bar_width:1,bare:[],bargraph:1,barhandl:1,barplot:1,barplot_color:1,barplot_column:1,barplot_columns2:1,barplot_columns3:1,barplot_get_within_st:1,barplot_group:1,barplott:1,barttest:1,barwidth:1,basal:1,base:[1,2],base_timept:1,baseangl:1,basecolor:1,basedir:1,baseimg:1,baselin:1,basenam:1,baseperiod:1,basept:1,basi:[1,2],basic:[1,2],basisset:1,batch:[1,2],batch_effici:[1,2],batch_t_histogram:[1,2],bay:1,bayes_get_prob:1,bayes_get_probabilities_2010:1,bayes_meta_feature_abstract:1,bayes_model:1,bayes_model_region:1,bcov:1,bear:[1,2],becaus:[1,2],becom:1,been:[1,2],beff:1,befor:[1,2],begin:1,beh1:1,behav:[],behavior:1,behdat:1,behind:1,belong:1,below:1,benefici:[],benefit:1,benjamini:1,bernoulli:1,besid:1,best:[1,2],best_log:1,best_param:1,bestc:1,bestcoord:1,bestcorr:1,bestg:1,bestk:1,bestmyclass:1,bestnam:1,bestpval:1,bestshift:1,bestx:1,beta1_event1:1,beta1_event2:1,beta2_event1:1,beta:[1,2],beta_0001:[1,2],beta_0010:[1,2],beta_:1,beta_nam:1,betaorcontrast:1,better:[1,2],between:[1,2],beyond:1,bfr:1,bgcolor:1,bgl:1,bia:[1,2],bias:1,biasmean:1,biaspowerloss:[1,2],big:[1,2],bilat:1,bilater:1,bimod:1,bin:[1,2],binar:1,binari:[1,2],binary_outcom:1,binomi:1,binotest:1,binotest_depend:1,bint:1,biomark:1,biplot:1,bisempti:1,biseri:1,bit:1,biubiub:[],biubuib:[],bival:1,bivari:1,black2whit:1,black:1,blalock:1,blank:1,blank_struct:1,blank_val:1,blkdiag:[1,2],blob:1,blobhan:1,block:[1,2],blue:[1,2],blueon:[],bmrk3:1,bnew:1,bold:1,bonf:1,bonferroni:1,book:1,bool:1,boost:1,boostrap:1,boot1:1,boot:1,bootsampl:1,bootsrap:[],bootstrap:1,bootstrp:[],bootweight:1,borderscal:1,both:[1,2],bottom:1,bound:1,boundari:1,bout:1,box:1,boxcar:1,boxplot:1,bpf:1,brad_wilson:1,brain:[1,2],brain_avg152t1:[1,2],brain_render_t1:1,brainbottom:1,brainmask:[1,2],brainoni:1,brainstem:1,branch:1,breakpoint:1,bring:1,brownhil:1,brows:1,bspline:1,btwline:1,btwn:1,btwnname:1,bucker:1,buckner:1,bucknerlab:1,bug:1,bui:[],buib:[],buibiub:[],build:1,build_single_tri:1,built:1,bull:1,bump:[1,2],bunch:[],bwexist:1,c2m:1,c_bia:1,c_compar:1,calc:1,calcstr:1,calcul:[1,2],calculate_stat:1,calhoun:1,call:[1,2],camlight:1,can:[1,2],cancor:1,canlab:[0,1,2],canlab_canonical_brain:[],canlab_connectivity_predict:1,canlab_connectivity_preproc:1,canlab_create_wm_ventricle_mask:1,canlab_databas:[],canlab_dataset:[],canlab_extract_ventricle_wm_timeseri:1,canlab_force_directed_graph:1,canlab_glm_:[1,2],canlab_glm_getinfo:[1,2],canlab_glm_group_level:[1,2],canlab_glm_group_levels_run1input:[1,2],canlab_glm_maskstat:[1,2],canlab_glm_publish:[1,2],canlab_glm_readm:[1,2],canlab_glm_roistat:[1,2],canlab_glm_subject_level:[1,2],canlab_glm_subject_levels_run1subject:[1,2],canlab_maskstat:[1,2],canlab_preproc:[1,2],canlab_preproc_norm_check:[1,2],canlab_qc_metrics1:[1,2],canlab_results_fmridisplai:1,canlab_spm_contrast_job:[1,2],canlab_spm_contrast_job_luka:[1,2],canlab_spm_fmri_model_job:[1,2],cannot:1,canon:[1,2],canoncorr:1,canonical_brain:1,caonic:1,capabl:1,capit:1,captur:1,care:1,caret:1,carlo:1,carmack:1,carmack_get_label:[],cast:1,cat:[1,2],categor:1,categori:1,caudat:1,caus:[1,2],caution:1,caxi:1,ccor:1,cdf:1,ceil:1,cell:[1,2],cellarrai:[1,2],cellarri:1,cellstr:1,cen:1,center:[1,2],center_of_mass:1,centered_dot_product:1,centerimag:1,centervoxel:1,centr:1,central:1,centroid:1,centromedian:1,cerebellum:1,cert:1,certain:1,certread:1,chanc:1,chance_95_ci:1,chang:[1,2],change_point:1,changepoint:1,charact:[1,2],characterist:1,charg:[],chart:1,chebi:1,chebyshev:1,check:[1,2],check_cluster_data:[1,2],check_extracted_data:1,check_image_filenam:1,check_spm_mat:1,check_spm_matfil:1,check_valid_imagenam:1,checkmatlabvers:1,chemometr:1,chi2:[1,2],chi:1,child:[1,2],choic:[1,2],choos:[1,2],choose_ndim:1,chosen:1,chptmap:1,chrf:1,christensen:1,chronolog:1,chunck:1,chunk:1,chwo9116:1,circa:1,circl:1,circular:1,circumst:1,cis95:1,cl1:1,cl2:1,cl3:1,cl_ami:1,cl_b_fdr05_002_01_k3_1_1_prune:1,cl_ext:1,cl_ext_3dclustsim:1,cl_ext_clustsim:1,cl_ext_make_resid:1,cl_ext_spm:1,cl_ext_spm_grf:1,cl_ext_spm_spm:1,cl_extent:1,cl_glo1:1,cl_glo2:1,cl_in:1,cl_line_plot:1,cl_match:1,cl_match_to:1,cl_out:1,cl_overlap:1,cl_putamen:1,cl_roimean:1,cl_roipattern:1,cl_size:1,claim:[],clarifi:[],class_clust:1,class_est:1,class_threshold:1,classif:1,classifi:1,classify_bay:1,classify_choose_most_lik:1,classify_naive_bay:1,classify_naive_bayes_2010:1,classify_naive_bayes_objfun:1,classify_search_script3:1,classify_viz_region:1,classs:1,clcol:1,clean:1,clear:1,click:1,clim:1,clin:1,clindx:1,clinpsywoo:1,clneg:1,clneg_data:1,clockwis:1,close:[1,2],close_enough:1,close_non_spm_graphics_figur:1,closeenough:1,closemovi:1,closer:1,closest:1,closest_clust:[],clout:1,clpattern:1,clpo:1,clpos_data2:1,clpos_data:1,clroimean:1,cls1:1,cls2:1,cls3:1,clsize:1,clsuter:1,clu:1,clust:1,cluster2region:1,cluster2subclust:1,cluster:[1,2],cluster_barplot:1,cluster_close_enough:1,cluster_contig_region_tool:[],cluster_cutawai:1,cluster_export_png:1,cluster_find_index:1,cluster_image_shap:1,cluster_image_spher:1,cluster_interp:1,cluster_intersect:1,cluster_kmeans_parcel:1,cluster_local_maxima:1,cluster_manova:1,cluster_nam:1,cluster_nmd:1,cluster_nmdsfig:1,cluster_nmdsfig_glassbrain:1,cluster_orthview:1,cluster_orthviews_class:1,cluster_orthviews_montag:1,cluster_orthviews_overlap2:1,cluster_orthviews_overlap:1,cluster_orthviews_overlap_3color:1,cluster_orthviews_showcent:1,cluster_princomp:1,cluster_set_intersect:1,cluster_solut:1,cluster_surf:1,cluster_surf_batch2:1,cluster_surf_batch:1,cluster_surf_movi:1,cluster_t:1,cluster_table_old:[],cluster_table_successive_threshold:1,cluster_tmask:1,cluster_tool:1,clusterdata:1,clusters1:1,clusters2:1,clusters2clu:1,clusters2databas:1,clusters2mask2011:1,clusters2mask:1,clusters2roimask:1,clusters:[1,2],clusters_to_match:1,clustersizemask:1,clustersolut:1,clusterxyz:1,clustnam:1,clustqual:1,clustsim_dir:1,clz:1,cmaprang:1,cmd:1,cmdscale:1,cnt:1,cnt_run:1,cntmap:1,cntmat:1,cochran:1,code:[1,2],coeff:1,coeffici:1,coeffieint:1,cognit:1,cohen:[1,2],coher:[1,2],col1:1,col2:1,col:[1,2],colin:1,colinear:[1,2],collect:1,color:1,color_lowerboundpercentil:1,color_upperboundpercentil:1,colorado:[1,2],colorbar:1,colorchang:1,colorchangestr:1,colorcond:1,colormap:1,colormap_tor:1,colors2:1,colorscal:1,colorspec:1,colorspecstr:1,colum:1,column1:1,column2:1,column3:1,column4:1,column:[1,2],columnwis:1,com:1,combin:[1,2],combine_struct:1,combo:1,come:[1,2],comma:1,command:[0,1,2],comment:1,common:1,comp:1,compact2:1,compact:1,compar:[1,2],compare_filtered_t:1,compare_slic:1,compare_spac:1,compare_subject:[1,2],compare_subjects256:[1,2],comparegroup:1,comparison:1,compat:[1,2],complementari:1,complet:1,complex:1,complic:1,compoen:1,compon:[1,2],composit:1,compress:1,compris:1,compscor:[1,2],comput:[1,2],computation:1,con:[1,2],con_0002:[1,2],con_0003:1,con_0004:1,con_:[1,2],con_fil:1,con_pval:1,con_t:1,concaten:1,concis:1,conda:[],condf2ind:1,condf:1,condit:[1,2],condition:1,condition_num:1,condition_numb:1,conditionnam:1,conf:1,conf_region:1,confid:[1,2],configur:[],conflict:[],conform:[],confound:1,confus:1,confusion_mtx:1,confval:1,conimg:1,conjunct:1,conn:1,conn_filt:1,connam:[1,2],connect3d:1,connect:1,connectmetr:1,connot:1,connum:[1,2],consecut:1,conserv:1,consid:[1,2],consider:[1,2],consist:1,constant:1,constanttran:1,constrain:1,constraint:1,construct:[1,2],constructor:1,contain:[0,1,2],content:[],context:1,contig:[],contigu:1,contiguous_region:1,continu:1,continuousaccuraci:1,contour:1,contourslic:1,contract:[],contrast:[1,2],contrast_cod:1,contrast_mtx:1,contrast_t:1,contrastimag:[1,2],contrastnam:1,contrastxweight:1,contribut:[1,2],control:[1,2],control_dat:1,conv:[1,2],conv_hrf:[],conval:1,convent:1,converg:1,convers:1,converst:[],convert2mask:1,convert:1,convolut:[1,2],convolv:1,conw:[1,2],cool:1,coord:1,coordiat:1,coordin:[1,2],cophenet:1,copi:1,copy_image_fil:1,copyright:1,cor:1,cordir:1,core:[0,1],core_funct:[],corel:1,coron:1,corr:[1,2],corr_rep:1,corr_temp:1,corrc_mean:1,corrclass:1,corrclass_nullhyp:1,corrcoef:1,corrdat:1,correct:[1,2],corrected_p:1,correctli:1,correl:[1,2],correl_compare_dep:1,correl_compare_dep_permtest:1,correl_compare_dep_search:1,correl_compare_indep:1,correl_compare_indep_inputr:1,correl_compare_permut:1,correl_seed1_sig:1,correlation_fast_seri:1,correlation_to_text:1,correspond:[1,2],corrval:1,cortic:1,corval:1,cosin:[],cosine_similar:1,could:[1,2],count:[1,2],counterbalanc:[1,2],coupl:1,cours:[1,2],coursework_and_teach:[1,2],cov:[1,2],covari:[1,2],cover:[1,2],covfil:[1,2],covnam:[1,2],covt:1,covti:1,covxcon:[1,2],cp2:1,cp_ind:1,cpmap:1,crash:[],creat:[1,2],create_figur:1,create_fmri_mask:1,create_orthogonal_contrast_set:1,creation:1,creelman:1,crimin:1,crit_t:1,criterion:1,critic:1,cronbach:1,cross:1,crossdir:1,crosshair:1,crossov:1,crossval:1,crossvalid:1,cscale:1,cse:1,csf:[1,2],csfname:[],csfp2:[],csfpath:[],csv:[1,2],ctmp:1,cubic:1,cue:1,curr:1,current:[1,2],current_data:[],currentexperi:[1,2],currentmap:1,cursor:1,curv:[1,2],custom:[1,2],custom_coord:1,custom_hrf:[],customneur:1,cut:[1,2],cutawai:1,cutoff:[1,2],cv_assign:1,cv_lassopcr:1,cv_lassopcrmatlab:1,cv_multilevel_glm:1,cv_multregress:1,cv_pcr:1,cv_regress:1,cv_svm:1,cv_svr:1,cv_univregress:1,cverr:1,cvpartit:1,cwd:[1,2],cyan:1,cycl:1,cyclecorrect:1,cyclecorrection2:1,d_by_mod:1,d_mean:1,dacc_hw_pattern_sl6mm:1,dacc_rf_pattern_sl6mm:1,damag:[],dark:1,dash:1,dat1:1,dat2:1,dat:[1,2],dat_comb:1,dat_ext:1,dat_intersect:1,dat_mask:1,dat_matrix:1,dat_out:1,dat_union:1,data:[1,2],data_and_tool:1,data_comb:1,data_extract:[],data_matrix12:1,data_matrix1:1,data_matrix22:1,data_matrix2:1,data_obj:1,data_processing_tool:[],databas:[1,2],databasexyz:1,datafil:1,datanam:1,dataset:1,datatyp:1,datavalueset:1,datcel:1,datdir:1,date:1,datenum:1,datestr:1,datout:1,datsig:1,dattyp:1,datv:1,david:1,davidson:1,dbmethod:[1,2],dcm:1,dcon:1,deactiv:1,deal:1,deblank:[1,2],debug:1,dec:1,decil:1,decim:1,declar:1,decompos:1,decomposit:1,deconv:1,deconvolut:1,deconvolv:1,decor:[],decreas:1,dedetrend:1,deep:1,def:1,defin:[1,2],define_sampling_spac:1,definit:1,degre:[1,2],delai:1,delayeq:1,delet:[1,2],delete_ana_img:1,delim:1,delimit:1,deliv:1,delta:[1,2],delta_hir:1,deltadist:1,deltadon:1,deltadon_avg:1,deltatend:1,demand:[],demo2:1,demo:1,denan:1,dendrogram:1,denois:1,denoised_canlab:[1,2],denot:[1,2],densiti:1,dep:1,depend:[1,2],depfun_aggreg:1,depict:1,deprec:[1,2],depth:1,deriv:[1,2],descend:1,descent:[],describ:[1,2],descrip:1,descript:[1,2],design:[0,1,2],design_matrix:1,designfil:1,designx:[1,2],desir:1,det:1,det_logit:[1,2],det_logit_allstim:[1,2],detail:1,detect:[1,2],determin:[1,2],determinist:[1,2],detransit:1,detrend:1,dev:1,develop:1,devianc:1,deviat:[1,2],devinnei:1,df_error:1,df_model:1,dfb:1,dfe:1,dfm:1,dfwithin:1,dhr:1,diag:1,diaglinear:1,diagnost:[],diagon:1,diagquadrat:1,dice:1,dice_coeff:1,dice_coeff_imag:1,dichotom:1,dicom:1,dicom_tarzip:1,did:1,didn:[1,2],diff:1,differ:[1,2],difficult:1,difstat:1,dim4:1,dim:[1,2],dimens:[1,2],dimension:1,dip:[1,2],dir2cel:1,dir:[1,2],dir_wcard:[1,2],dire:[1,2],direct:1,direct_mtx:1,directli:1,directori:[1,2],directory_specif:[1,2],discard:1,discoveri:1,discret:1,discrimin:1,discuss:1,disdaq:1,disk:1,disord:1,disp:1,dispers:[1,2],displai:[1,2],display_plot:1,display_slic:1,displaym:[1,2],disptyp:1,dissim:1,dissimilar:[1,2],dist:[1,2],dist_from_hyperplane_xv:1,dist_hi:1,dist_i:1,dist_n:1,dist_thresh:1,distanc:[1,2],distance_euclid:1,distinguish:1,distribut:[1,2],ditto:1,divid:[1,2],dm1:[],dm2:[],dmpfc:1,doasym:1,dobrain:1,doc:1,docent:1,dodetrend:1,doe:[1,2],doesn:[1,2],dofig:1,dohead:1,dohp:1,doind:1,doindiff:1,doindiv:1,doku:1,dolegend:1,dolin:1,dolp:1,domask:1,dominic_ricci:1,domontag:1,don:[1,2],done:[1,2],dool:1,doonerow:1,doortho:[1,2],doplot2:1,doplot:[1,2],doquad:1,doqual:1,dorandom:1,dorob:1,dorobust:1,dosav:1,doshad:1,dosmooth:1,dot:[1,2],dot_product:1,dotfig:1,doubl:1,doubt:1,doug:1,douniqu:1,dowithinst:1,download:[0,1],downsampl:1,downsample_canlab:1,downsample_delta:1,downsample_scnlab:1,downweight:1,dpsp002:1,dpsp002_spm:1,dpsp003:1,dpsp003_spm:1,drag:1,drastic:1,draw:1,draw_anatomical_roi_2008:1,drawlin:1,drawn:1,drawnow:1,drawslic:1,drawsyml:1,drawsymr:1,dream:[1,2],dreamio:1,drift:[1,2],drive:[],driven:1,drop:1,dsgn:[1,2],dsgnarg:[1,2],dsgninfo:[1,2],dslen:1,dsrate:1,dthresh:1,due:[1,2],dull:1,dummi:[1,2],dummyscan:1,duplic:[],dur:1,durat:1,dure:1,durectli:1,dwcard:[1,2],dx_beta:1,dynam:1,each:[1,2],earlier:1,easi:1,easili:1,ebay:1,econ:1,econflag:1,econometr:1,edat2:1,edat:1,edat_cel:1,edat_struct:1,eddi:1,edg:1,edgecolor:1,edit:[1,2],edu:[1,2],eeg:1,effect:[1,2],effect_size_map:[1,2],effici:[1,2],ehter:[],eidf:1,eig:1,eigenvalu:[1,2],eigenvari:[1,2],eigenvector:[1,2],eigenvetor:1,eigv:[1,2],eigval:[1,2],either:[1,2],elaps:[],elast:1,element:[1,2],elev:1,elimin:1,ellips:[1,2],ellipt:[1,2],eloffset:1,els:[1,2],elsewher:1,email:[1,2],embed:[1,2],emot:1,emotion_2s_z_val_fdr_05:1,empir:1,empti:[1,2],emul:1,enabl:[1,2],encapsul:1,end:[1,2],endian:[1,2],endval:1,enforc:1,engin:[1,2],engram:1,enlarg:1,enough:[],ensu:1,ensur:1,entail:1,enter:[1,2],entir:[1,2],entiti:1,entri:[1,2],epi:[1,2],epi_nam:[1,2],epoch:1,eprim:1,equal:[1,2],equat:1,equival:1,erase_and_displai:1,erase_str:1,eraseblob:1,erdf:1,err:1,errbar_width:1,error:[1,2],error_r:1,error_typ:1,errorbar:1,errorbar_horizont:1,errorbar_width:1,errorbarseri:1,errordata:1,errormatrix:1,errorwidth:1,errval:1,escapedstr:1,escapeforshel:1,esim:1,ess:1,essenti:[1,2],est:1,establish:1,estim:[1,2],estimateparam:1,etc:[1,2],euclidean:1,eval:1,evalu:1,even:[1,2],evenli:1,event:[1,2],event_level:1,event_pain_onli:1,eventdesign:1,eventmean:1,eventnam:1,events_onli:[1,2],ever:1,everi:[1,2],everyth:[1,2],everywher:1,evtonset:1,ewma3:1,ewma5:1,ewma:1,ewma_var:1,ewma_z:1,exact:1,exactli:1,examin:1,exampl:[1,2],example1:1,example2:1,example3:1,example4:1,example_barwani:1,example_pi:1,example_plot:1,examplev:1,exce:1,excel:1,excelfilenam:1,except:1,exclud:[1,2],exclus:1,execut:1,exist:[1,2],existing_ax:1,existingfig:1,exit:1,exp0:1,exp1:1,exp2:1,exp3:1,exp:[1,2],exp_dat:1,exp_tim:1,exp_vs_percept:1,expand:1,expand_4d_filenam:1,expect:[1,2],experi:[1,2],experimentfilenam:1,experment:[1,2],expfun:1,explain:[1,2],explan:1,explicit:1,explicitli:1,explod:1,expon:1,exponenti:1,expr:1,express:[1,2],expt:[1,2],exptm:[1,2],ext:1,extend:1,extended_output_flag:1,extens:[1,2],extent:1,extent_thresh:1,extern:1,extr:1,extra:1,extract:[1,2],extract_contrast_data:1,extract_data:1,extract_dxbeta_data:1,extract_from_roi:1,extract_gray_white_csf:1,extract_image_data:1,extract_ind_peak:1,extract_indiv_peak_data:1,extract_mask:1,extract_raw_data:1,extract_roi:1,extract_roi_averag:1,extrem:1,f_cols_of_interest:1,f_ix0:1,f_test_full_vs_r:1,f_test_no_intercept:1,face:1,facealpha:[1,2],facecolor:1,facevertexcdata:1,facilit:1,fact:[1,2],factor:[1,2],factoran:1,fail:1,fairli:1,fake:1,fall:1,fals:[1,2],fashion:1,fast:[1,2],fast_conv_fft:1,faster:1,fastest:1,fastmontag:1,fault:1,fda:1,fdr:1,fdrp:1,fdrsig:1,fdrthresh:1,featur:1,feb:1,few:1,fewer:[1,2],fft:[1,2],fft_calc:[1,2],fft_plot_scnlab:1,fgh:1,fhan:1,fhandl:1,fhwm:1,fid:1,field:[1,2],field_skip:1,fieldnam:1,fieldpath:1,fifth:1,fig:1,fig_han:1,fig_handl:1,figh:1,figur:[1,2],figure_galleri:1,figuresa:[1,2],file:[1,2],file_arrai:1,file_list:1,file_wcard:[1,2],filenam:[1,2],filename_get_new_root_dir:1,filename_tool:[],filenames_or_v:1,files_exist:1,filesep:1,fill:[1,2],fill_area_around_point:1,fill_handl:1,fillh:1,filt:1,filter:[1,2],filteradjust:1,filtertyp:1,find:[1,2],findobj:1,fine:1,finish:[1,2],fir2htw2:1,fir:[1,2],fir_fil:1,fircondit:1,firnam:1,first:[1,2],first_lev_var:1,first_vol:1,firstimg:1,fisher:1,fisherp:1,fisherz:1,fit:[1,2],fit_and_averag:1,fit_canonical_hrf:[1,2],fit_gl:1,fit_gls_brain:1,fit_logit2:[1,2],fit_logit:[1,2],fit_sfir:[1,2],fitlin:1,fitting_fun:1,fitx:1,fix:1,fixed_input:1,fixed_inputs1:1,fixed_tsu:1,fixin:1,fklsf:[],flag:[1,2],flat:1,flatdat:1,flatten:1,fleiss:1,flexibl:1,flip:1,flip_endian:1,flipi:1,float32:1,float64:1,fly:1,fmri:[1,2],fmri_dat:1,fmri_data:[],fmri_data_obj:1,fmri_data_object:1,fmri_fil:[1,2],fmri_imag:1,fmri_mask_imag:[],fmri_mask_thresh:[],fmri_mask_thresh_canlab:[1,2],fmri_model:[],fmri_model_obj:1,fmri_obj_imag:1,fmri_spline_basi:1,fmri_timeseri:[],fmridat:1,fmridat_obj:1,fmridisp:1,fmridisplai:[],fmridisplay_helper_funct:[],fmristat:[],fname:1,fob:1,fold:1,folder:1,follow:[1,2],font:1,fontsiz:1,foo:1,forc:1,force_delta:1,forcenam:1,forcesup:1,form:1,format:[1,2],formula:[1,2],forward:1,found:[1,2],found_path:1,foundat:[],four:1,fourier:1,fouriernotch:1,foursurfac:1,fout:[1,2],fout_1:[1,2],fov:1,fpr:1,fprintf:1,frackowiak:1,fraction:[1,2],frame:1,fread:1,free:1,freedom:[1,2],freehand:1,freq2:1,freq:[1,2],frequenc:[1,2],friedman:[],friston:1,frith:1,from:[1,2],from_multireg:[1,2],frontal:1,frustrat:1,fsl:[1,2],fsl_output_typ:1,fsloutputtyp:1,fter:[],full:[1,2],full_model_gv_p_v_np:1,full_path_of_movie_output_fil:1,fullfil:[1,2],fulli:1,fullpath:1,function_cal:1,function_handl:1,function_nam:1,functional_mask:1,functionnam:1,funhan:[],funhandl:1,funki:1,funnam:1,funtion:1,furnish:[],further:1,futur:1,fval:1,fwe:1,fwhm:[1,2],ga_example_script:[1,2],galleri:1,gambl:1,gamma:1,gamrnd:1,ganglia:1,garson:1,gauss:1,gaussian:[1,2],gaussian_mix:1,gca:1,gcf:1,geisser:1,genconverg:1,gener:[1,2],generalis:1,genet:1,genetic_algorithm_readm:[1,2],genfun:1,gensiz:1,geom2d:1,get:[1,2],get_ax_slic:1,get_cluster_volum:1,get_condition_assign:1,get_filenam:[1,2],get_filename2:[1,2],get_first_help_lin:1,get_from:1,get_htw_image_nam:1,get_logit:[1,2],get_mask_vol:1,get_max_t:1,get_parameters2:[1,2],get_session_x:1,get_snr:1,get_var:1,get_wh_imag:1,getappdata:1,getclust:1,getdata:1,getfigclust:1,getfrom:1,getfullpath:1,getfunctnames2:1,getmeanqu:1,getpredictor:1,getrandom:1,getvertexcolor:1,getvif:[],ghost:[1,2],gianaro:1,gindx:1,git:[],github:[],give:[1,2],given:[1,2],glass:1,glassbrain_avi:1,glm:[1,2],glm_batch_tool:[],glm_multilevel:1,glmax:1,glmfit:1,glmfit_gener:1,glmfit_multilevel:1,glmfit_multilevel_varexplain:1,glmin:1,global:[1,2],global_t1:[1,2],globu:1,gm_mask:1,gnu:[],goal:1,goe:1,gone:1,good:[1,2],got:1,gouraud:1,gov:1,gradient:[1,2],grai:[1,2],grand:[1,2],grant:[],graph:1,graphic:1,graymask:1,graymatt:1,grayscal:1,great:1,greater:1,greatest:1,green:1,greenhous:1,grei:1,grid:[1,2],gridlinestyl:1,grname:[],gross:[1,2],group:[1,2],group_analys:1,group_anxiety_n35:[1,2],group_avg:1,group_avg_ref_lin:1,group_n35:[1,2],group_sadness_n35:[1,2],group_st:1,groupbi:1,groupmean:[1,2],groupspac:1,grow:1,grp:[1,2],grpcontrast:1,grpmean:1,grpmodeldir:[1,2],grpste:1,gtrim:[1,2],guess:1,gui:1,guid:1,guilt:1,guilti:1,h25_aerger:1,h_by_mod:1,h_mean:1,hair:1,half:[1,2],halfh:1,han:1,handl:[1,2],handle_numb:1,happen:1,hard:[1,2],hardcopi:1,harvei:1,has_header_row:1,hasti:[],hat:1,have:[0,1,2],haxaxi:1,haxfront:1,haxi:1,haxis3d:1,haxsagl:1,haxsagr:1,hchoic:1,hcmp:1,hconstraint:1,hdr:1,hdrf:[1,2],hdvabakjsbdakjsbdkajsdbakjskl:[],head3d:1,head:[1,2],header:[1,2],header_col:1,headernam:1,headhandl:1,heart:[1,2],heat:1,heat_trial:1,heatmap:1,heavili:[1,2],height:[1,2],height_mask:1,heighteq:1,heightp:1,heightthresh:1,help:[1,2],helper:1,helptext:1,hem:1,hemispher:[1,2],hemodynam:[1,2],henc:1,here:[1,2],herebi:[],hernandez:1,hewma2:1,hewma2_plot:1,hewma:1,hewma_cp:1,hewma_extract_voxel:1,hewma_from_raw_timeseri:1,hewma_gui:1,hewma_plot_bivari:1,hewma_plot_coord_btnupfcn:1,hewma_plot_cpmap:1,hewma_plot_runlen:1,hewma_runlen:1,hewma_save_timeseri:1,hewma_timeseri:1,hewma_timeseries_plot:1,hewma_util:[],hfig3d:1,hfigleg:1,hfigmain:1,hh1:1,hh2:1,hh3:1,hh_mm:1,hicolor:1,hidese:1,hierarch:1,high:[1,2],high_r:1,higher:[1,2],highest:[1,2],highli:[1,2],highlow:1,hightim:1,hill:1,hipp:1,hippocampu:1,hire:1,hist2:[1,2],hist:1,hist_un0:1,histogram:[1,2],histori:1,history_descrip:1,hit:1,hlight:1,hlm:1,hmhrfest:[1,2],hoc:1,hochberg:1,hold:[1,2],holder:[],holdout:1,holdout_set:1,hole:1,hole_s:1,holm:1,hope:[],hopefulli:[],horiz:1,horizont:[1,2],horribl:1,horzcat:1,hot:1,hotel:1,hotopen:1,how:[1,2],howev:[1,2],howto:1,hp_length:1,hparam:1,hpatch:1,hpf:1,hpfilter:1,hplen:1,hplength:1,hr_intercept:1,hrf:[1,2],hrf_est_toolbox2:[],hrf_fit:1,hrf_fit_one_voxel:[1,2],hrf_obj:1,hrf_satur:1,hrf_timecourse_cond0001:1,hrf_timecourse_cond0002:1,ht00_inst:1,hthreshold:1,html:[1,2],html_output:[1,2],html_save_dir:[1,2],http:1,htw:1,htw_from_fit:1,hubert:1,huge:1,human:1,hump:1,hvblock:1,hyndsight:1,hyper:[],hyperellipsoid:1,hyperparamet:1,hyperplan:1,hypothalamu:1,hypothesi:1,ica:1,icadat:1,icasig:1,icbm:1,icbm_area74:1,icbm_brainonly_1mm_seg1:1,icbm_loc:1,icc:1,iccvalu:1,id_numb:1,idata:1,idd:1,idea:1,ideal:1,ideal_deconv5:1,ideal_deconv6:1,ident:1,identifi:[1,2],idx:1,igl:1,igls_multicond:1,ignor:[1,2],ignore_miss:1,ihb_axes3dmenuclusteronli:1,ihb_axes3dmenuwholebrain:1,ihb_axestalspace3d:1,ihb_changetalvoxs:1,ihb_clr_axi:1,ihb_clr_front:1,ihb_clr_orig:1,ihb_clr_saggit:1,ihb_clr_surfac:1,ihb_clr_symm:1,ihb_clusterlevelprob:1,ihb_clusterpopup:1,ihb_cntaxi:1,ihb_cntfront:1,ihb_cntsagittal:1,ihb_cntsagittalr:1,ihb_cursorcoord:1,ihb_getclust:1,ihb_getclusterset:1,ihb_lighttalspace3d:1,ihb_lineorigin:1,ihb_linesymmetr:1,ihb_linewidthmenunorm:1,ihb_linewidthmenuthick:1,ihb_linewidthmenuthin:1,ihb_loadslic:1,ihb_renderermenuopengl:1,ihb_renderermenuzbuff:1,ihb_resetdefault:1,ihb_surfaceclust:1,ihb_talspac:1,ihb_talspace3d_fig:1,ihb_talspacedfl:1,ihb_talspaceleg_fig:1,ihb_talspacemain_fig:1,ihb_transparencymenu:1,ihb_transparencymenuhigh:1,ihb_transparencymenulow:1,ihb_transparencymenumedium:1,ihb_transparencymenuopaqu:1,ihb_volumeinvox:1,ihb_voxellevelprob:1,ihb_voxsizemenu111:1,ihb_voxsizemenu222:1,ihb_voxsizemenu444:1,ihbdfl_ax_info:1,ihbdfl_baxesisclusteronli:1,ihbdfl_color_clorig:1,ihbdfl_color_clsymm:1,ihbdfl_color_cntax:1,ihbdfl_color_cntfr:1,ihbdfl_color_cntsag:1,ihbdfl_color_surfac:1,ihbdfl_fr_info:1,ihbdfl_line_width:1,ihbdfl_main_gap:1,ihbdfl_main_height:1,ihbdfl_main_i:1,ihbdfl_main_info_h:1,ihbdfl_main_width:1,ihbdfl_main_x:1,ihbdfl_main_z:1,ihbdfl_min_size_to_draw:1,ihbdfl_render:1,ihbdfl_sl_info:1,ihbdfl_spm_fig_conman:1,ihbdfl_spm_fig_interact:1,ihbdfl_spm_fig_selfilewin:1,ihbdfl_sr_info:1,ihbdfl_tal_x_vox:1,ihbdfl_tal_y_vox:1,ihbdfl_tal_z_vox:1,ihbdfl_transpar:1,ihbdfl_xlimd:1,ihbdfl_xlimi:1,ihbdfl_ylimd:1,ihbdfl_ylimi:1,ihbdfl_zlimd:1,ihbdfl_zlimi:1,iimg_check_indx:1,iimg_check_volinfo:1,iimg_cluster_ext:1,iimg_cluster_index:1,iimg_cluster_intersect:1,iimg_cluster_prun:1,iimg_clusters2indx:1,iimg_data:1,iimg_get_data:1,iimg_indx2clust:[1,2],iimg_indx2contiguousxyz:1,iimg_intersect:1,iimg_make_sure_indx:1,iimg_mask:1,iimg_multi_threshold:1,iimg_nam:1,iimg_princomp:1,iimg_princomp_displai:1,iimg_read_img:1,iimg_read_vol:1,iimg_reconstruct_3dvol:1,iimg_reconstruct_vol:1,iimg_reslic:1,iimg_smooth_3d:1,iimg_sphere_timeseri:1,iimg_stouff:1,iimg_threshold:1,iimg_weighted_ttest:1,iimg_write_imag:1,iimg_xxx:1,iimg_xyz2indx:1,iimg_xyz2spher:1,illustr:[],ilogit:[1,2],im_fil:1,ima:[1,2],imag:[1,2],image2clust:1,image2coordin:1,image_computation_tool:[],image_eval_funct:1,image_eval_function_multisubj:1,image_histogram1d:1,image_histogram:1,image_indx:1,image_intensity_histogram:[1,2],image_list:1,image_math:1,image_nam:1,image_obj:1,image_object:1,image_scatterplot:1,image_similarity_plot:1,image_similarity_plot_bucknermap:1,image_skip_interv:1,image_space_tool:[],image_threshold:[],image_vector:[],imageclust:1,imagecluster_block:1,imagelist:1,imagenam:1,images_per_sess:1,imagesc:[1,2],imcalc:1,imdat:1,imfilenam:[1,2],img1:1,img2:1,img2surf:1,img2voxel:1,img:[1,2],img_fil:1,img_hist2:[1,2],img_hist:[1,2],img_nam:1,imgdat:1,imgdata:1,imgfil:[1,2],imginfo:1,imgnam:[1,2],imgs2:1,imgs_to_extract_from:1,imgtyp:1,imgvec:1,immedi:[1,2],imnam:[1,2],imp:1,impact:1,implement:[1,2],impli:1,implicit:[1,2],implicit_mask:[1,2],implicit_masking_method:[1,2],implicitli:1,implict:[1,2],implied_dissim:1,implod:1,importantli:[1,2],importdata:1,impos:1,improv:[1,2],impuls:1,imput:1,imraw_data:1,imtr:1,in1:1,in2:1,in_mask_logical_vector:[1,2],inc:1,incis:1,includ:[1,2],includezero:[1,2],inclus:[1,2],incompat:1,inconsist:1,incorpor:1,incorrect:[],increas:1,increment:1,ind2:1,ind2sub:[1,2],ind:1,indclustertoview:1,indeo5:1,indepen:[1,2],independ:1,indepnd:1,index:[0,1],index_image_manip_tool:[],indiv:1,indiv_timeseri:1,individu:[1,2],indlin:1,indscal:1,indscalf:1,indx:1,ineffici:1,inequ:1,inf:1,infer:[1,2],inference_opt:1,inferenti:1,inferior:1,infin:1,infinit:1,inflat:[1,2],influenc:[1,2],info:[1,2],inform:[1,2],infostr:1,inhib2_cluster_barplot:1,inhib:1,inhomogen:[1,2],ini:[],init:1,initi:[1,2],inlin:1,inmask:[1,2],inmaskvox:[1,2],innaccur:1,innam:1,inner:1,inpoint:1,inpress_2007_emotion_handbook_2006:1,input:[1,2],input_activ:1,input_threshold:1,input_v:1,input_valu:1,inputarg:1,inputhrf:1,inputimg:[1,2],inputmean:1,inputopt:1,insert:1,insid:1,instabl:[],instal:[],instanc:1,instead:[1,2],insula_from_part1:1,int16:1,int32:1,int_dat:1,intcpt:1,integ:[1,2],integr:[1,2],intellig:1,intend:1,intens:[1,2],intensity_threshold:1,intepret:1,inter:1,interact:1,interacti:1,intercept:[1,2],intercept_model:1,interconnect:1,intercorrel:1,interest:[1,2],intermedi:1,intern:[1,2],interp3:1,interp:1,interp_imag:1,interp_method:1,interpol:1,interpret:[1,2],interquartil:1,interrog:1,intersct:1,intersect001:1,intersect:1,intersect_cl:1,interv:1,intext2:[1,2],intext_countloc:[1,2],intraclass:1,intrins:1,introduc:1,introductori:1,inv:1,invalid:[1,2],invar:1,invers:[1,2],invert:1,invis:1,invok:1,involv:1,invp:[1,2],invpview:[1,2],ipython:[],iqrmult:1,irl:1,irrelev:1,isconverg:1,isdiff:1,isdir:1,isfield:1,ishot:1,isi:1,isn:1,isnan:1,isnul:1,isocap:1,isocapshandl:1,isok:[],isosurfac:1,isosurfacehandl:1,ispain:1,isspmclust:1,issu:1,item:1,iter:1,ith:1,itself:1,iub:[],ivec:1,ivecobj:1,ivoldat3d:1,ix0:1,iyfj:[],jackson:1,jamil:1,jare:[],jet:1,job:[1,2],john:1,johnson:1,join:1,joint:[1,2],joint_hist:[1,2],jolliff:1,journal:1,judg:1,juli:[],jump:1,june:1,just:[1,2],kcl:1,kdensiti:1,keep:1,keep_exist:[1,2],keepdt:1,keepit:1,keepzero:1,keepzerosmask:1,kei:[1,2],keith:1,kendal:1,kendalla:1,kendallb:1,kern_siz:1,kernel:[1,2],kernels:1,kevin:1,keyword:[1,2],kind:1,knot:1,knotrat:1,know:1,known:1,kragel:1,kragelemot:1,kramer:1,kreyszig:1,kruskal:1,krzanowski:1,ksdensiti:1,ktotalv:[1,2],kurtosi:[1,2],kxi:1,l2_covt:1,l2m:1,lab:1,labar:1,labdata:1,label:[1,2],label_group:1,label_mask:1,labl:1,laboratori:1,lag:1,lam:1,lambda:1,larg:1,larger:1,largest:1,largest_region:1,lasso:1,lasso_cv:[],lasso_num:1,lasso_rocha:[],lassoglm:1,lassopcr:1,lasspcrmatlab:[],last:[1,2],latenc:1,latent:1,later:1,latest:1,layout:1,lazar:1,lbpa40:1,lchoic:1,lcl:1,lead:1,leaf:1,learn:[],least:1,leav:[1,2],lebesgu:1,left:[1,2],legaci:1,legend:1,legland:1,legmat:1,len:1,length:[1,2],lengthlegend:1,lenmat:1,less:1,let:1,letter:[1,2],lev:1,level:[1,2],levonp:1,lew:1,liabil:[],liabl:[],liber:1,librari:1,licens:[],life:1,light:1,lightangl:1,lightfollowview:1,lightrestoresingl:1,like:[1,2],likelihood:1,likeratio:1,limbic:1,limit:[1,2],lindetrend:1,lindquist:[1,2],line:[0,1,2],line_handl:1,line_plot_multisubject:1,linear:[1,2],linear_detrend:1,linear_trend:1,linearli:1,linearpain:1,linebar:1,linecolor:1,lineh:1,linehx:1,linemat:1,lineplot:1,lineplot_column:1,linespec:1,linestyl:1,linethick:1,linewidth:1,link:[1,2],linkag:1,linkage_t:1,linkagetyp:1,linkfun:1,linktyp:1,list:[1,2],littl:[1,2],live:[1,2],load:[1,2],loadimg:1,local:1,locat:[1,2],locflag:1,loess:1,loess_multilevel:1,loess_parti:1,loess_xi:1,loessord:1,loftu:1,log:1,log_joint:1,logic:1,logist:[1,2],logit:[1,2],loh:[1,2],london:1,longer:1,longest:1,look:[1,2],loop:1,lose:[],loss:[1,2],lot:1,lotim:1,low:1,lowcolor:1,lower:[1,2],lowest:1,lparam:1,lpf:1,lsqisoton:1,lui:1,luisfilt:1,luk:[],luka:[],luke:1,luna:1,m_pval:1,mac:1,machin:1,macmillan:1,macosx_10:1,mad:[1,2],made:1,madlimit:1,mag:1,magenta:1,magic:1,magnitud:[1,2],magnu:1,mahalanobi:[1,2],mai:[1,2],main:1,mainli:1,major:1,make3davi:1,make3davi_uncompress:1,make:[1,2],make_conv_mtx:[1,2],make_figure_into_orthview:1,make_htw_contrast_imag:1,makebinari:1,makefig:1,makelegend:1,malanobi:[1,2],malform:1,man:1,mandatori:1,mani:[0,1,2],manual:[],map:[1,2],map_data_to_colormap:1,map_to_image_spac:1,map_to_world_spac:1,mapnam:1,march:1,mark:1,marker:1,markercol:1,markerfacecolor:1,markers:1,markerstyl:1,markertyp:1,markov:1,martin:[],mask1:1,mask2:1,mask2clust:1,mask2struct:1,mask2surfac:1,mask2voxel:[1,2],mask3:1,mask:[1,2],mask_all_valid:1,mask_char_nam:1,mask_cl:1,mask_clust:1,mask_create_from_image_set:1,mask_create_results_mask:1,mask_fish:1,mask_imag:1,mask_intersect:1,mask_intersection2:1,mask_nam:[1,2],mask_princomp:1,mask_stouff:1,mask_thresh:[1,2],mask_union:1,mask_vol:1,mask_xyzlist:1,maskclu:1,maskdim:1,maskdir:[1,2],masked_dat:1,masked_indx:1,masked_indx_data:1,masked_t:1,masked_vol:1,maskfil:[1,2],maskfilenam:[1,2],maskimag:[1,2],maskimg:1,maskindx:1,maskinfo:1,masknam:[1,2],maskobj:1,maskstat:[1,2],maskvec:1,maskz:1,mass:1,masson:1,mat1:1,mat2:1,mat:[1,2],match:[1,2],matchto:1,materi:1,mathemat:1,matlab2010a:[],matlab:[0,1,2],matlabr12toolboxmatlabdatatypessqueez:1,matric:[1,2],matrix:[1,2],matrix_direct_effect:1,matrix_direct_effects_ridg:1,matrix_eval_funct:1,matrixm:1,matter:[1,2],matthew:1,max95est:1,max:[1,2],max_network:1,max_shift:1,maxalpha:1,maxclust:1,maxcolor:1,maxim:1,maxima:1,maximg:1,maximum:[1,2],maximumum:1,maxiter:1,maxlik:1,maxlin:1,maxmask:1,maxmem:1,maxr:1,maxrow:[1,2],maxslic:1,maxt:1,maxtim:1,mc_setup:1,mcd:1,mcgraw:1,mclellan:1,mcol:1,mcr:1,mdsfig:1,mdsfig_3d:1,mea_visualis:1,mean:[1,2],mean_func_fil:[1,2],mean_gray_matter_mask:1,mean_imag:1,mean_ravol:1,mean_snr:[1,2],mean_spikes_per_imag:[1,2],meanabserr:1,meandat:1,meanest:1,meaning:1,means_for_unique_i:1,meantim:[],measur:[1,2],med:1,medc:1,media:1,medial:1,median:1,mediap:1,mediat:1,mediated_mtx:1,mediation_brain_result:1,mediation_brain_surface_fig:1,mediation_setup:1,mediation_xprepvsb_mbrain_yhr:1,mediodors:1,medium:1,meet:1,member:1,membership:1,memori:[1,2],meng:[],menu:1,merchant:[],merg:1,merge_clust:1,merge_nearby_clust:1,mesg:1,mesh:1,meshgrid:1,mess:1,messag:1,met:1,meta:1,meta_cluster_tool:1,meta_stochastic_activation_blob:1,meth:1,method:[1,2],method_nam:1,metric:[1,2],mia:1,michigan:[],microsoft:1,midbrain:1,midcolor1:1,midcolor2:1,midcolor:1,middl:1,might:1,milimet:1,millimet:1,mimic:1,min95est:1,min:1,min_cluster_s:1,min_dist:1,mincolor:1,mind:1,mind_res_net_fmri_course_2008:[1,2],minh:1,minim:[1,2],minimg:1,minimum:1,minimum_cluster_s:[1,2],minmask:1,minor:[],minsiz:1,minu:1,minut:[],mirror:1,misc_util:[],miscellan:[],misclass:1,misclassif:1,misclassifi:1,mismodel:[1,2],miss:[1,2],missing_imag:[1,2],missing_valu:[1,2],missing_vox:[1,2],mistak:[],mix:1,mixedsig:1,mixtur:1,mm2voxel:1,mm_center:1,mm_distanc:1,mmdeep:1,mni2tal:1,mni:1,mni_tsu:1,mod:1,modal:1,moddf:[1,2],mode:[1,2],model1:[1,2],model3:[1,2],model:[1,2],model_building_tool:[],modeldir:[1,2],modfit:[1,2],modif:[],modifi:1,modifiedconv:1,modr:[1,2],modul:[0,1],modulator_cent:1,moment:[1,2],monkei:[],monotonic_regress:1,mont:1,montag:1,montage_clust:1,montage_clusters_maxslic:1,montage_clusters_medi:1,montage_clusters_point:1,montage_clusters_text2:1,montage_clusters_text:1,montage_image_worslei:1,montagetyp:1,more:[1,2],most:[1,2],motion:[1,2],mous:1,mov:1,move:1,movement:[1,2],movement_param:[1,2],moveslic:1,movi:1,movie_of_slice_timeseri:1,movie_output_fil:1,movie_stillfram:1,movienam:1,moving_averag:1,mri1:1,mri_data:1,ms_cond:1,ms_subject:1,ms_total:1,msb:1,msdb:1,msdstd:1,mse:1,msk:1,mspec:1,mtotalv:[1,2],mtx:1,much:[1,2],muck:[],mueller:1,multcomp_group:1,multcomp_spati:1,multcompar:1,multi:[1,2],multi_threshold:1,multiclass:1,multicolinear:[1,2],multicollinear:[],multidimension:1,multilev_medi:1,multilevel:1,multipl:[1,2],multipli:[1,2],multireg:[1,2],multivar_dist:[1,2],multivari:[1,2],multval:1,must:[1,2],mutipl:1,mutual:[1,2],mv_distanc:[1,2],mvarnam:1,mvmt:[1,2],mvmt_baseline_rsquar:1,mvmt_rsquar:1,mvmtrsq:1,mvnrnd:1,mvroi:1,mvroi_mdsfig_plot2:1,mvroi_mdsfig_plot_sepst:1,mvroi_mdsfig_plugin2:1,mvroi_mdsfig_plugint2:1,mvroi_plot_fir:1,mx1:1,mxc:1,my_function_nam:1,my_image_nam:1,my_image_vector:1,my_mean_imag:1,my_mm_coord:1,my_model:1,my_on:1,my_rgb_color:1,my_st:1,mya:1,myalpha:1,mycol:1,mycolor:1,mycon:1,mycov:1,mydelimit:1,mydir:[1,2],myfft2:1,myfft:[1,2],myfield1:1,myfield2:1,myfield:1,myfil:1,myimag:1,myimg:1,mylight:1,mymontag:1,myoutnam:1,myradiu:1,mysavedir:1,myset:1,mystd:[1,2],mytext:1,myview:1,myz:[1,2],n15_avgpet:1,n15_avgpet_brain:1,n_bin:1,n_condit:1,n_in_column:1,n_in_sampl:1,n_in_set:1,n_inmask:1,naiv:1,name1:1,name2:1,name:[1,2],names_t1:[1,2],namesfield:1,nan:[1,2],nancorr:[],naninsert:1,nanmean:1,nanremov:1,nanstd:1,nanvec:1,natur:1,nbasi:[1,2],nbin:[1,2],nboot:1,ncl:1,nclass:1,ncond:1,ncondit:1,ndim:1,nearest:1,nearest_dist:[],necessari:[1,2],necessarili:1,need:[1,2],needless:1,neg:1,neg_colormap:1,negcl:1,negcm:1,negcolor:1,negneg:1,negpo:1,neighbor:1,neighbour:1,neither:[1,2],nest:1,net:1,nets:[],network:1,neural:1,neuroimag:1,neurolog:1,neurosynth:[],nevent:1,new_fil:1,new_sampr:1,new_str:1,new_struct:1,new_var:1,new_voxs:1,newax:1,newcl:1,newcolormap:1,newdat:1,newfig:1,newroot:1,newvx:[],next:[1,2],nfold:1,nheaderrow:1,nibabel:[],nice:1,nichol:1,nifit:1,nifti:[1,2],nigra:1,nih:1,nii:[1,2],nimag:1,nimg:1,nimh:1,niter:1,nkx:1,nlcon:1,nlevel:1,nmb:1,nmd:1,nmdsfig1d:1,nmdsfig:1,nmdsfig_fil:1,nmdsfig_legend:1,nmdsfig_output:1,nmdsfig_tool:1,nneed:1,nnhe:[1,2],nnmfscore:[1,2],no_preproc:1,no_surfac:1,noampscal:1,nobin:1,noblob:1,noboot:1,nodb:1,node:1,nodelet:[1,2],nodisplai:1,nodraw:1,nofig:1,nofigur:1,nofil:1,nofuzzi:1,nograph:1,nohead:[1,2],nohtw:1,noind:1,noint:1,nointercept:1,nois:[1,2],noise_arp:1,noisemodel:1,noisevar:1,noisevector:1,nolin:1,nolink:[1,2],noll:1,nomin:1,nomontag:1,non:[1,2],none:1,nonempti:1,noninfring:[],nonlin_fit:1,nonlin_param_mod_brain:1,nonlin_param_modul:1,nonlin_parammod_predfun:1,nonlinear:1,nonneg:1,nonnoc_v6_109subjmap_mean:1,nonorm:1,nonormfit:1,nonparametr:1,nonrobust:1,nonstationari:1,nonzero:1,noopt:1,noorthview:1,nooutlin:1,nooutput:1,nooverlap:1,nopcr:1,noplot:[1,2],nopoint:1,nopreproc:1,noprint:1,nor:[1,2],norder:[1,2],noremov:1,noreshap:1,noresidu:1,noresult:[1,2],noreview:[1,2],norm:[1,2],norm_check:[1,2],norm_mask:1,norm_vs_templ:[1,2],normal:[1,2],normaldir:1,normalizedrank:[],norminv:1,normrnd:1,nosep:1,noslic:1,nosmooth:1,nostar:1,notabl:1,notch:1,note:[1,2],notebook:[],notext:1,notfil:1,noth:[1,2],notic:[],notif:[1,2],notx_p05:1,noundershoot:1,nout:1,nov:[],novel_stimuli_run1:[1,2],novel_stimuli_run2:[1,2],noverbos:[1,2],noviolin:1,now:[1,2],nperm:1,nps_by_studi:1,nps_thresh:1,nps_thresh_smooth:1,nrep:1,nresampl:1,nrm:1,nrun:1,nscalped_f:[1,2],nscalped_ft1:[1,2],nscan:1,nsess:[1,2],nsf2:[],nsf:[1,2],nsub:1,nsubj:1,nsubject:1,nterm:1,ntest:1,nth:[1,2],ntotalprocess:1,ntotalvox:1,ntrial:1,ntrim:1,nuclei:1,nucleu:1,nuisanc:[1,2],nuisance_cov:[1,2],nuisance_cov_estim:1,nuisancex:[1,2],nullmax:1,nullmaxt:1,num2str:[1,2],num:1,num_disdaq_vol:1,num_imag:[1,2],num_outli:1,num_vols_per_run:1,num_vox:1,number:[1,2],numc:1,numclust:1,numcompon:1,numer:1,numfram:1,numgen:1,numpi:[],numpiec:1,nums_from_text:1,numsecond:1,numvox:1,nvar:1,nvol:1,nvols_per_run:1,nvox:1,nvoxel:[1,2],nx1:1,nxvxt:1,obj1:1,obj2:1,obj:[1,2],obj_out:1,object:[],object_nam:1,objecthandl:1,objfun:1,objfun_ga:1,objhan:1,obji:1,objtyp:1,obs_dist:1,observ:[1,2],obsk:1,obsolet:1,obtain:1,obviat:[],obvious:[],occas:[1,2],occur:[1,2],oct:[1,2],odd:1,oddbal:[1,2],off:[1,2],offic:1,offset:1,ofilenames_or_v:1,often:[1,2],ofun:1,ohi:[],ohni:[],old:1,old_str:1,old_struct:1,old_var:1,older:1,oliv:1,ols_z_0001:1,omax:1,omin:1,omit:[1,2],ommit:1,omnibu:1,onc:[1,2],one_sample_t_test:[1,2],onecolor:1,oneinsert:1,onerow:1,onli:[1,2],onlin:[],onlycon:[1,2],onlyresult:[1,2],ono:[],onset:[1,2],onsets2:1,onsets2delta:[1,2],onsets2dx:1,onsets2fmridesign:1,onsets2parametric_mod_x:1,onsettim:[],onsp:1,onto:1,ooc:1,ooc_indic:1,ooc_vector:1,opaqu:1,open:1,opengl:1,oper:[1,2],opi:1,oppos:1,opt:1,optim:[1,2],optimize_rand_search:[1,2],optimizedesign11:[],optimizega:[1,2],optimizega_epoch:[1,2],option:[1,2],optional_input:1,optional_output:1,options_structur:1,optout:1,optstr:1,orang:1,orcutt:1,order:[1,2],ordinari:1,org:1,organ:1,orient:[],orig_cluster_indx:[],orig_sampr:1,orighz:1,origin:[1,2],ortho:[1,2],orthogon:[1,2],orthview:[1,2],orthviews_multiple_obj:1,osvd:1,osx:1,other:[0,1,2],other_output:1,other_output_cv:1,other_output_cv_descrip:1,other_output_descrip:1,otherwis:1,ouput:1,our:1,out:[1,2],out_nam:1,outcel:1,outcom:1,outcome_dat:1,outcome_method:1,outdata:1,outimagelabel:1,outlier:[1,2],outliers_rmssd:1,outlin:1,outlinecol:1,outlinecolor:1,outlinewidth:1,outnam:1,outp:1,outpoint:1,output:[1,2],output_basedir:[1,2],output_directori:[1,2],output_nam:1,outputdir:1,outputfil:1,outputnam:[1,2],outsid:[1,2],outside_rang:[],outtyp:[],ov_mat:1,over:[1,2],overal:[1,2],overall_sw:1,overlai:1,overlaid:[1,2],overlap:1,overlap_29_aug:1,overlapdat:1,overlayimagenam:1,overrid:1,overview:[1,2],overwrit:[1,2],overwritten:1,ovl:1,ovlcolor:1,ovlp:1,own:1,oxford:1,oxn:[1,2],p_cols_of_interest:1,p_obs_act_given_class:1,p_omnibu:1,p_sig:1,p_vs_c_heat:1,pa0_given_t:1,pa1_given_not_t:1,pa1_given_t:1,packag:[0,1],pad1:1,pad2:1,pad3:1,pad4:1,pad5:1,pad6:1,pad:1,padwithnan:1,page:[0,1,2],pagesetup:1,pain:1,pain_meta_fmridisplay_example_sagitt:1,pair:[1,2],pairwis:1,pairwise_diff:1,pakhomov:1,pallidu:1,panda:[],pane:1,panel:1,paper:1,paragraph:[],parallel:[1,2],param:[1,2],paramet:[1,2],parametr:1,parametric_singleregressor:1,parametric_standard:1,params_obj:1,parasaggit:1,parasagitt:1,parcel:1,parcel_cl:1,parcel_cl_avg:1,parcel_cl_nmd:1,parcel_cl_nmds_plot:1,parcel_clust:1,parcel_complete_set:1,parcel_imag:1,parcel_images_output:1,parcellation_info:1,parcellation_info_tor_mask_try1:1,parcellation_tool:[],parfor:1,park:1,parmet:1,parpool:1,pars:1,parse_char_to_cel:1,parse_edat_txt:1,part:[1,2],partial:1,partialr:1,particip:1,particular:1,particularli:1,partit:1,partition_variables_indevel:1,pass:[1,2],patch:1,patch_handl:1,path:[0,1,2],pathtomaskfil:[1,2],patient_id:1,patt:1,patter:[1,2],pattern:[1,2],pattern_exp_valu:1,pattern_express:1,paus:[1,2],pbn:1,pca:[1,2],pca_imag:1,pcacov:1,pcare:1,pci:1,pcitarget:1,pcl:1,pclustlev:1,pcr:1,pdf:[1,2],pdist1:1,pdist:1,peak:[1,2],peak_coordin:[],peakeq:1,pearson:1,peform:1,pemut:1,penal:1,penalti:1,per:[1,2],perc:[1,2],percent:1,percent_sig_imag:1,percentag:1,percentchang:1,percentil:1,percvarf:1,percvarp:1,perform:[1,2],period:[1,2],perm:1,permindx:1,permiss:[1,2],permit:[],permsign:1,permtest:1,permut:1,permute_setupperm:1,permute_signtest:1,person:[],perspect:1,pet:1,peter:1,pexp1:1,pexp:1,pfile:1,phase:1,phi:1,phil:1,php:1,physical_pain:1,physio:[1,2],physiolog:[1,2],pick:[1,2],pick_atlas_pal_larg:1,pid:1,pie:1,piec:1,piecewis:1,pimg1:1,pimg:1,pine:1,pinputnam:1,pinv:1,pip:[],pixel:1,pkx:1,place:[1,2],placebo:1,plai:1,plane:1,platt:1,platt_scal:1,plausibl:1,player:1,pleas:[1,2],plegend:1,plot3:1,plot3d:1,plot:[1,2],plot_correl:1,plot_correlation_samefig:1,plot_current_orthviews_coord:1,plot_dx_hrf:1,plot_dx_hrfs_indiff:1,plot_ellips:1,plot_error:1,plot_horizontal_lin:1,plot_hrf_model_fit:1,plot_ideal_deconv5:1,plot_joint_hist_contour:[1,2],plot_matrix_col:1,plot_model_fit:1,plot_points_on_slic:1,plot_var:1,plot_vertical_lin:1,plotal:1,plotdesign:1,plotfig:[1,2],plotflag:1,plothistogram:1,plotlinehor:1,plotmat:1,plotmethod:1,plotout:1,plotst:1,plotstr:1,plotsummari:1,plottitl:1,plssquash:1,plu:1,plugin:1,ply:[],pm_val:1,pmean:1,pmod:1,png:[1,2],point:[1,2],pointcolor:1,pointloc:1,pointsiz:1,polar:1,poli:1,polin:1,polygon:1,polyphas:1,pool:1,poorli:1,pop:1,popul:1,popular:1,portion:[],pos_colormap:1,poscl:1,poscm:1,poscolor:1,posit:[1,2],posneg:1,posneg_separ:1,pospo:1,possibl:1,post:1,posterior:1,potenti:[1,2],pout:[1,2],pow0:1,pow2:1,pow3:1,pow:1,power:[1,2],power_from_vari:[1,2],power_loss:[1,2],powerloss:[1,2],powerpoint:1,powloss:[1,2],pows1:1,pows2:1,ppm:1,ppv:1,practic:[1,2],prctile:1,pre:1,prealloc:[],precis:1,preclud:[1,2],pred:1,pred_outcome_r:1,predfun:1,predict:1,predict_test_suit:1,predictor:[1,2],prednam:1,predrang:1,prefer:[1,2],prefix:[1,2],preliminari:1,prep:[],prepar:1,prepend:[1,2],preproc:[1,2],preprocess:[1,2],preprocessed_dat:1,preprochandl:1,preproci:1,preprocx:1,prescrib:1,present:1,preserv:1,press:1,presum:[1,2],pretti:[1,2],prevent:1,previou:1,previous:1,prim_p:1,primari:1,primarili:[1,2],primary_p:1,princeton:1,princip:[1,2],principl:1,princomp:1,princomp_largedata:1,print:[1,2],print_matrix:1,print_summari:1,printfil:[1,2],printout:[1,2],prior:1,priori:1,priors_pt:1,privat:1,prob:1,probabl:[1,2],probe:[1,2],problem:[1,2],procedur:1,process:[1,2],produc:[1,2],product:1,profil:1,program:[1,2],programm:1,progress:1,progressbar:1,project:1,prompt:1,promt:1,prop1:1,prop:1,prop_correct:1,prop_correct_by_class:1,propcol:1,proper:1,properli:1,properti:1,property1:1,property2:1,propertynam:1,propertyvalu:1,propnam:1,proport:[1,2],propval1:1,propval2:1,prospect:1,prospect_optimize_design:1,prospect_organ:1,protect:[1,2],provid:1,prplot:1,prplot_multilevel:1,prune:1,pruneclust:1,prunese:1,psdx:1,pseudo:[1,2],pseudocolor:1,pseudoinvers:1,pso:1,pspm:1,psyc7215:[1,2],psyc_7215_fall_2010:[],psychol:1,pt_given_act0:1,pt_given_act1:1,ptask:1,ptaskcutoff:1,pthandl:1,pthresh:[1,2],ptsd:1,pub:1,publish:[1,2],publish_scn_session_spike_id:[1,2],publishedproject:1,purpl:1,purpos:[0,1,2],push:[1,2],pushbutton:1,put:[0,1,2],putamen:1,pval:[1,2],pvalthreshold:1,pvalu:[1,2],pvoxellev:1,pwd:[1,2],pxred:1,pypi:[],python:[],qc_imag:1,qc_yaml_repositori:[],qchist:[1,2],quadrat:1,qualiti:[1,2],quantifi:[],queri:[],question:1,quick:1,quickest:[],quickstart:1,quit:1,quot:1,r2009a:[1,2],r2012a:1,r2z:1,r_corr:1,racin:1,radial:1,radian:1,radiu:1,raid1:1,rais:[1,2],rand:1,randn:[1,2],random:[1,2],randomli:[1,2],randperm:1,randsampl:1,rang:[1,2],rank:1,rankdata:1,rankvoxel:1,rapca:1,raph:1,rapid:1,rarun:[1,2],rate:[1,2],rater:1,rather:1,ratio:1,ravol:[1,2],raw:[1,2],raw_data:1,rawvarf:1,rawvarp:1,rbf:1,rci:1,rcrit:1,rdiff:1,rdiff_p:1,rdiff_zscor:1,reach:1,read:[1,2],read_databas:1,read_database2:1,read_edat_output_2008:1,read_excel:1,read_from_excel:1,read_from_fil:1,read_hdr:[1,2],read_physio_data:1,read_t:[],readi:1,readim2:1,reading_data:1,readm:[1,2],real:[1,2],realclass:1,realign:[1,2],realign_fil:[1,2],realli:[1,2],reason:1,rebuild:1,rebuild_volinfo_from_dat:1,recalcul:1,receiv:1,recommend:1,recomput:1,recon:1,reconstruct:1,reconstruct_imag:1,record:[1,2],rect:1,rectangular:1,recurs:1,red:[1,2],redistribut:[],redon:[],reduc:[1,2],reduced_dimension:1,reducedi:1,reduct:1,redund:[],ref:[1,2],refactor:[],refer:[1,2],reflect:[1,2],refz:1,reg:[1,2],regardless:1,regex:1,regexprep:1,region2imagevec2tmp:1,region2imagevec:1,region2struct:1,region:[],region_idx:1,region_obj:1,regionmask:1,regist:[1,2],regress:[1,2],regress_best_subsets_ga:1,regression_output:1,regressor:[1,2],regs_per_sess:[1,2],regsofinterest:1,regular:[1,2],regularli:1,reject:1,rel:[1,2],relat:[1,2],relationship:1,releas:1,relev:1,reliabl:1,reload:1,remain:1,remap:1,remcomput:1,remi:1,remi_mean_t2:1,reml:1,remov:[1,2],remove_disdaq_vol:1,remove_empti:1,remove_mean_flag:1,removeblob:1,removed_imag:1,removed_voxel:1,removeintercept:[],removelin:1,removepoint:1,removevari:[],renam:1,rename_lowercas:1,rename_uppercas:1,render:1,render_blob:1,rendercluster_ui4:1,rendercluster_ui:1,reorder:1,repars:[],reparse_contigu:1,reparse_contingu:1,repeat:1,repeated_ancova:1,repetit:[1,2],repitit:1,replac:[1,2],replace_basis_set:1,replace_empti:1,replic:1,repmat:1,report:[1,2],report_predictor:1,reportmod_model:1,repositori:1,repres:[1,2],represent:1,request:1,requir:[1,2],res1:1,res2:1,res3:1,res4:1,res4d:1,res5:1,resampl:[1,2],resample_scnlab:1,resample_spac:1,resample_tim:1,resample_to_image_spac:1,resampled_dat:1,rescal:1,resel:1,reserv:1,reset:[1,2],reset_spmcfg:[1,2],reshap:1,resi_:1,resid:1,resid_full_model:1,residscan:[1,2],residu:[1,2],residual_imag:1,reslic:[1,2],reslice_img:[1,2],resliced_mask:1,reslicedimg:1,reslicethi:1,resm:1,resolut:[1,2],resort:1,resp:1,respect:[1,2],respir:[1,2],respons:[1,2],resss:1,rest:[1,2],restim:[],restrict:1,result:[1,2],results_imag:1,results_obj:1,results_searchlight_1_p_dat11:1,results_searchlight_1_r_dat11:1,results_searchlight_2_acc_dat11:1,results_searchlight_2_p_dat11:1,results_searchlight_2_se_dat11:1,results_searchlight_2_thr_dat11:1,results_searchlight_:1,resum:1,retain:1,retriev:1,return_beta:1,revers:1,reverse_mask:1,revis:[],revisit:1,revx:1,rewrot:[],rfx0009:1,rfx0011:1,rfx0013:1,rfx0015:1,rfx0017:1,rfx:1,rgb:1,rgblist:1,rgex:1,rho:[1,2],rid:1,ridg:1,right:[1,2],rightsurfac:1,rint:1,risk:1,rmanova2:1,rms_successive_diff:[1,2],rms_successive_diffs_inhomogen:[1,2],rmsd:1,rmse:1,rng:[],rngarrai:1,rnnhet1spgr_seg1:[],rnnhet1spgr_seg3:[],rob:1,rob_p_0001:1,rob_pmap_ful:1,rob_tmap_0001:1,rob_tmap_0001_filt_t_3:1,rob_tmap_0002:1,rob_tmap_0002_filt_t_3:1,rob_tmap_0003:1,rob_tmap_filtered_0001:1,rob_tmap_filtered_0002:1,robfit:[1,2],robfit_group_level_directori:[1,2],robfit_results_batch:[1,2],robfitdir:[1,2],robjhyndman:1,robust0001:[1,2],robust0001_poscl:1,robust0002_poscl:1,robust0003_poscl:1,robust:[1,2],robust_opt:1,robust_reg_pool:1,robust_results_act_plus_corr:1,robust_results_batch:[1,2],robust_results_batch_script:1,robust_results_threshold:1,robustcsvread:1,robustfit:1,roc:1,roc_boot:1,roc_calc:1,roc_plot:1,rocha:1,rocout:1,roi:[1,2],roi_contour_map:1,roi_drawing_tool:[],roi_group1:1,roi_imag:1,roi_mask:1,roi_method:1,roi_midbrain:1,roi_prob:1,roi_stn:1,roi_val:1,roimean:1,roipattern:1,roll:1,root:[1,2],rotat:[1,2],rotate_to_pca:1,rotatefactor:1,roughli:[1,2],round:1,rousseeuw:1,routin:1,row1:1,row2:1,row3:1,row:[1,2],rows_to_skip:1,rpv:1,rs2_8vs2_placebocp:1,rs2meta:1,rscalped_avg152t1_graymatter_smooth:1,rscoreplu:1,rset:1,rsj:1,rsquar:1,rsquare_calc:1,rsquare_multiple_regions_multilevel:1,rsync:[],rt_fit_brain:1,rtcenter:1,rtf:[1,2],rule:1,run03:1,run1:1,run2:1,run:[1,2],run_01:[1,2],run_col:1,runc:[1,2],ruzic:[1,2],ruzicl:[1,2],rvm:1,rvrv:1,s01:[1,2],s2between_ol:1,s2full:1,s2red:1,s_fdata:1,s_i:1,sad:1,sag:1,sagg:1,sagg_slice_movi:1,saggit:1,sagitt:1,sai:1,salientmap:1,same:[1,2],samefig:1,sampl:[1,2],sample_canlab_dataset_experiment_level:1,sample_canlab_dataset_subject:1,sample_data_nsf_studi:[],sampleto:1,sampr:[1,2],samprat:1,satterthwait:1,sattherwait:1,satur:1,save:[1,2],save_dir:1,save_plot:1,save_weight:1,savea:1,savebootweight:1,savedir:1,savedotfig:1,savefil:1,savefilenam:1,saveflag:1,savenam:1,saveplot:1,savestr:1,sc1:1,sc2:1,sca:1,scalar:[1,2],scale:[1,2],scale_imgs_by_csf:[1,2],scaledtranspar:1,scalefactor:1,scall:[],scalp:1,scalped_avg152t1_graymatt:[1,2],scalped_avg152t1_graymatter_smooth:1,scan:[1,2],scan_get_fil:1,scanadjust:1,scanlab:1,scanner:1,scannum:1,scans_per_sess:1,scansperrun:1,scanspersess:1,scatter:[1,2],scattermatrix:1,scatterplot:1,schafer:[],schema:1,schulznewcorn_regressor_demograph:1,scienc:1,scikit:[],scipi:[],scl_slope:1,scn:1,scn_component_rsquar:[1,2],scn_core_support:1,scn_export_papersetup:1,scn_get_datetim:1,scn_map_imag:1,scn_mat_conform:1,scn_resample_voxel_s:1,scn_session_spike_id:[1,2],scn_spm_choose_hpfilt:[1,2],scn_spm_design_check:[1,2],scn_spm_get_events_of_interest:[1,2],scn_standard_color:1,scn_stats_helper_funct:1,scn_write_plan:1,scnalpha:1,scnlab_filter_fmri_data:1,scnlab_norm_check3:[1,2],scnlab_norm_check:[1,2],scnlab_outlier_id:1,scnlab_pca_check1:[1,2],scnmontag:1,scolor:1,score:[1,2],scott:[],scree:1,screen:[1,2],script:[1,2],sdat:1,sdt:1,sdt_a:1,sdx:1,se_within:1,search:[0,1,2],search_struct:1,search_struct_field:1,searchlight:1,searchlight_applymask:1,searchlight_applymask_col:1,searchlight_correl:1,searchlight_disti:1,searchlight_dream:1,searchlight_dream_test:1,searchlight_results_:1,searchlight_saveresult:1,seber:1,sec2sec:[],sec2tr:[],sec:1,second:[1,2],second_level:[1,2],secondli:1,section:[1,2],see:[1,2],seed1:1,seed2:1,seed:1,seeddat:1,seedoth:1,seedself:1,seem:[1,2],seg3:[1,2],seg:1,segment:1,select:[1,2],select_one_imag:1,selective_averag:1,selective_average_group:1,selective_average_interactive_view_init:1,selectivity_cutoff:1,self:1,sell:[],sen:1,send:[1,2],sensibl:1,sensit:1,sep:1,separ:[1,2],sepplot:1,sept:1,sepval:1,sequenc:1,sergei:1,seri:[1,2],serial:1,seriesnam:1,serv:0,sesq:1,sess:1,sess_imag:[1,2],session:[1,2],session_global_percent_chang:1,session_global_z:1,session_multipl:1,session_outli:1,set:[0,1,2],setappdata:1,setcolor:1,setnam:1,sets_by_var:1,setstr:1,setup:[1,2],setupion:1,sever:1,sfir:1,sfwhm:1,shade:1,shall:[],shan:1,shape:1,share:1,sheet:[1,2],sheetnam:1,shell:1,shepardplot:1,shift:1,shift_bi:1,shift_correl:1,shift_sign:1,shift_step:1,shiftbi:1,shiftedi:1,shiftstep:1,shiftval:1,shim:[1,2],shorten:[],shorter:1,shorttitl:1,should:[0,1,2],show:[1,2],shown:1,shrankag:1,shrink:1,shrinkag:1,shrout:1,shtml:1,shuffl:[],si1:1,si2:1,sid:[],side:1,sig2:1,sig2b:[1,2],sig2wi:[1,2],sig2within:[1,2],sig:1,sigm:1,sigma2:1,sigma:1,sigmat2:1,sigmat:1,sigmat_uncorrect:1,sigmatavg:1,sigmatdif:1,sigmatneg:1,sigmoid:1,sign:[1,2],signal:[1,2],signal_hemispheric_asymmetri:[1,2],signal_rms_asymmetri:[1,2],signatur:1,signfic:1,signifi:1,signific:[1,2],significantli:1,signperm:1,signtest:1,signtest_matrix:1,sigonli:1,sigt:1,sihouett:1,sii:1,silhouett:1,silke_senders_xyz_coordin:1,silli:[],sim:[1,2],similar:[1,2],simpi:[],simpl:[1,2],simpler:1,simplest:1,simpli:[1,2],simplifi:1,simul:[1,2],sin:1,sinc:1,singl:[1,2],single_subj_t1:1,single_trial_estim:1,singleinterv:1,sinica:[1,2],size:[1,2],sizecutoff:1,sizeof_hdr:1,sizescal:1,sizethr:1,sizethresh:1,skew:[1,2],skill:1,skip:[1,2],sl_size:1,slack:1,slant:1,slate:1,slice10_timeseri:1,slice:1,slice_data:1,slice_mm:1,slice_mm_coord:1,slice_num:1,slice_rang:1,slice_vox_coord:1,slicedist:1,slicei:1,sliceindex:1,sliceinfo:1,sliceno:1,slicenumb:1,sliceord:1,slices_fig_h:1,slices_per_row:1,slicespac:1,slightli:1,slope:1,slope_p:1,slope_t:1,slow:[1,2],slower:[1,2],small:1,smaller:[1,2],smap:1,smapth:1,smartstart:1,smax:1,smin:1,smooth:[1,2],smooth_3d:1,smooth_mm:1,smooth_timeseri:1,smoothest:1,smoothlen:1,snpm0002_varsm_cov_clust:1,snpm:[1,2],snpmt_filter:1,snr:[1,2],snr_hemispheric_asymmetri:[1,2],snr_inhomogen:[1,2],snr_inhomogeneity95:[1,2],snr_rms_asymmetri:[1,2],soak:[1,2],sobol:1,social:1,soften:1,softer:1,softmax:1,softwar:[1,2],soldier:1,sole:1,solid:1,solut:[1,2],soluton:1,some:[1,2],someon:[],someth:1,sometim:1,somewhat:1,somresult:1,sorri:1,sort:[1,2],sort_by_vif:[1,2],sort_image_filenam:1,sort_nat:1,sourc:1,source_imag:1,source_time_interv:1,source_tr:1,space:[1,2],spaceto:1,span:1,spars:[1,2],spatial:[1,2],spatial_contrast:1,spatial_smooth_fwhm:1,spatio:1,spatiotemp_biomark:1,spearman:1,spec:1,special:1,specif:[1,2],specifi:[1,2],specularexpon:1,specularstrength:1,speechtask:1,speed:1,speedi:1,spersess:[1,2],spey:1,spgr:1,sphere:1,sphere_mask:1,sphere_roi_tool:1,spheric:1,spider:1,spike:[1,2],spikecorrect:1,spikesperimg:[1,2],spiral:1,spline:[1,2],spline_hrf_basi:1,splinedetrend:1,splinetrim:1,split:1,splitcolor:1,spm2:1,spm2_ami:1,spm2_hy:1,spm2canlab_dataset:1,spm5:[1,2],spm8:[1,2],spm8_colin27t1_seg:1,spm99:1,spm99b:1,spm:[1,2],spm_analysi:1,spm_check_registr:1,spm_cluster:1,spm_create_vol:1,spm_default:1,spm_desmtx:1,spm_est_smooth:1,spm_fcutil:1,spm_filter:1,spm_general_hist:[1,2],spm_get:[1,2],spm_get_bf:1,spm_get_data:1,spm_getspm:1,spm_hplength:1,spm_hrf:[1,2],spm_imag:1,spm_imcalc:1,spm_imcalc_ui:1,spm_img:1,spm_list_fil:1,spm_mat2batchinput:1,spm_max:[],spm_mireg:[1,2],spm_orthview:1,spm_orthviews_change_colormap:1,spm_orthviews_hotcool_colormap:1,spm_orthviews_name_axi:1,spm_orthviews_showposit:1,spm_orthviews_white_background:1,spm_ov_black2whit:1,spm_randfx:1,spm_read_vol:1,spm_reml:1,spm_results_dir:[1,2],spm_rfx_hist:[1,2],spm_select:1,spm_sp:1,spm_spm:1,spm_spm_bay:1,spm_spm_ui:1,spm_subject_level_directori:[1,2],spm_t2z:1,spm_vol:1,spm_write_plan:1,spm_write_vol:1,spmcfg:[1,2],spmp:[1,2],spmt:[1,2],spmt_0004:1,spmt_:[1,2],spmt_filtered_0002:1,spot:1,springer:1,sprintf:[1,2],sqrt:1,squar:[1,2],squareform:1,squeez:1,sre:[1,2],sres_n:[1,2],sse:1,stabl:1,stack:1,stage:[1,2],stand:[0,1,2],standard:[1,2],standard_stimuli_run1:[1,2],standard_stimuli_run2:[1,2],standardis:1,standardmrilight:1,star:1,start:[1,2],start_field:1,startend:1,startp:1,startslic:1,startval:1,stat:[1,2],stat_subset:1,state:1,statimg:1,stationari:1,statist:[1,2],statistic_imag:[],statistica:[1,2],statistics_imag:1,statistics_tool:[],stats1:1,stats2:1,stats_imag:1,stats_image_obj:1,stats_img:1,stats_md:1,stats_other_output_cv:1,stats_plot:1,stats_regress:1,stats_scatterplot:[1,2],stats_within:1,statsg:1,statsimg:1,std:[1,2],std_t1:[1,2],stderr:1,stdev:1,ste:1,stebeta:1,stedat:1,steiger:1,step:[1,2],stepbi:1,stephan:[],stepsiz:1,stepwis:1,stepwise_tor:1,sterr:1,stick:[1,2],still:1,stim:1,stimlength:1,stimlist:1,stimul:1,stimuli:1,stimulu:1,stmarker1:1,stn:1,stochast:[1,2],stop:1,store:1,stotalv:[1,2],stouffer:1,str2mat:[1,2],str:1,straightforward:[],strang:[1,2],stratifi:1,strcat:1,strength:1,stress:1,strfind:1,strict:1,strictli:1,string:[1,2],stringent:1,strip_git_dir:[],strip_path_dir:1,strip_svn_dir:1,strmatch:[],strongli:1,strrep_recurs:1,strtok:1,struct2yaml:[1,2],struct:[1,2],struct_strrep:1,structur:[1,2],strucur:1,strutur:1,studi:[1,2],study1:1,study_img:1,studybyroi:1,studybyset:1,studyroot:[1,2],stuff:1,style:1,styliz:1,sub:[1,2],subcl:1,subclust:1,subcluster_montag:1,subclusters_from_local_max:1,subclusters_to_chang:1,subcol:1,subcort:1,subdir:[1,2],subdirectori:[1,2],subdivid:1,subdivide_by_atla:1,subdivide_by_local_max:1,subfield:1,subfigur:1,subfold:1,subfunct:[1,2],subgroup:1,subj1:1,subj:[1,2],subj_level:1,subjdata:[1,2],subjdir:1,subjec:[],subject:[1,2],subject_avg:1,subject_dir:[1,2],subject_group:1,subject_level:1,subject_list:[1,2],subject_st:1,subjectdata:[1,2],subjectfil:1,subjectfilelist:1,subjectnumb:1,subjid:1,subjk:[1,2],subjlabel:[1,2],subjm:[1,2],subjnam:[1,2],subjtyp:1,subjw:[1,2],sublicens:[],submit:[1,2],submodul:[],subplot:[1,2],subplotcol:1,subplotrow:1,subregion:1,subsequ:[1,2],subset:[1,2],subset_indicator_matrix:1,subspac:1,substanti:[1,2],substantia:1,substructur:1,subthalam:1,subtract:1,success:1,suchman:1,suface_handl:1,suffici:1,suffix:1,sum:[1,2],sum_valid_ant:1,summar:1,summari:1,summaris:1,summer:1,sun:[1,2],superced:1,superior:1,support:[1,2],suppress:[1,2],supra:1,suprathreshold:1,supress:1,sure:1,surf:1,surf_handl:1,surf_plot_tor:1,surf_single_subj_t1_grai:1,surfac:1,surface_cutawai:1,surface_handl:1,surround:1,surv:1,survei:1,suspect:1,svd:[],svm:1,svn:1,svr:1,swap:1,swd:1,sweenei:1,switchnext:1,sxyz:1,sxzy:1,symbol:1,symmetr:1,synchron:1,syntax:1,synthesi:[],system:1,systemat:1,t1_face_exemplar:1,t_diff:1,t_intercept:1,t_test2:1,tab:1,table_group:1,table_spati:1,tag:1,tagnam:1,tail:[1,2],take:[1,2],taken:1,tal2mni:1,tal2vox:1,tal:1,tal_info:1,talairach:1,talairach_clust:1,talairach_info:1,talaraich_info:[],talariach:1,talarich:1,taldata:1,tanh:1,tar:1,target:1,target_space_imag:[1,2],target_stimuli_run1:[1,2],target_stimuli_run2:[1,2],target_time_interv:1,target_tr:1,targethz:1,targetsp:1,targetu:1,task:[1,2],taskbeta:[1,2],taskclass:1,taskimag:[1,2],taskprob:1,tau:1,taua:1,taub:1,tcl:1,tcrit:1,tdim:1,techniqu:1,teidx:1,tell:1,temp:1,templat:[1,2],tempor:[1,2],temporari:1,tend:[1,2],term:1,test:[],test_qc:[1,2],test_result:1,test_run1_pca2:1,test_run1_pca:1,test_statist:1,testclustnew:1,testvec:1,text:[1,2],textcod:1,textcol:1,textfield:1,textlab:[1,2],textlabel:1,textprefix:1,textual:1,tfontsiz:1,tha:1,thal:1,thalamu:1,than:[1,2],thei:[1,2],them:[0,1,2],theoret:1,theori:1,therefor:1,theta0:[1,2],theta:[1,2],theworkspac:1,thi:[],thick:1,thing:[1,2],think:1,third:1,thoroughli:1,those:[1,2],though:[1,2],thr:1,three:1,thresh:1,thresh_t:1,thresh_typ:1,threshold:[1,2],threshold_img:1,threshold_spm_t:1,threshold_typ:1,threshtyp:1,through:1,thu:1,tibrishani:[],tic:1,tick:1,tickdir:1,tiff:[1,2],time:[1,2],time_varying_estim:1,timebin:1,timecours:1,timecourse_plot:1,timedispers:1,timeeseri:1,timeonli:1,timepoint:1,timer:1,timeseri:[1,2],timeseries2:[1,2],timeseries3:[1,2],timeseries:[1,2],timeseries_btwngroups_plot:1,timeseries_extract_slic:1,timeseries_mc_pvalu:1,timeseries_prplot:1,timg:1,timseri:1,tinv:1,tip:1,tipangl:1,tissu:1,titl:[],titlestr:1,tlab2:[1,2],tmod:1,tmp2:1,tmp:1,tmp_file:1,tname:1,to_dir:1,toc:1,toeplitz:1,togeth:[1,2],toggl:1,toi:1,tom:[],too:1,tool:[],toolbox:[],top:[1,2],topmm:1,tor:[1,2],tor_3d:1,tor_docu:[1,2],tor_documentscurrentexperimentsintext2mp:[],tor_documentscurrentexperimentsintext2resultsmodel1:[],tor_extract_roi:1,tor_fig:1,tor_fill_steplot:1,tor_ga:1,tor_get_physio:[1,2],tor_ihb_getclust:1,tor_ihb_getclusterset:1,tor_ihb_talspac:1,tor_ihb_updateclustertalvoxs:1,tor_make_deconv_mtx3:1,tor_make_deconv_mtx:1,tor_polar_plot:1,tor_script:1,tor_scriptsvoistatutilitynanmean:1,tor_spm_mean_ui:1,torlab:1,tort:[],tot:1,total:[1,2],totmat:1,tour:1,toward:[1,2],tpr:1,tr2sec:[],tr2tr:[],trace:1,track:[1,2],tractabl:1,trail:1,train:1,tran:1,transform:[1,2],transform_coordin:1,transit:1,translat:[1,2],transpar:1,transparency_chang:1,transparent_surfac:1,transpos:[],transse:1,transvalu:1,travers:1,treat:[1,2],treatment:1,tree:1,trend:1,tri:1,trial:1,trial_amp_img:1,trial_height:1,trialdat:1,trials_col:1,tridx:1,tril:1,trilinear:1,trim:[1,2],trim_mask:1,trimt:[1,2],trinar:1,tripl:1,triplet:1,troubl:1,trrv:1,trrvrv:1,true_class:1,true_p:1,true_weight:1,truep:1,truer:1,trueval:1,truncat:1,trust:1,try4:1,tscv:1,tscvexampl:1,tsq:1,tsquar:1,tsquaretest:1,tstat:1,tsu:1,tsufigur:1,ttest2:1,ttest2_printout:1,ttest3d:1,ttest:1,tthr:1,tthresh:1,ttopeakeq:1,ttst:1,ttype:1,tukei:1,tune:[1,2],turn:[1,2],tutori:[],tval:1,twice:[1,2],twidmap:1,two:[1,2],twochoic:1,twotail:1,txt1:1,txt2:1,txt3:1,txt:[1,2],txtlab:[1,2],typ:1,type:[1,2],typic:[1,2],ucl:1,ufp:1,ugiu:[],uhio:[],uib:[],uibiu:[],uibu:[],uibui:[],uibuibui:[],uicontrol:1,uimenu:1,uint8:1,um_face_hous:[1,2],unc:1,uncorrecetd:1,uncorrect:1,under:1,underlai:1,underlyl:1,underscor:1,undershoot:1,understand:[],unequ:1,unfilt:1,uni:1,uniformli:1,unimod:1,union:1,uniqu:[1,2],unique_id:[1,2],unique_mask_valu:1,unit:[1,2],univari:1,univers:1,unix:1,unknown:1,unless:[1,2],unlik:[1,2],unprocess:1,unrel:[1,2],unspecifi:1,unthreshold:1,until:1,unus:1,unweight:1,unweighted_study_data:1,uonseteq:1,updat:[1,2],upload:[1,2],upon:1,upper:1,upsampl:1,upsamplefactor:1,url:[],usabl:[1,2],usag:[],use_rob_stat:1,use_same_rang:1,use_spm_filt:1,useexist:1,useful:1,useparallel:1,user:[1,2],usfactor:1,usual:[1,2],util:1,uva:1,uvb:1,val:1,valdiat:1,valid:[1,2],validatori:1,valu:[1,2],valuestoevalu:1,var_prc:1,var_prctil:1,varargin:[1,2],varargout:1,vardecomp:1,varexp:1,vari:1,variabl:[1,2],variable_input:1,varianbl:1,varianc:[1,2],variant:1,variat:[1,2],variou:1,varnam:1,varname1:1,varname2:1,varz:1,varzm:1,vascular_group_sum:1,vascular_mask_:1,vasquez:1,vbeta:1,vcon:1,vec:1,vector:[1,2],vectorized_voldata:1,vectorlen:1,veloc:1,vent_thr:1,ventricl:[1,2],verbos:[1,2],verboven:1,verbstr:1,veri:[1,2],verid:1,verlag:1,versa:1,version:[1,2],versu:1,vert:1,vertcat:[],vertex:1,vertic:1,vertici:1,vetor:1,via:[1,2],vice:1,video:1,view:[1,2],viewabl:[1,2],viewer:[],vif:[1,2],vif_thresh:[1,2],vimg:1,vinc:1,violin:1,violinplot:1,virtu:[1,2],visibl:[1,2],visit:1,visual:1,visualis:1,visualization_funct:[],vmpfc:1,vmpfc_mask_neurosynth:1,voinfo:1,voistat:[],vol0:[1,2],vol:1,voldat3d:1,voldata:1,volinfo2:1,volinfo:1,volinfo_mapto:1,vols_ad:1,vols_run0001:1,vols_run0002:1,volum:[1,2],vout:1,vox:1,voxel2mask:1,voxel2mm:1,voxel:[1,2],voxel_data_seri:[],voxels2mask:1,voxelsize_mm:1,voxelwise_pthresh:[1,2],voxsiz:1,vresm:1,vspm:1,vtal:1,vto:1,w1map:1,w2map:1,w3map:1,w_time:1,wager:[1,2],wager_jneuro2011_placebo_mask:[],wagerlab:1,wai:[1,2],waitbar:1,wanat_fil:[1,2],wani:[],wani_pi:1,want:[1,2],warm:1,warn:[1,2],warp:[1,2],warranti:[],wasbad:1,wb_hewma_shel:1,wb_multisubject_correl_hr_correct:1,wb_multisubject_ewma:1,wc1:1,wc2:1,wcard:[1,2],web:1,websit:1,weight:[1,2],weight_obj:1,weight_opt:1,weighted_corrcoef:1,weighted_glmfit:1,weighted_reg:1,weighted_reg_old2:1,weighted_reg_oldglmfit_old:1,weights_nsf_grouppred_cvpcr:1,weights_nsf_grouppred_cvpcr_fdr05:1,weights_nsf_grouppred_cvpcr_fdr05_smoothed_fwhm05:1,weird:1,welcom:[],well:[1,2],wellcom:1,were:1,wh_cluster:1,wh_col:[1,2],wh_inmask:1,wh_keep1:1,wh_keep2:1,wh_keep:1,wh_level:1,wh_merg:1,wh_montag:1,wh_ob:1,wh_of_interest:1,wh_predictor:1,wh_slice:1,wh_subj:1,wh_surfac:1,wh_var:1,what:1,whatev:1,whcl:1,when:[0,1,2],whenev:1,where:[1,2],wherea:1,wherein:[1,2],wherev:[1,2],whether:[1,2],whfold:1,which:[1,2],which_cl:1,which_montag:1,whichc:1,whichcon:[1,2],whichcut:1,whichorth:1,whichslic:1,white:1,white_matt:1,whiten:1,whnum:1,who:1,whole:[1,2],whole_brain_ewma:1,whole_brain_filt:1,whole_brain_fir:1,whom:[],whose:1,whout:1,whpvals_for_boot:1,whsave:1,why:[1,2],wichern:1,wicon:1,wide:1,width:[1,2],wiki:1,wildcard:[1,2],wilei:1,william:1,winam:1,window:1,windowbuttonupfcn:1,windsor:1,windsorizevoxel:1,wise:[1,2],wish:1,within:[1,2],without:[1,2],wm_mask:1,wm_thr:1,won:[1,2],woo:[],word:[1,2],work:[1,2],worker:[],workspac:[1,2],world:1,worslei:1,worstcat:1,worth:1,would:[1,2],wouldn:1,wrapper:[1,2],write:[1,2],write_residu:1,write_text:1,writefil:1,writerscoreplu:1,written:1,wrong:1,wt1:[1,2],wtotalv:[1,2],wvol:1,www:1,wyzx:1,x1o:1,x_in_sec:1,x_resid:1,xaxi:1,xbar:1,xbf:1,xbf_hire:1,xbin:[1,2],xcon:1,xcoord:1,xcorr:1,xcorr_multisubject:1,xcorr_xy_multisubject:1,xcx:1,xdata:[1,2],xdim:1,xfontsiz:1,xhair:1,xhairson:1,xinm:1,xkx:1,xlabel:1,xlabelsl:1,xlevel:1,xlim:[1,2],xlsx:1,xmax:[1,2],xmin:1,xmm:1,xname:1,xposit:1,xred:1,xsde:1,xsdm:1,xsize:1,xspm:1,xtal:1,xtest:1,xtick:1,xticklabel:1,xtrain:1,xtxi:1,xval:1,xval_cross_classifi:1,xval_lasso_brain:1,xval_lasso_brain_permutation_histogram:1,xval_regression_multisubject:1,xvals2:1,xvarnam:1,xvec:1,xvi:1,xvol:1,xxx:1,xycatplot:1,xyplot:1,xytspanelplot:1,xyz1:1,xyz2:1,xyz2clust:1,xyz3:1,xyz:1,xyz_coord:1,xyz_coord_struct:1,xyz_mm_po:1,xyzlist:1,xyzmm:1,xyzmmcent:1,xyzmmspher:1,xyzpt:1,xyztyp:1,xyzvoxspher:1,xyzw:1,y1avg:1,y2avg:1,y_axi:1,y_g1:1,y_g2:1,y_i:1,y_name:1,y_pval:1,y_pvals_thresh:1,y_resid:1,y_star:1,y_total_pv:1,yadj:1,yaml:[1,2],yaml_tmp:[1,2],yamlfilemethod:[1,2],yamlfilenam:[1,2],yaxi:1,ybase:1,ybin:[1,2],ycoord:1,ycut_mm:1,ydata:[1,2],ydim:1,yellow:1,yeo:1,yesno:1,yess:1,yet:[1,2],yfit:1,yfla:1,yfontsiz:1,yhat:1,yhi:1,yield:1,ylabel:1,ylim:1,ymax:[1,2],ymd:1,ymean:1,ymin:1,yminortick:1,ymm:1,yname:1,yoffset:1,yoni:[],you:[1,2],your:[1,2],yourself:1,yout:1,yperc:1,ypop:1,ypred:1,yrgb:1,ysize:1,ytal:1,ytick:1,yticklabel:1,ytmp:1,ytrain:1,yval:1,yvals2:1,yvarnam:1,yvec:1,yyyy_mm_dd:1,yzx:1,z_i:1,zbuffer:1,zcoord:1,zcor:1,zdiff:1,zdim:1,zdt:1,zero:[1,2],zero_cross:1,zeroinsert:1,zhang:1,zil:1,zip:1,ziu:1,zmax:1,zmax_act:1,zmax_negact:1,zmin:1,zmin_act:1,zmin_negact:1,zmm:1,zname:1,zoom:1,zpop:1,zscore:1,zscoreimag:1,zscorevoxel:1,zsize:1,ztal:1},titles:["CanlabCore documentation home","Object Oriented Tools","Toolboxes"],titleterms:{"new":[],aspectlib:[],canlab_canonical_brain:[],canlab_dataset:1,canlabcor:0,cluster_contig_region_tool:1,configur:[],content:[],data_extract:1,data_processing_tool:1,diagnost:[1,2],document:0,filename_tool:1,fmri_data:1,fmri_mask_imag:1,fmri_model:1,fmri_timeseri:[],fmridisplai:1,fmridisplay_helper_funct:1,glm_batch_tool:[1,2],hewma_util:1,home:0,hrf_est_toolbox2:[1,2],image_computation_tool:1,image_space_tool:1,image_threshold:1,image_vector:1,index_image_manip_tool:1,indic:0,instal:[],manual:[],misc_util:1,miscellan:1,model_building_tool:1,object:1,optimizedesign11:[1,2],orient:1,parcellation_tool:1,peak_coordin:1,python:[],region:1,roi_drawing_tool:1,statistic_imag:1,statistics_tool:1,tabl:0,test:[],thi:[],titl:[],tool:1,toolbox:[1,2],usag:[],visualization_funct:1,wager_jneuro2011_placebo_mask:[],welcom:[]}}) \ No newline at end of file +Search.setIndex({envversion:46,filenames:["index","moduleslist","toolboxes"],objects:{"":{"@canlab_dataset":[1,0,1,""],"@fmri_data":[1,0,1,""],"@fmri_mask_image":[1,0,1,""],"@fmri_model":[1,0,1,""],"@fmridisplay":[1,0,1,""],"@image_vector":[1,0,1,""],"@region":[1,0,1,""],"@statistic_image":[1,0,1,""],Cluster_contig_region_tools:[1,0,1,""],Data_extraction:[1,0,1,""],Data_processing_tools:[1,0,1,""],Filename_tools:[1,0,1,""],GLM_Batch_tools:[2,0,1,""],HRF_Est_Toolbox2:[2,0,1,""],Image_computation_tools:[1,0,1,""],Image_space_tools:[1,0,1,""],Image_thresholding:[1,0,1,""],Index_image_manip_tools:[1,0,1,""],Misc_utilities:[1,0,1,""],Model_building_tools:[1,0,1,""],OptimizeDesign11:[2,0,1,""],Parcellation_tools:[1,0,1,""],ROI_drawing_tools:[1,0,1,""],Statistics_tools:[1,0,1,""],Visualization_functions:[1,0,1,""],diagnostics:[2,0,1,""],fmridisplay_helper_functions:[1,0,1,""],hewma_utility:[1,0,1,""],peak_coordinates:[1,0,1,""]},"@canlab_dataset":{bars:[1,1,1,""],concatenate:[1,1,1,""],get_var:[1,1,1,""],glm:[1,1,1,""],glm_multilevel:[1,1,1,""],histogram:[1,1,1,""],mediation:[1,1,1,""],plot_var:[1,1,1,""],print_summary:[1,1,1,""],read_from_excel:[1,1,1,""],scattermatrix:[1,1,1,""],scatterplot:[1,1,1,""],spm2canlab_dataset:[1,1,1,""],ttest2:[1,1,1,""],write_text:[1,1,1,""]},"@fmri_data":{canlab_connectivity_preproc:[1,1,1,""],create:[1,1,1,""],extract_roi_averages:[1,1,1,""],horzcat:[1,1,1,""],hrf_fit:[1,1,1,""],plot:[1,1,1,""],predict:[1,1,1,""],predict_test_suite:[1,1,1,""],regress:[1,1,1,""],rescale:[1,1,1,""],saveplots:[1,1,1,""],signtest:[1,1,1,""],ttest:[1,1,1,""],windsorize:[1,1,1,""]},"@fmri_mask_image":{resample_to_image_space:[1,1,1,""]},"@fmri_model":{build:[1,1,1,""],build_single_trial:[1,1,1,""],get_condition_assignments:[1,1,1,""],get_session_X:[1,1,1,""],plot:[1,1,1,""],replace_basis_set:[1,1,1,""],robustfit:[1,1,1,""],rotate_to_pca:[1,1,1,""],single_trial_estimates:[1,1,1,""]},"@fmridisplay":{addblobs:[1,1,1,""],addpoints:[1,1,1,""],addthreshblobs:[1,1,1,""],legend:[1,1,1,""],montage:[1,1,1,""],surface:[1,1,1,""],transparency_change:[1,1,1,""]},"@image_vector":{apply_mask:[1,1,1,""],check_image_filenames:[1,1,1,""],compare_space:[1,1,1,""],extract_gray_white_csf:[1,1,1,""],extract_roi_averages:[1,1,1,""],fastmontage:[1,1,1,""],flip:[1,1,1,""],get_wh_image:[1,1,1,""],histogram:[1,1,1,""],history:[1,1,1,""],horzcat:[1,1,1,""],ica:[1,1,1,""],image_math:[1,1,1,""],image_similarity_plot:[1,1,1,""],image_similarity_plot_bucknermaps:[1,1,1,""],interpolate:[1,1,1,""],mean:[1,1,1,""],minus:[1,1,1,""],montage:[1,1,1,""],orthviews:[1,1,1,""],plot_current_orthviews_coord:[1,1,1,""],plus:[1,1,1,""],power:[1,1,1,""],preprocess:[1,1,1,""],read_from_file:[1,1,1,""],rebuild_volinfo_from_dat:[1,1,1,""],reconstruct_image:[1,1,1,""],remove_empty:[1,1,1,""],reparse_contiguous:[1,1,1,""],replace_empty:[1,1,1,""],resample_space:[1,1,1,""],resample_time:[1,1,1,""],sagg_slice_movie:[1,1,1,""],searchlight:[1,1,1,""],slices:[1,1,1,""],surface:[1,1,1,""],threshold:[1,1,1,""],trim_mask:[1,1,1,""],union:[1,1,1,""],write:[1,1,1,""]},"@region":{check_extracted_data:[1,1,1,""],extract_data:[1,1,1,""],merge:[1,1,1,""],posneg_separate:[1,1,1,""],region2imagevec2tmp:[1,1,1,""],region2imagevec:[1,1,1,""],region2struct:[1,1,1,""],reparse_continguous:[1,1,1,""],subdivide_by_atlas:[1,1,1,""],subdivide_by_local_max:[1,1,1,""],surface:[1,1,1,""],table:[1,1,1,""]},"@statistic_image":{conjunction:[1,1,1,""],convert2mask:[1,1,1,""],multi_threshold:[1,1,1,""],orthviews:[1,1,1,""],reparse_contiguous:[1,1,1,""],select_one_image:[1,1,1,""],threshold:[1,1,1,""]},Cluster_contig_region_tools:{anat_subclusters:[1,1,1,""],cluster2region:[1,1,1,""],cluster2subclusters:[1,1,1,""],cluster_close_enough:[1,1,1,""],cluster_export_pngs:[1,1,1,""],cluster_find_index:[1,1,1,""],cluster_interp:[1,1,1,""],cluster_intersection:[1,1,1,""],cluster_local_maxima:[1,1,1,""],cluster_set_intersection:[1,1,1,""],cluster_table:[1,1,1,""],cluster_table_successive_threshold:[1,1,1,""],clusters2CLU:[1,1,1,""],clusters2mask:[1,1,1,""],image2clusters:[1,1,1,""],mask2clusters:[1,1,1,""],mask2struct:[1,1,1,""],merge_clusters:[1,1,1,""],merge_nearby_clusters:[1,1,1,""],subclusters_from_local_max:[1,1,1,""],xyz2clusters:[1,1,1,""]},Data_extraction:{canlab_maskstats:[1,1,1,""],cluster_tmask:[1,1,1,""],extract_contrast_data:[1,1,1,""],extract_from_rois:[1,1,1,""],extract_image_data:[1,1,1,""],extract_indiv_peak_data:[1,1,1,""],read_hdr:[1,1,1,""],readim2:[1,1,1,""],timeseries_extract_slice:[1,1,1,""],tor_extract_rois:[1,1,1,""]},Data_processing_tools:{center_of_mass:[1,1,1,""],detransition:[1,1,1,""],downsample_scnlab:[1,1,1,""],fft_plot_scnlab:[1,1,1,""],filterAdjust:[1,1,1,""],fir2htw2:[1,1,1,""],get_snr:[1,1,1,""],htw_from_fit:[1,1,1,""],luisFilter:[1,1,1,""],nuisance_cov_estimates:[1,1,1,""],resample_scnlab:[1,1,1,""],scale:[1,1,1,""],scnlab_filter_fmri_data:[1,1,1,""],scnlab_outlier_id:[1,1,1,""],selective_average:[1,1,1,""],selective_average_group:[1,1,1,""],smooth_timeseries:[1,1,1,""],splineDetrend:[1,1,1,""],splinetrim:[1,1,1,""],trimts:[1,1,1,""],use_spm_filter:[1,1,1,""]},Filename_tools:{check_valid_imagename:[1,1,1,""],copy_image_files:[1,1,1,""],delete_ana_imgs:[1,1,1,""],dicom_tarzip:[1,1,1,""],escapeForShell:[1,1,1,""],expand_4d_filenames:[1,1,1,""],filename_get_new_root_dir:[1,1,1,""],getfullpath:[1,1,1,""],nums_from_text:[1,1,1,""],read_excel:[1,1,1,""],remove_disdaq_vols:[1,1,1,""],rename_lowercase:[1,1,1,""],rename_uppercase:[1,1,1,""],scan_get_files:[1,1,1,""],sort_image_filenames:[1,1,1,""]},GLM_Batch_tools:{canlab_glm_getinfo:[2,1,1,""],canlab_glm_group_levels:[2,1,1,""],canlab_glm_group_levels_run1input:[2,1,1,""],canlab_glm_maskstats:[2,1,1,""],canlab_glm_publish:[2,1,1,""],canlab_glm_roistats:[2,1,1,""],canlab_glm_subject_levels:[2,1,1,""],canlab_glm_subject_levels_run1subject:[2,1,1,""]},HRF_Est_Toolbox2:{Anneal_Logit:[2,1,1,""],Det_Logit:[2,1,1,""],Fit_Canonical_HRF:[2,1,1,""],Fit_Logit2:[2,1,1,""],Fit_sFIR:[2,1,1,""],Get_Logit:[2,1,1,""],HMHRFest:[2,1,1,""],PowerLoss:[2,1,1,""],ResidScan:[2,1,1,""],get_parameters2:[2,1,1,""],hrf_fit_one_voxel:[2,1,1,""],ilogit:[2,1,1,""]},Image_computation_tools:{apply_derivative_boost:[1,1,1,""],canlab_create_wm_ventricle_masks:[1,1,1,""],fisherp:[1,1,1,""],get_mask_vol:[1,1,1,""],image_eval_function:[1,1,1,""],image_eval_function_multisubj:[1,1,1,""],image_histogram1d:[1,1,1,""],mask_create_from_image_set:[1,1,1,""],mask_create_results_mask:[1,1,1,""],mask_fisher:[1,1,1,""],mask_image:[1,1,1,""],mask_intersection2:[1,1,1,""],mask_intersection:[1,1,1,""],mask_stouffer:[1,1,1,""],mask_union:[1,1,1,""],percent_sig_image:[1,1,1,""],reslice_imgs:[1,1,1,""],reverse_mask:[1,1,1,""],scn_write_plane:[1,1,1,""],tor_spm_mean_ui:[1,1,1,""]},Image_space_tools:{check_spm_mat:[1,1,1,""],check_spm_matfiles:[1,1,1,""],img2voxel:[1,1,1,""],mask2voxel:[1,1,1,""],mni2tal:[1,1,1,""],scn_map_image:[1,1,1,""],scn_resample_voxel_size:[1,1,1,""],tal2mni:[1,1,1,""],tal2vox:[1,1,1,""],transform_coordinates:[1,1,1,""],voxel2mask:[1,1,1,""],voxel2mm:[1,1,1,""]},Image_thresholding:{FDR:[1,1,1,""],cl_ext_3dClustSim:[1,1,1,""],cl_ext_make_resid:[1,1,1,""],cl_ext_spm_grf:[1,1,1,""],cl_ext_spm_spm:[1,1,1,""],clusterSizeMask:[1,1,1,""],threshold_imgs:[1,1,1,""]},Index_image_manip_tools:{flip_endianness:[1,1,1,""],iimg_check_volinfo:[1,1,1,""],iimg_cluster_extent:[1,1,1,""],iimg_cluster_index:[1,1,1,""],iimg_cluster_intersect:[1,1,1,""],iimg_cluster_prune:[1,1,1,""],iimg_clusters2indx:[1,1,1,""],iimg_indx2contiguousxyz:[1,1,1,""],iimg_intersection:[1,1,1,""],iimg_make_sure_indx:[1,1,1,""],iimg_mask:[1,1,1,""],iimg_multi_threshold:[1,1,1,""],iimg_princomp:[1,1,1,""],iimg_princomp_display:[1,1,1,""],iimg_read_img:[1,1,1,""],iimg_read_vols:[1,1,1,""],iimg_reconstruct_3dvol:[1,1,1,""],iimg_reconstruct_vols:[1,1,1,""],iimg_reslice:[1,1,1,""],iimg_smooth_3d:[1,1,1,""],iimg_sphere_timeseries:[1,1,1,""],iimg_stouffer:[1,1,1,""],iimg_threshold:[1,1,1,""],iimg_weighted_ttest:[1,1,1,""],iimg_write_images:[1,1,1,""],iimg_xyz2indx:[1,1,1,""],iimg_xyz2spheres:[1,1,1,""]},Misc_utilities:{CERTreader:[1,1,1,""],append:[1,1,1,""],blank_struct:[1,1,1,""],checkMatlabVersion:[1,1,1,""],circle:[1,1,1,""],combine_structs:[1,1,1,""],condf2indic:[1,1,1,""],depfun_aggregate:[1,1,1,""],distance:[1,1,1,""],distance_euclid:[1,1,1,""],erase_and_display:[1,1,1,""],erase_string:[1,1,1,""],explode:[1,1,1,""],fast_conv_fft:[1,1,1,""],getRandom:[1,1,1,""],get_first_help_lines:[1,1,1,""],implode:[1,1,1,""],naninsert:[1,1,1,""],nanremove:[1,1,1,""],oneinsert:[1,1,1,""],orthviews_multiple_objs:[1,1,1,""],pad:[1,1,1,""],padwithnan:[1,1,1,""],parse_char_to_cell:[1,1,1,""],parse_edat_txt:[1,1,1,""],print_matrix:[1,1,1,""],progressbar:[1,1,1,""],read_edat_output_2008:[1,1,1,""],robustcsvread:[1,1,1,""],scn_get_datetime:[1,1,1,""],scn_mat_conform:[1,1,1,""],search_struct_fields:[1,1,1,""],strip_path_dirs:[1,1,1,""],strip_svn_dirs:[1,1,1,""],strrep_recurse:[1,1,1,""],struct_strrep:[1,1,1,""],tor_ga:[1,1,1,""],zeroinsert:[1,1,1,""]},Model_building_tools:{fmri_spline_basis:[1,1,1,""],getPredictors:[1,1,1,""],ideal_deconv6:[1,1,1,""],intercept_model:[1,1,1,""],modifiedconv:[1,1,1,""],onsets2delta:[1,1,1,""],onsets2dx:[1,1,1,""],onsets2fmridesign:[1,1,1,""],onsets2parametric_mod_X:[1,1,1,""],plot_ideal_deconv5:[1,1,1,""],spm_mat2batchinput:[1,1,1,""],tor_make_deconv_mtx3:[1,1,1,""]},OptimizeDesign11:{optimizeGA:[2,1,1,""],optimizeGA_epochs:[2,1,1,""],optimize_rand_search:[2,1,1,""]},Parcellation_tools:{cluster_princomp:[1,1,1,""],inconsistent:[1,1,1,""],mask_princomp:[1,1,1,""],parcel_cl_nmds:[1,1,1,""],parcel_cl_nmds_plots:[1,1,1,""],parcel_clusters:[1,1,1,""],parcel_complete_sets:[1,1,1,""],parcel_images:[1,1,1,""]},ROI_drawing_tools:{add2mask:[1,1,1,""],clusters2roimask:[1,1,1,""],draw_anatomical_roi_2008:[1,1,1,""],sphere_mask:[1,1,1,""]},Statistics_tools:{Bspline:[1,1,1,""],ContinuousAccuracy:[1,1,1,""],F_test_full_vs_red:[1,1,1,""],F_test_no_intercept:[1,1,1,""],ICC:[1,1,1,""],ancova:[1,1,1,""],barplot_get_within_ste:[1,1,1,""],bayes_get_probabilities:[1,1,1,""],bayes_get_probabilities_2010:[1,1,1,""],bayes_meta_feature_abstract:[1,1,1,""],binotest:[1,1,1,""],binotest_dependent:[1,1,1,""],cancor:[1,1,1,""],canlab_connectivity_predict:[1,1,1,""],classify_bayes:[1,1,1,""],classify_choose_most_likely:[1,1,1,""],classify_naive_bayes:[1,1,1,""],classify_naive_bayes_2010:[1,1,1,""],classify_naive_bayes_objfun:[1,1,1,""],classify_viz_regions:[1,1,1,""],contrast_code:[1,1,1,""],correl_compare_dep:[1,1,1,""],correl_compare_dep_permtest:[1,1,1,""],correl_compare_dep_search:[1,1,1,""],correl_compare_indep:[1,1,1,""],correl_compare_indep_inputr:[1,1,1,""],correl_compare_permute:[1,1,1,""],correlation:[1,1,1,""],correlation_fast_series:[1,1,1,""],create_orthogonal_contrast_set:[1,1,1,""],dice_coeff_image:[1,1,1,""],doquality:[1,1,1,""],fisherz:[1,1,1,""],fit_gls:[1,1,1,""],fit_gls_brain:[1,1,1,""],getmeanquality:[1,1,1,""],glmfit_general:[1,1,1,""],glmfit_multilevel:[1,1,1,""],glmfit_multilevel_varexplained:[1,1,1,""],intercept:[1,1,1,""],loess_multilevel:[1,1,1,""],matrix_direct_effects:[1,1,1,""],matrix_direct_effects_ridge:[1,1,1,""],matrix_eval_function:[1,1,1,""],monotonic_regression:[1,1,1,""],moving_average:[1,1,1,""],noise_arp:[1,1,1,""],nonlin_fit:[1,1,1,""],nonlin_param_mod_brain:[1,1,1,""],nonlin_param_modulator:[1,1,1,""],nonlin_parammod_predfun:[1,1,1,""],pairwise_diffs:[1,1,1,""],partition_variables_indevel:[1,1,1,""],permute_setupperms:[1,1,1,""],permute_signtest:[1,1,1,""],plssquash:[1,1,1,""],princomp_largedata:[1,1,1,""],prplot_multilevel:[1,1,1,""],r2z:[1,1,1,""],regress_best_subsets_ga:[1,1,1,""],repeated_ancova:[1,1,1,""],rmanova2:[1,1,1,""],robust_reg_pooled:[1,1,1,""],roc_boot:[1,1,1,""],roc_calc:[1,1,1,""],roc_plot:[1,1,1,""],rsquare_calc:[1,1,1,""],rsquare_multiple_regions_multilevel:[1,1,1,""],scn_stats_helper_functions:[1,1,1,""],sdt_A:[1,1,1,""],searchlight_applymask:[1,1,1,""],searchlight_applymask_collate:[1,1,1,""],searchlight_correlation:[1,1,1,""],searchlight_disti:[1,1,1,""],searchlight_dream:[1,1,1,""],searchlight_saveresults:[1,1,1,""],shift_correl:[1,1,1,""],shift_signal:[1,1,1,""],signtest_matrix:[1,1,1,""],ste:[1,1,1,""],stepwise_tor:[1,1,1,""],stouffer:[1,1,1,""],subset_indicator_matrix:[1,1,1,""],t_test2:[1,1,1,""],testclustnew:[1,1,1,""],time_varying_estimate:[1,1,1,""],tscv:[1,1,1,""],tsquaretest:[1,1,1,""],ttest2_printout:[1,1,1,""],ttest3d:[1,1,1,""],var_prctile:[1,1,1,""],weighted_glmfit:[1,1,1,""],xcorr_multisubject:[1,1,1,""],xcorr_xy_multisubject:[1,1,1,""]},Visualization_functions:{addbrain:[1,1,1,""],addbrainleft:[1,1,1,""],addbrainright:[1,1,1,""],applycolormap:[1,1,1,""],arrow:[1,1,1,""],bar_wani:[1,1,1,""],barplot_colored:[1,1,1,""],barplot_columns2:[1,1,1,""],barplot_columns3:[1,1,1,""],barplot_columns:[1,1,1,""],barplot_grouped:[1,1,1,""],barplotter:[1,1,1,""],canlab_force_directed_graph:[1,1,1,""],canlab_results_fmridisplay:[1,1,1,""],cl_line_plots:[1,1,1,""],cl_overlap:[1,1,1,""],close_non_spm_graphics_figures:[1,1,1,""],cluster_barplot:[1,1,1,""],cluster_cutaways:[1,1,1,""],cluster_image_shape:[1,1,1,""],cluster_image_sphere:[1,1,1,""],cluster_orthviews:[1,1,1,""],cluster_orthviews_classes:[1,1,1,""],cluster_orthviews_montage:[1,1,1,""],cluster_orthviews_overlap2:[1,1,1,""],cluster_orthviews_overlap:[1,1,1,""],cluster_orthviews_overlap_3colors:[1,1,1,""],cluster_orthviews_showcenters:[1,1,1,""],cluster_surf:[1,1,1,""],cluster_surf_batch2:[1,1,1,""],cluster_surf_batch:[1,1,1,""],colormap_tor:[1,1,1,""],compare_filtered_t:[1,1,1,""],compare_slice:[1,1,1,""],conf_region:[1,1,1,""],create_figure:[1,1,1,""],errorbar_horizontal:[1,1,1,""],errorbar_width:[1,1,1,""],fill_area_around_points:[1,1,1,""],getVertexColors:[1,1,1,""],get_cluster_volume:[1,1,1,""],glassbrain_avi:[1,1,1,""],imageCluster:[1,1,1,""],imageCluster_block:[1,1,1,""],image_histogram:[1,1,1,""],line_plot_multisubject:[1,1,1,""],lineplot_columns:[1,1,1,""],make3Davi:[1,1,1,""],make3Davi_uncompressed:[1,1,1,""],make_figure_into_orthviews:[1,1,1,""],makelegend:[1,1,1,""],map_data_to_colormap:[1,1,1,""],mask2surface:[1,1,1,""],mdsfig:[1,1,1,""],mdsfig_3d:[1,1,1,""],mea_visualise:[1,1,1,""],montage_clusters:[1,1,1,""],montage_clusters_maxslice:[1,1,1,""],montage_clusters_medial:[1,1,1,""],montage_clusters_points:[1,1,1,""],montage_clusters_text2:[1,1,1,""],montage_clusters_text:[1,1,1,""],montage_image_Worsley:[1,1,1,""],movie_of_slice_timeseries:[1,1,1,""],movie_stillframes:[1,1,1,""],multi_threshold:[1,1,1,""],mvroi_mdsfig_plot2:[1,1,1,""],mvroi_mdsfig_plot_sepstates:[1,1,1,""],mvroi_mdsfig_plugin2:[1,1,1,""],mvroi_plot_firs:[1,1,1,""],nmdsfig1D:[1,1,1,""],nmdsfig:[1,1,1,""],nmdsfig_fill:[1,1,1,""],nmdsfig_legend:[1,1,1,""],plot3d:[1,1,1,""],plotDesign:[1,1,1,""],plot_correlation:[1,1,1,""],plot_correlation_samefig:[1,1,1,""],plot_dx_hrfs:[1,1,1,""],plot_ellipse:[1,1,1,""],plot_error:[1,1,1,""],plot_horizontal_line:[1,1,1,""],plot_hrf_model_fit:[1,1,1,""],plot_joint_hist_contour:[1,1,1,""],plot_matrix_cols:[1,1,1,""],plot_vertical_line:[1,1,1,""],prplot:[1,1,1,""],renderCluster_ui4:[1,1,1,""],renderCluster_ui:[1,1,1,""],roi_contour_map:[1,1,1,""],scn_export_papersetup:[1,1,1,""],scn_standard_colors:[1,1,1,""],selective_average_interactive_view_init:[1,1,1,""],sepplot:[1,1,1,""],shepardplot:[1,1,1,""],sphere_roi_tool:[1,1,1,""],spm_orthviews_change_colormap:[1,1,1,""],spm_orthviews_hotcool_colormap:[1,1,1,""],spm_orthviews_name_axis:[1,1,1,""],spm_orthviews_showposition:[1,1,1,""],spm_orthviews_white_background:[1,1,1,""],spm_ov_black2white:[1,1,1,""],standardMRIlighting:[1,1,1,""],surf_plot_tor:[1,1,1,""],surface_cutaway:[1,1,1,""],talairach_clusters:[1,1,1,""],timeseries_prplot:[1,1,1,""],tor_3d:[1,1,1,""],tor_fill_steplot:[1,1,1,""],tor_ihb_GetClusterSet:[1,1,1,""],tor_ihb_GetClusters:[1,1,1,""],tor_ihb_TalSpace:[1,1,1,""],tor_ihb_UpdateClusterTalVoxSize:[1,1,1,""],tor_polar_plot:[1,1,1,""],violinplot:[1,1,1,""],wani_pie:[1,1,1,""],xval_lasso_brain_permutation_histogram:[1,1,1,""]},diagnostics:{BiasPowerloss:[2,1,1,""],ResidScan:[2,1,1,""],add_nuisance_to_SPMcfg:[2,1,1,""],batch_efficiency:[2,1,1,""],batch_t_histograms:[2,1,1,""],canlab_qc_metrics1:[2,1,1,""],check_cluster_data:[2,1,1,""],compare_subjects256:[2,1,1,""],compare_subjects:[2,1,1,""],displayme:[2,1,1,""],ellipse:[2,1,1,""],fft_calc:[2,1,1,""],fmri_mask_thresh_canlab:[2,1,1,""],get_filename2:[2,1,1,""],get_filename:[2,1,1,""],hist2:[2,1,1,""],image_intensity_histograms:[2,1,1,""],img_hist2:[2,1,1,""],img_hist:[2,1,1,""],joint_hist:[2,1,1,""],make_conv_mtx:[2,1,1,""],multivar_dist:[2,1,1,""],orthogonalize:[2,1,1,""],power_from_variance:[2,1,1,""],power_loss:[2,1,1,""],publish_scn_session_spike_id:[2,1,1,""],qchist:[2,1,1,""],reset_SPMcfg:[2,1,1,""],scale_imgs_by_csf:[2,1,1,""],scn_component_rsquare:[2,1,1,""],scn_session_spike_id:[2,1,1,""],scn_spm_choose_hpfilter:[2,1,1,""],scn_spm_design_check:[2,1,1,""],scn_spm_get_events_of_interest:[2,1,1,""],scnlab_norm_check3:[2,1,1,""],scnlab_norm_check:[2,1,1,""],scnlab_pca_check1:[2,1,1,""],spm_general_hist:[2,1,1,""],spm_rfx_hist:[2,1,1,""],struct2yaml:[2,1,1,""],tor_get_physio:[2,1,1,""]},fmridisplay_helper_functions:{clusters2mask2011:[1,1,1,""],define_sampling_space:[1,1,1,""],display_slice:[1,1,1,""],map_to_world_space:[1,1,1,""],render_blobs:[1,1,1,""],resample_space:[1,1,1,""]},hewma_utility:{Gaussian_mix:[1,1,1,""],change_point:[1,1,1,""],cluster_kmeans_parcel:[1,1,1,""],cnt_runs:[1,1,1,""],ewma5:[1,1,1,""],get_ax_slice:[1,1,1,""],get_max_t:[1,1,1,""],hewma2:[1,1,1,""],hewma2_plot:[1,1,1,""],hewma_extract_voxel:[1,1,1,""],hewma_from_raw_timeseries:[1,1,1,""],hewma_gui:[1,1,1,""],hewma_plot_bivariate:[1,1,1,""],hewma_plot_coord_btnupfcn:[1,1,1,""],hewma_plot_cpmap:[1,1,1,""],hewma_plot_runlen:[1,1,1,""],hewma_save_timeseries:[1,1,1,""],linear_detrending:[1,1,1,""],timeseries_btwngroups_plot:[1,1,1,""],timeseries_mc_pvalue:[1,1,1,""],wb_hewma_shell:[1,1,1,""],weighted_reg:[1,1,1,""],weighted_reg_old2:[1,1,1,""],weighted_reg_oldglmfit_old:[1,1,1,""],whole_brain_ewma:[1,1,1,""],zero_crossing:[1,1,1,""]},peak_coordinates:{cluster_manova:[1,1,1,""],extract_ind_peak:[1,1,1,""],image2coordinates:[1,1,1,""],spatial_contrast:[1,1,1,""]}},objnames:{"0":["mat","module","MATLAB module"],"1":["mat","function","MATLAB function"]},objtypes:{"0":"mat:module","1":"mat:function"},terms:{"020515sp":[1,2],"020726ag":[1,2],"020827mk":[1,2],"020829jh":[1,2],"020903lb":[1,2],"02d":[1,2],"03d":1,"05_k10_neg":1,"05_k5_po":1,"060518mw":[1,2],"10th":1,"1iconw":[1,2],"1st":1,"1x1":1,"1x105":1,"1x2":1,"1x30":1,"1xm":1,"2007a":1,"2012a":1,"2014a":1,"2nd":[1,2],"2subject":[1,2],"2x30":1,"3dclustsim":1,"3dclustsim_dir":1,"3dfwhmx":1,"3dheadutil":1,"3rd":1,"4th":1,"4x4":1,"50x1000":1,"50x10000":1,"5th":1,"6_intel_64":1,"8bit":1,"91x109x91":1,"95ci":1,"_01aug2014":1,"_10k":1,"_column":1,"_dat":1,"_level":[1,2],"_p_":1,"_seg1":[1,2],"_seg3":[1,2],"_tmap_0002":1,"abstract":1,"boolean":1,"break":1,"byte":1,"case":[1,2],"catch":1,"char":[1,2],"class":1,"const":1,"default":[1,2],"export":1,"final":1,"float":1,"function":[0,1,2],"import":1,"int":1,"long":[1,2],"new":[],"null":1,"public":[],"return":[1,2],"super":[],"switch":1,"true":[1,2],"try":1,"var":[1,2],"while":1,aa_:1,aall:[1,2],ab_c:1,abbrev:1,abbrevi:1,abc:1,abil:1,abin:1,abl:1,about:1,abov:[1,2],abrupt:1,absent:1,absolut:[1,2],acc:1,acc_roi_mask:1,acc_x_dist:1,accept:1,access:1,accompani:1,accord:1,accordingli:1,account:[1,2],accumben:1,accur:1,accuraci:1,acl:1,acquisit:[1,2],across:[1,2],act:1,actcolor2:1,actcolor3:1,actcolor:1,action:1,activ:[1,2],activation_cutoff:1,activation_fwe_al:1,activation_map:1,activation_proport:1,activationdata:1,active_plus_corr_scatterplot_plugin:1,actual:[1,2],adapt:1,add2mask:1,add2movi:1,add:[1,2],add_nuisance_to_spmcfg:[1,2],addblob:1,addbrain:1,addbrainleft:1,addbrainright:1,addcolouredblob:1,addcon:[1,2],addintercept:[],addit:[1,2],additional_info:1,additional_input:1,additional_nuis:1,addmontag:1,addpoint:1,address:[1,2],addtext:1,addthreshblob:1,addvari:[],adequ:1,adjac:1,adjust:[1,2],adjusti:[],adjustmatrix:1,adress:1,advanc:1,advantag:1,affect:1,affin:1,afni:1,after:[1,2],afterward:1,again:1,against:[1,2],agglom:1,aggreg:1,agre:1,aic:1,akin:1,alarm:1,alfja:[],algo:1,algorithm:[1,2],algorithm_nam:1,all4_union_bg_surf:1,all:[1,2],all_chi2_imag:1,all_data:1,all_surf_handl:1,all_surf_handles2:1,allcverr:1,alld:1,allinfo:1,allinput:[1,2],allmodel:[1,2],allow:[1,2],allownan:1,allw:1,allyhat:1,alon:[0,1,2],along:[1,2],alph:1,alpha:[1,2],alphanumer:1,alphasim:1,alreadi:[1,2],also:[0,1,2],alt:1,altern:[1,2],altho:[1,2],alwai:1,ambar_carvalho:1,ambient:1,ambigu:1,american:1,ami:1,among:[1,2],amount:1,amp:1,amplitud:[1,2],amygdala:1,an_metafwe_rad10:1,analys:[1,2],analysi:[1,2],analysis_dir:[1,2],analysisnam:1,analyz:[1,2],analyze_cluster_roi:1,anat:1,anat_lbpa_th:1,anat_subclust:1,anatmeannam:1,anatom:[1,2],anatomc:[1,2],anatomi:[1,2],anatomynscalped_ft1:[],anatp:1,ancova:1,andreas_nguyen:1,anew:1,angela_val:1,angl:1,ani:[0,1,2],anjali:[],anneal:[1,2],anneal_logit:[1,2],annot:1,anonym:1,anoth:[1,2],anova:1,answer:1,ant:1,anterior:1,antialias:1,antic:1,anticip:1,anxieti:1,anybad:1,anyth:[1,2],anywai:1,anywher:[],aout:1,apart:1,appar:1,appear:1,append:[1,2],appli:[1,2],applic:1,apply_clust:1,apply_derivative_boost:1,apply_mask:1,apply_np:1,applycolormap:1,apprais:1,approach:[1,2],appropri:[1,2],approv:1,approxim:[1,2],april:[],aproach:[1,2],arbitrari:1,archiv:[],area:1,aren:[1,2],arg:1,argument:[1,2],aris:[],arma:1,armi:1,arord:1,around:[1,2],arrai:[1,2],arrang:1,arrow:1,arrowhead:1,artifact:[1,2],asc:[1,2],ascend:[1,2],ascii:1,ashar:[],ask:1,aslfd:[],aspect:1,aspectlib:[],assess:1,assign:1,associ:1,assum:[1,2],assumpt:[1,2],ast:1,ast_adj_x:1,ast_adj_y_neg:1,ast_adj_y_po:1,asterisk:1,asymmetr:1,asymmetri:[1,2],asymptot:1,atan:1,atla:1,atlas:1,atlas_labels_combin:1,atleast:1,atleastn:1,att:1,attach:1,attempt:1,atti:1,attribut:[1,2],auc:1,auc_by_modul:1,auc_mean_tri:1,auditori:[1,2],auditory_oddbal:[1,2],aug:1,augment:1,august:1,author:1,auto:1,autocorrel:1,automat:[1,2],automodul:[],autoregress:1,aux_fil:1,avail:1,averag:[1,2],average_ov:1,average_resp:1,avg152t1:[1,2],avg:[1,2],avgd:1,avgstat:1,avgvs3:1,avi:1,avoid:[1,2],awai:1,awri:1,axh:1,axi:[1,2],axial:1,axis_handl:1,axishandl:1,axisnum:1,axtyp:1,azimuth:1,azoffset:1,b2_e2:1,b_star:1,b_subset:1,back:[1,2],background:[1,2],backspac:1,backup:1,backward:1,bad:[1,2],badvox:1,balanc:1,balanced_ridg:[],bandpass:1,bandwidth:1,bar:[1,2],bar_edgecol:1,bar_edgewidth:1,bar_handl:1,bar_wani:1,bar_width:1,bare:[],bargraph:1,barhandl:1,barplot:1,barplot_color:1,barplot_column:1,barplot_columns2:1,barplot_columns3:1,barplot_get_within_st:1,barplot_group:1,barplott:1,barttest:1,barwidth:1,basal:1,base:[1,2],base_timept:1,baseangl:1,basecolor:1,basedir:1,baseimg:1,baselin:1,basenam:1,baseperiod:1,basept:1,basi:[1,2],basic:[1,2],basisset:1,batch:[1,2],batch_effici:[1,2],batch_t_histogram:[1,2],bay:1,bayes_get_prob:1,bayes_get_probabilities_2010:1,bayes_meta_feature_abstract:1,bayes_model:1,bayes_model_region:1,bcov:1,bear:[1,2],becaus:[1,2],becom:1,been:[1,2],beff:1,befor:[1,2],begin:1,beh1:1,behav:[],behavior:1,behdat:1,behind:1,belong:1,below:1,benefici:[],benefit:1,benjamini:1,bernoulli:1,besid:1,best:[1,2],best_log:1,best_param:1,bestc:1,bestcoord:1,bestcorr:1,bestg:1,bestk:1,bestmyclass:1,bestnam:1,bestpval:1,bestshift:1,bestx:1,beta1_event1:1,beta1_event2:1,beta2_event1:1,beta:[1,2],beta_0001:[1,2],beta_0010:[1,2],beta_:1,beta_nam:1,betaorcontrast:1,better:[1,2],between:[1,2],beyond:1,bfr:1,bgcolor:1,bgl:1,bia:[1,2],bias:1,biasmean:1,biaspowerloss:[1,2],big:[1,2],bilat:1,bilater:1,bimod:1,bin:[1,2],binar:1,binari:[1,2],binary_outcom:1,binomi:1,binotest:1,binotest_depend:1,bint:1,biomark:1,biplot:1,bisempti:1,biseri:1,bit:1,biubiub:[],biubuib:[],bival:1,bivari:1,black2whit:1,black:1,blalock:1,blank:1,blank_struct:1,blank_val:1,blkdiag:[1,2],blob:1,blobhan:1,block:[1,2],blue:[1,2],blueon:[],bmrk3:1,bnew:1,bold:1,bonf:1,bonferroni:1,book:1,bool:1,boost:1,bootstrap:1,boot1:1,boot:1,bootsampl:1,bootsrap:[],bootstrap:1,bootstrp:[],bootweight:1,borderscal:1,both:[1,2],bottom:1,bound:1,boundari:1,bout:1,box:1,boxcar:1,boxplot:1,bpf:1,brad_wilson:1,brain:[1,2],brain_avg152t1:[1,2],brain_render_t1:1,brainbottom:1,brainmask:[1,2],brainoni:1,brainstem:1,branch:1,breakpoint:1,bring:1,brownhil:1,brows:1,bspline:1,btwline:1,btwn:1,btwnname:1,bucker:1,buckner:1,bucknerlab:1,bug:1,bui:[],buib:[],buibiub:[],build:1,build_single_tri:1,built:1,bull:1,bump:[1,2],bunch:[],bwexist:1,c2m:1,c_bia:1,c_compar:1,calc:1,calcstr:1,calcul:[1,2],calculate_stat:1,calhoun:1,call:[1,2],camlight:1,can:[1,2],cancor:1,canlab:[0,1,2],canlab_canonical_brain:[],canlab_connectivity_predict:1,canlab_connectivity_preproc:1,canlab_create_wm_ventricle_mask:1,canlab_databas:[],canlab_dataset:[],canlab_extract_ventricle_wm_timeseri:1,canlab_force_directed_graph:1,canlab_glm_:[1,2],canlab_glm_getinfo:[1,2],canlab_glm_group_level:[1,2],canlab_glm_group_levels_run1input:[1,2],canlab_glm_maskstat:[1,2],canlab_glm_publish:[1,2],canlab_glm_readm:[1,2],canlab_glm_roistat:[1,2],canlab_glm_subject_level:[1,2],canlab_glm_subject_levels_run1subject:[1,2],canlab_maskstat:[1,2],canlab_preproc:[1,2],canlab_preproc_norm_check:[1,2],canlab_qc_metrics1:[1,2],canlab_results_fmridisplai:1,canlab_spm_contrast_job:[1,2],canlab_spm_contrast_job_luka:[1,2],canlab_spm_fmri_model_job:[1,2],cannot:1,canon:[1,2],canoncorr:1,canonical_brain:1,caonic:1,capabl:1,capit:1,captur:1,care:1,caret:1,carlo:1,carmack:1,carmack_get_label:[],cast:1,cat:[1,2],categor:1,categori:1,caudat:1,caus:[1,2],caution:1,caxi:1,ccor:1,cdf:1,ceil:1,cell:[1,2],cellarrai:[1,2],cellarri:1,cellstr:1,cen:1,center:[1,2],center_of_mass:1,centered_dot_product:1,centerimag:1,centervoxel:1,centr:1,central:1,centroid:1,centromedian:1,cerebellum:1,cert:1,certain:1,certread:1,chanc:1,chance_95_ci:1,chang:[1,2],change_point:1,changepoint:1,charact:[1,2],characterist:1,charg:[],chart:1,chebi:1,chebyshev:1,check:[1,2],check_cluster_data:[1,2],check_extracted_data:1,check_image_filenam:1,check_spm_mat:1,check_spm_matfil:1,check_valid_imagenam:1,checkmatlabvers:1,chemometr:1,chi2:[1,2],chi:1,child:[1,2],choic:[1,2],choos:[1,2],choose_ndim:1,chosen:1,chptmap:1,chrf:1,christensen:1,chronolog:1,chunck:1,chunk:1,chwo9116:1,circa:1,circl:1,circular:1,circumst:1,cis95:1,cl1:1,cl2:1,cl3:1,cl_ami:1,cl_b_fdr05_002_01_k3_1_1_prune:1,cl_ext:1,cl_ext_3dclustsim:1,cl_ext_clustsim:1,cl_ext_make_resid:1,cl_ext_spm:1,cl_ext_spm_grf:1,cl_ext_spm_spm:1,cl_extent:1,cl_glo1:1,cl_glo2:1,cl_in:1,cl_line_plot:1,cl_match:1,cl_match_to:1,cl_out:1,cl_overlap:1,cl_putamen:1,cl_roimean:1,cl_roipattern:1,cl_size:1,claim:[],clarifi:[],class_clust:1,class_est:1,class_threshold:1,classif:1,classifi:1,classify_bay:1,classify_choose_most_lik:1,classify_naive_bay:1,classify_naive_bayes_2010:1,classify_naive_bayes_objfun:1,classify_search_script3:1,classify_viz_region:1,classs:1,clcol:1,clean:1,clear:1,click:1,clim:1,clin:1,clindx:1,clinpsywoo:1,clneg:1,clneg_data:1,clockwis:1,close:[1,2],close_enough:1,close_non_spm_graphics_figur:1,closeenough:1,closemovi:1,closer:1,closest:1,closest_clust:[],clout:1,clpattern:1,clpo:1,clpos_data2:1,clpos_data:1,clroimean:1,cls1:1,cls2:1,cls3:1,clsize:1,clsuter:1,clu:1,clust:1,cluster2region:1,cluster2subclust:1,cluster:[1,2],cluster_barplot:1,cluster_close_enough:1,cluster_contig_region_tool:[],cluster_cutawai:1,cluster_export_png:1,cluster_find_index:1,cluster_image_shap:1,cluster_image_spher:1,cluster_interp:1,cluster_intersect:1,cluster_kmeans_parcel:1,cluster_local_maxima:1,cluster_manova:1,cluster_nam:1,cluster_nmd:1,cluster_nmdsfig:1,cluster_nmdsfig_glassbrain:1,cluster_orthview:1,cluster_orthviews_class:1,cluster_orthviews_montag:1,cluster_orthviews_overlap2:1,cluster_orthviews_overlap:1,cluster_orthviews_overlap_3color:1,cluster_orthviews_showcent:1,cluster_princomp:1,cluster_set_intersect:1,cluster_solut:1,cluster_surf:1,cluster_surf_batch2:1,cluster_surf_batch:1,cluster_surf_movi:1,cluster_t:1,cluster_table_old:[],cluster_table_successive_threshold:1,cluster_tmask:1,cluster_tool:1,clusterdata:1,clusters1:1,clusters2:1,clusters2clu:1,clusters2databas:1,clusters2mask2011:1,clusters2mask:1,clusters2roimask:1,clusters:[1,2],clusters_to_match:1,clustersizemask:1,clustersolut:1,clusterxyz:1,clustnam:1,clustqual:1,clustsim_dir:1,clz:1,cmaprang:1,cmd:1,cmdscale:1,cnt:1,cnt_run:1,cntmap:1,cntmat:1,cochran:1,code:[1,2],coeff:1,coeffici:1,coeffieint:1,cognit:1,cohen:[1,2],coher:[1,2],col1:1,col2:1,col:[1,2],colin:1,colinear:[1,2],collect:1,color:1,color_lowerboundpercentil:1,color_upperboundpercentil:1,colorado:[1,2],colorbar:1,colorchang:1,colorchangestr:1,colorcond:1,colormap:1,colormap_tor:1,colors2:1,colorscal:1,colorspec:1,colorspecstr:1,colum:1,column1:1,column2:1,column3:1,column4:1,column:[1,2],columnwis:1,com:1,combin:[1,2],combine_struct:1,combo:1,come:[1,2],comma:1,command:[0,1,2],comment:1,common:1,comp:1,compact2:1,compact:1,compar:[1,2],compare_filtered_t:1,compare_slic:1,compare_spac:1,compare_subject:[1,2],compare_subjects256:[1,2],comparegroup:1,comparison:1,compat:[1,2],complementari:1,complet:1,complex:1,complic:1,compoen:1,compon:[1,2],composit:1,compress:1,compris:1,compscor:[1,2],comput:[1,2],computation:1,con:[1,2],con_0002:[1,2],con_0003:1,con_0004:1,con_:[1,2],con_fil:1,con_pval:1,con_t:1,concaten:1,concis:1,conda:[],condf2ind:1,condf:1,condit:[1,2],condition:1,condition_num:1,condition_numb:1,conditionnam:1,conf:1,conf_region:1,confid:[1,2],configur:[],conflict:[],conform:[],confound:1,confus:1,confusion_mtx:1,confval:1,conimg:1,conjunct:1,conn:1,conn_filt:1,connam:[1,2],connect3d:1,connect:1,connectmetr:1,connot:1,connum:[1,2],consecut:1,conserv:1,consid:[1,2],consider:[1,2],consist:1,constant:1,constanttran:1,constrain:1,constraint:1,construct:[1,2],constructor:1,contain:[0,1,2],content:[],context:1,contig:[],contigu:1,contiguous_region:1,continu:1,continuousaccuraci:1,contour:1,contourslic:1,contract:[],contrast:[1,2],contrast_cod:1,contrast_mtx:1,contrast_t:1,contrastimag:[1,2],contrastnam:1,contrastxweight:1,contribut:[1,2],control:[1,2],control_dat:1,conv:[1,2],conv_hrf:[],conval:1,convent:1,converg:1,convers:1,converst:[],convert2mask:1,convert:1,convolut:[1,2],convolv:1,conw:[1,2],cool:1,coord:1,coordiat:1,coordin:[1,2],cophenet:1,copi:1,copy_image_fil:1,copyright:1,cor:1,cordir:1,core:[0,1],core_funct:[],corel:1,coron:1,corr:[1,2],corr_rep:1,corr_temp:1,corrc_mean:1,corrclass:1,corrclass_nullhyp:1,corrcoef:1,corrdat:1,correct:[1,2],corrected_p:1,correctli:1,correl:[1,2],correl_compare_dep:1,correl_compare_dep_permtest:1,correl_compare_dep_search:1,correl_compare_indep:1,correl_compare_indep_inputr:1,correl_compare_permut:1,correl_seed1_sig:1,correlation_fast_seri:1,correlation_to_text:1,correspond:[1,2],corrval:1,cortic:1,corval:1,cosin:[],cosine_similar:1,could:[1,2],count:[1,2],counterbalanc:[1,2],coupl:1,cours:[1,2],coursework_and_teach:[1,2],cov:[1,2],covari:[1,2],cover:[1,2],covfil:[1,2],covnam:[1,2],covt:1,covti:1,covxcon:[1,2],cp2:1,cp_ind:1,cpmap:1,crash:[],creat:[1,2],create_figur:1,create_fmri_mask:1,create_orthogonal_contrast_set:1,creation:1,creelman:1,crimin:1,crit_t:1,criterion:1,critic:1,cronbach:1,cross:1,crossdir:1,crosshair:1,crossov:1,crossval:1,crossvalid:1,cscale:1,cse:1,csf:[1,2],csfname:[],csfp2:[],csfpath:[],csv:[1,2],ctmp:1,cubic:1,cue:1,curr:1,current:[1,2],current_data:[],currentexperi:[1,2],currentmap:1,cursor:1,curv:[1,2],custom:[1,2],custom_coord:1,custom_hrf:[],customneur:1,cut:[1,2],cutawai:1,cutoff:[1,2],cv_assign:1,cv_lassopcr:1,cv_lassopcrmatlab:1,cv_multilevel_glm:1,cv_multregress:1,cv_pcr:1,cv_regress:1,cv_svm:1,cv_svr:1,cv_univregress:1,cverr:1,cvpartit:1,cwd:[1,2],cyan:1,cycl:1,cyclecorrect:1,cyclecorrection2:1,d_by_mod:1,d_mean:1,dacc_hw_pattern_sl6mm:1,dacc_rf_pattern_sl6mm:1,damag:[],dark:1,dash:1,dat1:1,dat2:1,dat:[1,2],dat_comb:1,dat_ext:1,dat_intersect:1,dat_mask:1,dat_matrix:1,dat_out:1,dat_union:1,data:[1,2],data_and_tool:1,data_comb:1,data_extract:[],data_matrix12:1,data_matrix1:1,data_matrix22:1,data_matrix2:1,data_obj:1,data_processing_tool:[],databas:[1,2],databasexyz:1,datafil:1,datanam:1,dataset:1,datatyp:1,datavalueset:1,datcel:1,datdir:1,date:1,datenum:1,datestr:1,datout:1,datsig:1,dattyp:1,datv:1,david:1,davidson:1,dbmethod:[1,2],dcm:1,dcon:1,deactiv:1,deal:1,deblank:[1,2],debug:1,dec:1,decil:1,decim:1,declar:1,decompos:1,decomposit:1,deconv:1,deconvolut:1,deconvolv:1,decor:[],decreas:1,dedetrend:1,deep:1,def:1,defin:[1,2],define_sampling_spac:1,definit:1,degre:[1,2],delai:1,delayeq:1,delet:[1,2],delete_ana_img:1,delim:1,delimit:1,deliv:1,delta:[1,2],delta_hir:1,deltadist:1,deltadon:1,deltadon_avg:1,deltatend:1,demand:[],demo2:1,demo:1,denan:1,dendrogram:1,denois:1,denoised_canlab:[1,2],denot:[1,2],densiti:1,dep:1,depend:[1,2],depfun_aggreg:1,depict:1,deprec:[1,2],depth:1,deriv:[1,2],descend:1,descent:[],describ:[1,2],descrip:1,descript:[1,2],design:[0,1,2],design_matrix:1,designfil:1,designx:[1,2],desir:1,det:1,det_logit:[1,2],det_logit_allstim:[1,2],detail:1,detect:[1,2],determin:[1,2],determinist:[1,2],detransit:1,detrend:1,dev:1,develop:1,devianc:1,deviat:[1,2],devinnei:1,df_error:1,df_model:1,dfb:1,dfe:1,dfm:1,dfwithin:1,dhr:1,diag:1,diaglinear:1,diagnost:[],diagon:1,diagquadrat:1,dice:1,dice_coeff:1,dice_coeff_imag:1,dichotom:1,dicom:1,dicom_tarzip:1,did:1,didn:[1,2],diff:1,differ:[1,2],difficult:1,difstat:1,dim4:1,dim:[1,2],dimens:[1,2],dimension:1,dip:[1,2],dir2cel:1,dir:[1,2],dir_wcard:[1,2],dire:[1,2],direct:1,direct_mtx:1,directli:1,directori:[1,2],directory_specif:[1,2],discard:1,discoveri:1,discret:1,discrimin:1,discuss:1,disdaq:1,disk:1,disord:1,disp:1,dispers:[1,2],displai:[1,2],display_plot:1,display_slic:1,displaym:[1,2],disptyp:1,dissim:1,dissimilar:[1,2],dist:[1,2],dist_from_hyperplane_xv:1,dist_hi:1,dist_i:1,dist_n:1,dist_thresh:1,distanc:[1,2],distance_euclid:1,distinguish:1,distribut:[1,2],ditto:1,divid:[1,2],dm1:[],dm2:[],dmpfc:1,doasym:1,dobrain:1,doc:1,docent:1,dodetrend:1,doe:[1,2],doesn:[1,2],dofig:1,dohead:1,dohp:1,doind:1,doindiff:1,doindiv:1,doku:1,dolegend:1,dolin:1,dolp:1,domask:1,dominic_ricci:1,domontag:1,don:[1,2],done:[1,2],dool:1,doonerow:1,doortho:[1,2],doplot2:1,doplot:[1,2],doquad:1,doqual:1,dorandom:1,dorob:1,dorobust:1,dosav:1,doshad:1,dosmooth:1,dot:[1,2],dot_product:1,dotfig:1,doubl:1,doubt:1,doug:1,douniqu:1,dowithinst:1,download:[0,1],downsampl:1,downsample_canlab:1,downsample_delta:1,downsample_scnlab:1,downweight:1,dpsp002:1,dpsp002_spm:1,dpsp003:1,dpsp003_spm:1,drag:1,drastic:1,draw:1,draw_anatomical_roi_2008:1,drawlin:1,drawn:1,drawnow:1,drawslic:1,drawsyml:1,drawsymr:1,dream:[1,2],dreamio:1,drift:[1,2],drive:[],driven:1,drop:1,dsgn:[1,2],dsgnarg:[1,2],dsgninfo:[1,2],dslen:1,dsrate:1,dthresh:1,due:[1,2],dull:1,dummi:[1,2],dummyscan:1,duplic:[],dur:1,durat:1,dure:1,durectli:1,dwcard:[1,2],dx_beta:1,dynam:1,each:[1,2],earlier:1,easi:1,easili:1,ebay:1,econ:1,econflag:1,econometr:1,edat2:1,edat:1,edat_cel:1,edat_struct:1,eddi:1,edg:1,edgecolor:1,edit:[1,2],edu:[1,2],eeg:1,effect:[1,2],effect_size_map:[1,2],effici:[1,2],ehter:[],eidf:1,eig:1,eigenvalu:[1,2],eigenvari:[1,2],eigenvector:[1,2],eigenvetor:1,eigv:[1,2],eigval:[1,2],either:[1,2],elaps:[],elast:1,element:[1,2],elev:1,elimin:1,ellips:[1,2],ellipt:[1,2],eloffset:1,els:[1,2],elsewher:1,email:[1,2],embed:[1,2],emot:1,emotion_2s_z_val_fdr_05:1,empir:1,empti:[1,2],emul:1,enabl:[1,2],encapsul:1,end:[1,2],endian:[1,2],endval:1,enforc:1,engin:[1,2],engram:1,enlarg:1,enough:[],ensu:1,ensur:1,entail:1,enter:[1,2],entir:[1,2],entiti:1,entri:[1,2],epi:[1,2],epi_nam:[1,2],epoch:1,eprim:1,equal:[1,2],equat:1,equival:1,erase_and_displai:1,erase_str:1,eraseblob:1,erdf:1,err:1,errbar_width:1,error:[1,2],error_r:1,error_typ:1,errorbar:1,errorbar_horizont:1,errorbar_width:1,errorbarseri:1,errordata:1,errormatrix:1,errorwidth:1,errval:1,escapedstr:1,escapeforshel:1,esim:1,ess:1,essenti:[1,2],est:1,establish:1,estim:[1,2],estimateparam:1,etc:[1,2],euclidean:1,eval:1,evalu:1,even:[1,2],evenli:1,event:[1,2],event_level:1,event_pain_onli:1,eventdesign:1,eventmean:1,eventnam:1,events_onli:[1,2],ever:1,everi:[1,2],everyth:[1,2],everywher:1,evtonset:1,ewma3:1,ewma5:1,ewma:1,ewma_var:1,ewma_z:1,exact:1,exactli:1,examin:1,exampl:[1,2],example1:1,example2:1,example3:1,example4:1,example_barwani:1,example_pi:1,example_plot:1,examplev:1,exce:1,excel:1,excelfilenam:1,except:1,exclud:[1,2],exclus:1,execut:1,exist:[1,2],existing_ax:1,existingfig:1,exit:1,exp0:1,exp1:1,exp2:1,exp3:1,exp:[1,2],exp_dat:1,exp_tim:1,exp_vs_percept:1,expand:1,expand_4d_filenam:1,expect:[1,2],experi:[1,2],experimentfilenam:1,experment:[1,2],expfun:1,explain:[1,2],explan:1,explicit:1,explicitli:1,explod:1,expon:1,exponenti:1,expr:1,express:[1,2],expt:[1,2],exptm:[1,2],ext:1,extend:1,extended_output_flag:1,extens:[1,2],extent:1,extent_thresh:1,extern:1,extr:1,extra:1,extract:[1,2],extract_contrast_data:1,extract_data:1,extract_dxbeta_data:1,extract_from_roi:1,extract_gray_white_csf:1,extract_image_data:1,extract_ind_peak:1,extract_indiv_peak_data:1,extract_mask:1,extract_raw_data:1,extract_roi:1,extract_roi_averag:1,extrem:1,f_cols_of_interest:1,f_ix0:1,f_test_full_vs_r:1,f_test_no_intercept:1,face:1,facealpha:[1,2],facecolor:1,facevertexcdata:1,facilit:1,fact:[1,2],factor:[1,2],factoran:1,fail:1,fairli:1,fake:1,fall:1,fals:[1,2],fashion:1,fast:[1,2],fast_conv_fft:1,faster:1,fastest:1,fastmontag:1,fault:1,fda:1,fdr:1,fdrp:1,fdrsig:1,fdrthresh:1,featur:1,feb:1,few:1,fewer:[1,2],fft:[1,2],fft_calc:[1,2],fft_plot_scnlab:1,fgh:1,fhan:1,fhandl:1,fhwm:1,fid:1,field:[1,2],field_skip:1,fieldnam:1,fieldpath:1,fifth:1,fig:1,fig_han:1,fig_handl:1,figh:1,figur:[1,2],figure_galleri:1,figuresa:[1,2],file:[1,2],file_arrai:1,file_list:1,file_wcard:[1,2],filenam:[1,2],filename_get_new_root_dir:1,filename_tool:[],filenames_or_v:1,files_exist:1,filesep:1,fill:[1,2],fill_area_around_point:1,fill_handl:1,fillh:1,filt:1,filter:[1,2],filteradjust:1,filtertyp:1,find:[1,2],findobj:1,fine:1,finish:[1,2],fir2htw2:1,fir:[1,2],fir_fil:1,fircondit:1,firnam:1,first:[1,2],first_lev_var:1,first_vol:1,firstimg:1,fisher:1,fisherp:1,fisherz:1,fit:[1,2],fit_and_averag:1,fit_canonical_hrf:[1,2],fit_gl:1,fit_gls_brain:1,fit_logit2:[1,2],fit_logit:[1,2],fit_sfir:[1,2],fitlin:1,fitting_fun:1,fitx:1,fix:1,fixed_input:1,fixed_inputs1:1,fixed_tsu:1,fixin:1,fklsf:[],flag:[1,2],flat:1,flatdat:1,flatten:1,fleiss:1,flexibl:1,flip:1,flip_endian:1,flipi:1,float32:1,float64:1,fly:1,fmri:[1,2],fmri_dat:1,fmri_data:[],fmri_data_obj:1,fmri_data_object:1,fmri_fil:[1,2],fmri_imag:1,fmri_mask_imag:[],fmri_mask_thresh:[],fmri_mask_thresh_canlab:[1,2],fmri_model:[],fmri_model_obj:1,fmri_obj_imag:1,fmri_spline_basi:1,fmri_timeseri:[],fmridat:1,fmridat_obj:1,fmridisp:1,fmridisplai:[],fmridisplay_helper_funct:[],fmristat:[],fname:1,fob:1,fold:1,folder:1,follow:[1,2],font:1,fontsiz:1,foo:1,forc:1,force_delta:1,forcenam:1,forcesup:1,form:1,format:[1,2],formula:[1,2],forward:1,found:[1,2],found_path:1,foundat:[],four:1,fourier:1,fouriernotch:1,foursurfac:1,fout:[1,2],fout_1:[1,2],fov:1,fpr:1,fprintf:1,frackowiak:1,fraction:[1,2],frame:1,fread:1,free:1,freedom:[1,2],freehand:1,freq2:1,freq:[1,2],frequenc:[1,2],friedman:[],friston:1,frith:1,from:[1,2],from_multireg:[1,2],frontal:1,frustrat:1,fsl:[1,2],fsl_output_typ:1,fsloutputtyp:1,fter:[],full:[1,2],full_model_gv_p_v_np:1,full_path_of_movie_output_fil:1,fullfil:[1,2],fulli:1,fullpath:1,function_cal:1,function_handl:1,function_nam:1,functional_mask:1,functionnam:1,funhan:[],funhandl:1,funki:1,funnam:1,funtion:1,furnish:[],further:1,futur:1,fval:1,fwe:1,fwhm:[1,2],ga_example_script:[1,2],galleri:1,gambl:1,gamma:1,gamrnd:1,ganglia:1,garson:1,gauss:1,gaussian:[1,2],gaussian_mix:1,gca:1,gcf:1,geisser:1,genconverg:1,gener:[1,2],generalis:1,genet:1,genetic_algorithm_readm:[1,2],genfun:1,gensiz:1,geom2d:1,get:[1,2],get_ax_slic:1,get_cluster_volum:1,get_condition_assign:1,get_filenam:[1,2],get_filename2:[1,2],get_first_help_lin:1,get_from:1,get_htw_image_nam:1,get_logit:[1,2],get_mask_vol:1,get_max_t:1,get_parameters2:[1,2],get_session_x:1,get_snr:1,get_var:1,get_wh_imag:1,getappdata:1,getclust:1,getdata:1,getfigclust:1,getfrom:1,getfullpath:1,getfunctnames2:1,getmeanqu:1,getpredictor:1,getrandom:1,getvertexcolor:1,getvif:[],ghost:[1,2],gianaro:1,gindx:1,git:[],github:[],give:[1,2],given:[1,2],glass:1,glassbrain_avi:1,glm:[1,2],glm_batch_tool:[],glm_multilevel:1,glmax:1,glmfit:1,glmfit_gener:1,glmfit_multilevel:1,glmfit_multilevel_varexplain:1,glmin:1,global:[1,2],global_t1:[1,2],globu:1,gm_mask:1,gnu:[],goal:1,goe:1,gone:1,good:[1,2],got:1,gouraud:1,gov:1,gradient:[1,2],grai:[1,2],grand:[1,2],grant:[],graph:1,graphic:1,graymask:1,graymatt:1,grayscal:1,great:1,greater:1,greatest:1,green:1,greenhous:1,grei:1,grid:[1,2],gridlinestyl:1,grname:[],gross:[1,2],group:[1,2],group_analys:1,group_anxiety_n35:[1,2],group_avg:1,group_avg_ref_lin:1,group_n35:[1,2],group_sadness_n35:[1,2],group_st:1,groupbi:1,groupmean:[1,2],groupspac:1,grow:1,grp:[1,2],grpcontrast:1,grpmean:1,grpmodeldir:[1,2],grpste:1,gtrim:[1,2],guess:1,gui:1,guid:1,guilt:1,guilti:1,h25_aerger:1,h_by_mod:1,h_mean:1,hair:1,half:[1,2],halfh:1,han:1,handl:[1,2],handle_numb:1,happen:1,hard:[1,2],hardcopi:1,harvei:1,has_header_row:1,hasti:[],hat:1,have:[0,1,2],haxaxi:1,haxfront:1,haxi:1,haxis3d:1,haxsagl:1,haxsagr:1,hchoic:1,hcmp:1,hconstraint:1,hdr:1,hdrf:[1,2],hdvabakjsbdakjsbdkajsdbakjskl:[],head3d:1,head:[1,2],header:[1,2],header_col:1,headernam:1,headhandl:1,heart:[1,2],heat:1,heat_trial:1,heatmap:1,heavili:[1,2],height:[1,2],height_mask:1,heighteq:1,heightp:1,heightthresh:1,help:[1,2],helper:1,helptext:1,hem:1,hemispher:[1,2],hemodynam:[1,2],henc:1,here:[1,2],herebi:[],hernandez:1,hewma2:1,hewma2_plot:1,hewma:1,hewma_cp:1,hewma_extract_voxel:1,hewma_from_raw_timeseri:1,hewma_gui:1,hewma_plot_bivari:1,hewma_plot_coord_btnupfcn:1,hewma_plot_cpmap:1,hewma_plot_runlen:1,hewma_runlen:1,hewma_save_timeseri:1,hewma_timeseri:1,hewma_timeseries_plot:1,hewma_util:[],hfig3d:1,hfigleg:1,hfigmain:1,hh1:1,hh2:1,hh3:1,hh_mm:1,hicolor:1,hidese:1,hierarch:1,high:[1,2],high_r:1,higher:[1,2],highest:[1,2],highli:[1,2],highlow:1,hightim:1,hill:1,hipp:1,hippocampu:1,hire:1,hist2:[1,2],hist:1,hist_un0:1,histogram:[1,2],histori:1,history_descrip:1,hit:1,hlight:1,hlm:1,hmhrfest:[1,2],hoc:1,hochberg:1,hold:[1,2],holder:[],holdout:1,holdout_set:1,hole:1,hole_s:1,holm:1,hope:[],hopefulli:[],horiz:1,horizont:[1,2],horribl:1,horzcat:1,hot:1,hotel:1,hotopen:1,how:[1,2],howev:[1,2],howto:1,hp_length:1,hparam:1,hpatch:1,hpf:1,hpfilter:1,hplen:1,hplength:1,hr_intercept:1,hrf:[1,2],hrf_est_toolbox2:[],hrf_fit:1,hrf_fit_one_voxel:[1,2],hrf_obj:1,hrf_satur:1,hrf_timecourse_cond0001:1,hrf_timecourse_cond0002:1,ht00_inst:1,hthreshold:1,html:[1,2],html_output:[1,2],html_save_dir:[1,2],http:1,htw:1,htw_from_fit:1,hubert:1,huge:1,human:1,hump:1,hvblock:1,hyndsight:1,hyper:[],hyperellipsoid:1,hyperparamet:1,hyperplan:1,hypothalamu:1,hypothesi:1,ica:1,icadat:1,icasig:1,icbm:1,icbm_area74:1,icbm_brainonly_1mm_seg1:1,icbm_loc:1,icc:1,iccvalu:1,id_numb:1,idata:1,idd:1,idea:1,ideal:1,ideal_deconv5:1,ideal_deconv6:1,ident:1,identifi:[1,2],idx:1,igl:1,igls_multicond:1,ignor:[1,2],ignore_miss:1,ihb_axes3dmenuclusteronli:1,ihb_axes3dmenuwholebrain:1,ihb_axestalspace3d:1,ihb_changetalvoxs:1,ihb_clr_axi:1,ihb_clr_front:1,ihb_clr_orig:1,ihb_clr_saggit:1,ihb_clr_surfac:1,ihb_clr_symm:1,ihb_clusterlevelprob:1,ihb_clusterpopup:1,ihb_cntaxi:1,ihb_cntfront:1,ihb_cntsagittal:1,ihb_cntsagittalr:1,ihb_cursorcoord:1,ihb_getclust:1,ihb_getclusterset:1,ihb_lighttalspace3d:1,ihb_lineorigin:1,ihb_linesymmetr:1,ihb_linewidthmenunorm:1,ihb_linewidthmenuthick:1,ihb_linewidthmenuthin:1,ihb_loadslic:1,ihb_renderermenuopengl:1,ihb_renderermenuzbuff:1,ihb_resetdefault:1,ihb_surfaceclust:1,ihb_talspac:1,ihb_talspace3d_fig:1,ihb_talspacedfl:1,ihb_talspaceleg_fig:1,ihb_talspacemain_fig:1,ihb_transparencymenu:1,ihb_transparencymenuhigh:1,ihb_transparencymenulow:1,ihb_transparencymenumedium:1,ihb_transparencymenuopaqu:1,ihb_volumeinvox:1,ihb_voxellevelprob:1,ihb_voxsizemenu111:1,ihb_voxsizemenu222:1,ihb_voxsizemenu444:1,ihbdfl_ax_info:1,ihbdfl_baxesisclusteronli:1,ihbdfl_color_clorig:1,ihbdfl_color_clsymm:1,ihbdfl_color_cntax:1,ihbdfl_color_cntfr:1,ihbdfl_color_cntsag:1,ihbdfl_color_surfac:1,ihbdfl_fr_info:1,ihbdfl_line_width:1,ihbdfl_main_gap:1,ihbdfl_main_height:1,ihbdfl_main_i:1,ihbdfl_main_info_h:1,ihbdfl_main_width:1,ihbdfl_main_x:1,ihbdfl_main_z:1,ihbdfl_min_size_to_draw:1,ihbdfl_render:1,ihbdfl_sl_info:1,ihbdfl_spm_fig_conman:1,ihbdfl_spm_fig_interact:1,ihbdfl_spm_fig_selfilewin:1,ihbdfl_sr_info:1,ihbdfl_tal_x_vox:1,ihbdfl_tal_y_vox:1,ihbdfl_tal_z_vox:1,ihbdfl_transpar:1,ihbdfl_xlimd:1,ihbdfl_xlimi:1,ihbdfl_ylimd:1,ihbdfl_ylimi:1,ihbdfl_zlimd:1,ihbdfl_zlimi:1,iimg_check_indx:1,iimg_check_volinfo:1,iimg_cluster_ext:1,iimg_cluster_index:1,iimg_cluster_intersect:1,iimg_cluster_prun:1,iimg_clusters2indx:1,iimg_data:1,iimg_get_data:1,iimg_indx2clust:[1,2],iimg_indx2contiguousxyz:1,iimg_intersect:1,iimg_make_sure_indx:1,iimg_mask:1,iimg_multi_threshold:1,iimg_nam:1,iimg_princomp:1,iimg_princomp_displai:1,iimg_read_img:1,iimg_read_vol:1,iimg_reconstruct_3dvol:1,iimg_reconstruct_vol:1,iimg_reslic:1,iimg_smooth_3d:1,iimg_sphere_timeseri:1,iimg_stouff:1,iimg_threshold:1,iimg_weighted_ttest:1,iimg_write_imag:1,iimg_xxx:1,iimg_xyz2indx:1,iimg_xyz2spher:1,illustr:[],ilogit:[1,2],im_fil:1,ima:[1,2],imag:[1,2],image2clust:1,image2coordin:1,image_computation_tool:[],image_eval_funct:1,image_eval_function_multisubj:1,image_histogram1d:1,image_histogram:1,image_indx:1,image_intensity_histogram:[1,2],image_list:1,image_math:1,image_nam:1,image_obj:1,image_object:1,image_scatterplot:1,image_similarity_plot:1,image_similarity_plot_bucknermap:1,image_skip_interv:1,image_space_tool:[],image_threshold:[],image_vector:[],imageclust:1,imagecluster_block:1,imagelist:1,imagenam:1,images_per_sess:1,imagesc:[1,2],imcalc:1,imdat:1,imfilenam:[1,2],img1:1,img2:1,img2surf:1,img2voxel:1,img:[1,2],img_fil:1,img_hist2:[1,2],img_hist:[1,2],img_nam:1,imgdat:1,imgdata:1,imgfil:[1,2],imginfo:1,imgnam:[1,2],imgs2:1,imgs_to_extract_from:1,imgtyp:1,imgvec:1,immedi:[1,2],imnam:[1,2],imp:1,impact:1,implement:[1,2],impli:1,implicit:[1,2],implicit_mask:[1,2],implicit_masking_method:[1,2],implicitli:1,implict:[1,2],implied_dissim:1,implod:1,importantli:[1,2],importdata:1,impos:1,improv:[1,2],impuls:1,imput:1,imraw_data:1,imtr:1,in1:1,in2:1,in_mask_logical_vector:[1,2],inc:1,incis:1,includ:[1,2],includezero:[1,2],inclus:[1,2],incompat:1,inconsist:1,incorpor:1,incorrect:[],increas:1,increment:1,ind2:1,ind2sub:[1,2],ind:1,indclustertoview:1,indeo5:1,indepen:[1,2],independ:1,indepnd:1,index:[0,1],index_image_manip_tool:[],indiv:1,indiv_timeseri:1,individu:[1,2],indlin:1,indscal:1,indscalf:1,indx:1,ineffici:1,inequ:1,inf:1,infer:[1,2],inference_opt:1,inferenti:1,inferior:1,infin:1,infinit:1,inflat:[1,2],influenc:[1,2],info:[1,2],inform:[1,2],infostr:1,inhib2_cluster_barplot:1,inhib:1,inhomogen:[1,2],ini:[],init:1,initi:[1,2],inlin:1,inmask:[1,2],inmaskvox:[1,2],innaccur:1,innam:1,inner:1,inpoint:1,inpress_2007_emotion_handbook_2006:1,input:[1,2],input_activ:1,input_threshold:1,input_v:1,input_valu:1,inputarg:1,inputhrf:1,inputimg:[1,2],inputmean:1,inputopt:1,insert:1,insid:1,instabl:[],instal:[],instanc:1,instead:[1,2],insula_from_part1:1,int16:1,int32:1,int_dat:1,intcpt:1,integ:[1,2],integr:[1,2],intellig:1,intend:1,intens:[1,2],intensity_threshold:1,intepret:1,inter:1,interact:1,interacti:1,intercept:[1,2],intercept_model:1,interconnect:1,intercorrel:1,interest:[1,2],intermedi:1,intern:[1,2],interp3:1,interp:1,interp_imag:1,interp_method:1,interpol:1,interpret:[1,2],interquartil:1,interrog:1,intersct:1,intersect001:1,intersect:1,intersect_cl:1,interv:1,intext2:[1,2],intext_countloc:[1,2],intraclass:1,intrins:1,introduc:1,introductori:1,inv:1,invalid:[1,2],invar:1,invers:[1,2],invert:1,invis:1,invok:1,involv:1,invp:[1,2],invpview:[1,2],ipython:[],iqrmult:1,irl:1,irrelev:1,isconverg:1,isdiff:1,isdir:1,isfield:1,ishot:1,isi:1,isn:1,isnan:1,isnul:1,isocap:1,isocapshandl:1,isok:[],isosurfac:1,isosurfacehandl:1,ispain:1,isspmclust:1,issu:1,item:1,iter:1,ith:1,itself:1,iub:[],ivec:1,ivecobj:1,ivoldat3d:1,ix0:1,iyfj:[],jackson:1,jamil:1,jare:[],jet:1,job:[1,2],john:1,johnson:1,join:1,joint:[1,2],joint_hist:[1,2],jolliff:1,journal:1,judg:1,juli:[],jump:1,june:1,just:[1,2],kcl:1,kdensiti:1,keep:1,keep_exist:[1,2],keepdt:1,keepit:1,keepzero:1,keepzerosmask:1,kei:[1,2],keith:1,kendal:1,kendalla:1,kendallb:1,kern_siz:1,kernel:[1,2],kernels:1,kevin:1,keyword:[1,2],kind:1,knot:1,knotrat:1,know:1,known:1,kragel:1,kragelemot:1,kramer:1,kreyszig:1,kruskal:1,krzanowski:1,ksdensiti:1,ktotalv:[1,2],kurtosi:[1,2],kxi:1,l2_covt:1,l2m:1,lab:1,labar:1,labdata:1,label:[1,2],label_group:1,label_mask:1,labl:1,laboratori:1,lag:1,lam:1,lambda:1,larg:1,larger:1,largest:1,largest_region:1,lasso:1,lasso_cv:[],lasso_num:1,lasso_rocha:[],lassoglm:1,lassopcr:1,lasspcrmatlab:[],last:[1,2],latenc:1,latent:1,later:1,latest:1,layout:1,lazar:1,lbpa40:1,lchoic:1,lcl:1,lead:1,leaf:1,learn:[],least:1,leav:[1,2],lebesgu:1,left:[1,2],legaci:1,legend:1,legland:1,legmat:1,len:1,length:[1,2],lengthlegend:1,lenmat:1,less:1,let:1,letter:[1,2],lev:1,level:[1,2],levonp:1,lew:1,liabil:[],liabl:[],liber:1,librari:1,licens:[],life:1,light:1,lightangl:1,lightfollowview:1,lightrestoresingl:1,like:[1,2],likelihood:1,likeratio:1,limbic:1,limit:[1,2],lindetrend:1,lindquist:[1,2],line:[0,1,2],line_handl:1,line_plot_multisubject:1,linear:[1,2],linear_detrend:1,linear_trend:1,linearli:1,linearpain:1,linebar:1,linecolor:1,lineh:1,linehx:1,linemat:1,lineplot:1,lineplot_column:1,linespec:1,linestyl:1,linethick:1,linewidth:1,link:[1,2],linkag:1,linkage_t:1,linkagetyp:1,linkfun:1,linktyp:1,list:[1,2],littl:[1,2],live:[1,2],load:[1,2],loadimg:1,local:1,locat:[1,2],locflag:1,loess:1,loess_multilevel:1,loess_parti:1,loess_xi:1,loessord:1,loftu:1,log:1,log_joint:1,logic:1,logist:[1,2],logit:[1,2],loh:[1,2],london:1,longer:1,longest:1,look:[1,2],loop:1,lose:[],loss:[1,2],lot:1,lotim:1,low:1,lowcolor:1,lower:[1,2],lowest:1,lparam:1,lpf:1,lsqisoton:1,lui:1,luisfilt:1,luk:[],luka:[],luke:1,luna:1,m_pval:1,mac:1,machin:1,macmillan:1,macosx_10:1,mad:[1,2],made:1,madlimit:1,mag:1,magenta:1,magic:1,magnitud:[1,2],magnu:1,mahalanobi:[1,2],mai:[1,2],main:1,mainli:1,major:1,make3davi:1,make3davi_uncompress:1,make:[1,2],make_conv_mtx:[1,2],make_figure_into_orthview:1,make_htw_contrast_imag:1,makebinari:1,makefig:1,makelegend:1,malanobi:[1,2],malform:1,man:1,mandatori:1,mani:[0,1,2],manual:[],map:[1,2],map_data_to_colormap:1,map_to_image_spac:1,map_to_world_spac:1,mapnam:1,march:1,mark:1,marker:1,markercol:1,markerfacecolor:1,markers:1,markerstyl:1,markertyp:1,markov:1,martin:[],mask1:1,mask2:1,mask2clust:1,mask2struct:1,mask2surfac:1,mask2voxel:[1,2],mask3:1,mask:[1,2],mask_all_valid:1,mask_char_nam:1,mask_cl:1,mask_clust:1,mask_create_from_image_set:1,mask_create_results_mask:1,mask_fish:1,mask_imag:1,mask_intersect:1,mask_intersection2:1,mask_nam:[1,2],mask_princomp:1,mask_stouff:1,mask_thresh:[1,2],mask_union:1,mask_vol:1,mask_xyzlist:1,maskclu:1,maskdim:1,maskdir:[1,2],masked_dat:1,masked_indx:1,masked_indx_data:1,masked_t:1,masked_vol:1,maskfil:[1,2],maskfilenam:[1,2],maskimag:[1,2],maskimg:1,maskindx:1,maskinfo:1,masknam:[1,2],maskobj:1,maskstat:[1,2],maskvec:1,maskz:1,mass:1,masson:1,mat1:1,mat2:1,mat:[1,2],match:[1,2],matchto:1,materi:1,mathemat:1,matlab2010a:[],matlab:[0,1,2],matlabr12toolboxmatlabdatatypessqueez:1,matric:[1,2],matrix:[1,2],matrix_direct_effect:1,matrix_direct_effects_ridg:1,matrix_eval_funct:1,matrixm:1,matter:[1,2],matthew:1,max95est:1,max:[1,2],max_network:1,max_shift:1,maxalpha:1,maxclust:1,maxcolor:1,maxim:1,maxima:1,maximg:1,maximum:[1,2],maximumum:1,maxiter:1,maxlik:1,maxlin:1,maxmask:1,maxmem:1,maxr:1,maxrow:[1,2],maxslic:1,maxt:1,maxtim:1,mc_setup:1,mcd:1,mcgraw:1,mclellan:1,mcol:1,mcr:1,mdsfig:1,mdsfig_3d:1,mea_visualis:1,mean:[1,2],mean_func_fil:[1,2],mean_gray_matter_mask:1,mean_imag:1,mean_ravol:1,mean_snr:[1,2],mean_spikes_per_imag:[1,2],meanabserr:1,meandat:1,meanest:1,meaning:1,means_for_unique_i:1,meantim:[],measur:[1,2],med:1,medc:1,media:1,medial:1,median:1,mediap:1,mediat:1,mediated_mtx:1,mediation_brain_result:1,mediation_brain_surface_fig:1,mediation_setup:1,mediation_xprepvsb_mbrain_yhr:1,mediodors:1,medium:1,meet:1,member:1,membership:1,memori:[1,2],meng:[],menu:1,merchant:[],merg:1,merge_clust:1,merge_nearby_clust:1,mesg:1,mesh:1,meshgrid:1,mess:1,messag:1,met:1,meta:1,meta_cluster_tool:1,meta_stochastic_activation_blob:1,meth:1,method:[1,2],method_nam:1,metric:[1,2],mia:1,michigan:[],microsoft:1,midbrain:1,midcolor1:1,midcolor2:1,midcolor:1,middl:1,might:1,milimet:1,millimet:1,mimic:1,min95est:1,min:1,min_cluster_s:1,min_dist:1,mincolor:1,mind:1,mind_res_net_fmri_course_2008:[1,2],minh:1,minim:[1,2],minimg:1,minimum:1,minimum_cluster_s:[1,2],minmask:1,minor:[],minsiz:1,minu:1,minut:[],mirror:1,misc_util:[],miscellan:[],misclass:1,misclassif:1,misclassifi:1,mismodel:[1,2],miss:[1,2],missing_imag:[1,2],missing_valu:[1,2],missing_vox:[1,2],mistak:[],mix:1,mixedsig:1,mixtur:1,mm2voxel:1,mm_center:1,mm_distanc:1,mmdeep:1,mni2tal:1,mni:1,mni_tsu:1,mod:1,modal:1,moddf:[1,2],mode:[1,2],model1:[1,2],model3:[1,2],model:[1,2],model_building_tool:[],modeldir:[1,2],modfit:[1,2],modif:[],modifi:1,modifiedconv:1,modr:[1,2],modul:[0,1],modulator_cent:1,moment:[1,2],monkei:[],monotonic_regress:1,mont:1,montag:1,montage_clust:1,montage_clusters_maxslic:1,montage_clusters_medi:1,montage_clusters_point:1,montage_clusters_text2:1,montage_clusters_text:1,montage_image_worslei:1,montagetyp:1,more:[1,2],most:[1,2],motion:[1,2],mous:1,mov:1,move:1,movement:[1,2],movement_param:[1,2],moveslic:1,movi:1,movie_of_slice_timeseri:1,movie_output_fil:1,movie_stillfram:1,movienam:1,moving_averag:1,mri1:1,mri_data:1,ms_cond:1,ms_subject:1,ms_total:1,msb:1,msdb:1,msdstd:1,mse:1,msk:1,mspec:1,mtotalv:[1,2],mtx:1,much:[1,2],muck:[],mueller:1,multcomp_group:1,multcomp_spati:1,multcompar:1,multi:[1,2],multi_threshold:1,multiclass:1,multicolinear:[1,2],multicollinear:[],multidimension:1,multilev_medi:1,multilevel:1,multipl:[1,2],multipli:[1,2],multireg:[1,2],multivar_dist:[1,2],multivari:[1,2],multval:1,must:[1,2],mutipl:1,mutual:[1,2],mv_distanc:[1,2],mvarnam:1,mvmt:[1,2],mvmt_baseline_rsquar:1,mvmt_rsquar:1,mvmtrsq:1,mvnrnd:1,mvroi:1,mvroi_mdsfig_plot2:1,mvroi_mdsfig_plot_sepst:1,mvroi_mdsfig_plugin2:1,mvroi_mdsfig_plugint2:1,mvroi_plot_fir:1,mx1:1,mxc:1,my_function_nam:1,my_image_nam:1,my_image_vector:1,my_mean_imag:1,my_mm_coord:1,my_model:1,my_on:1,my_rgb_color:1,my_st:1,mya:1,myalpha:1,mycol:1,mycolor:1,mycon:1,mycov:1,mydelimit:1,mydir:[1,2],myfft2:1,myfft:[1,2],myfield1:1,myfield2:1,myfield:1,myfil:1,myimag:1,myimg:1,mylight:1,mymontag:1,myoutnam:1,myradiu:1,mysavedir:1,myset:1,mystd:[1,2],mytext:1,myview:1,myz:[1,2],n15_avgpet:1,n15_avgpet_brain:1,n_bin:1,n_condit:1,n_in_column:1,n_in_sampl:1,n_in_set:1,n_inmask:1,naiv:1,name1:1,name2:1,name:[1,2],names_t1:[1,2],namesfield:1,nan:[1,2],nancorr:[],naninsert:1,nanmean:1,nanremov:1,nanstd:1,nanvec:1,natur:1,nbasi:[1,2],nbin:[1,2],nboot:1,ncl:1,nclass:1,ncond:1,ncondit:1,ndim:1,nearest:1,nearest_dist:[],necessari:[1,2],necessarili:1,need:[1,2],needless:1,neg:1,neg_colormap:1,negcl:1,negcm:1,negcolor:1,negneg:1,negpo:1,neighbor:1,neighbour:1,neither:[1,2],nest:1,net:1,nets:[],network:1,neural:1,neuroimag:1,neurolog:1,neurosynth:[],nevent:1,new_fil:1,new_sampr:1,new_str:1,new_struct:1,new_var:1,new_voxs:1,newax:1,newcl:1,newcolormap:1,newdat:1,newfig:1,newroot:1,newvx:[],next:[1,2],nfold:1,nheaderrow:1,nibabel:[],nice:1,nichol:1,nifit:1,nifti:[1,2],nigra:1,nih:1,nii:[1,2],nimag:1,nimg:1,nimh:1,niter:1,nkx:1,nlcon:1,nlevel:1,nmb:1,nmd:1,nmdsfig1d:1,nmdsfig:1,nmdsfig_fil:1,nmdsfig_legend:1,nmdsfig_output:1,nmdsfig_tool:1,nneed:1,nnhe:[1,2],nnmfscore:[1,2],no_preproc:1,no_surfac:1,noampscal:1,nobin:1,noblob:1,noboot:1,nodb:1,node:1,nodelet:[1,2],nodisplai:1,nodraw:1,nofig:1,nofigur:1,nofil:1,nofuzzi:1,nograph:1,nohead:[1,2],nohtw:1,noind:1,noint:1,nointercept:1,nois:[1,2],noise_arp:1,noisemodel:1,noisevar:1,noisevector:1,nolin:1,nolink:[1,2],noll:1,nomin:1,nomontag:1,non:[1,2],none:1,nonempti:1,noninfring:[],nonlin_fit:1,nonlin_param_mod_brain:1,nonlin_param_modul:1,nonlin_parammod_predfun:1,nonlinear:1,nonneg:1,nonnoc_v6_109subjmap_mean:1,nonorm:1,nonormfit:1,nonparametr:1,nonrobust:1,nonstationari:1,nonzero:1,noopt:1,noorthview:1,nooutlin:1,nooutput:1,nooverlap:1,nopcr:1,noplot:[1,2],nopoint:1,nopreproc:1,noprint:1,nor:[1,2],norder:[1,2],noremov:1,noreshap:1,noresidu:1,noresult:[1,2],noreview:[1,2],norm:[1,2],norm_check:[1,2],norm_mask:1,norm_vs_templ:[1,2],normal:[1,2],normaldir:1,normalizedrank:[],norminv:1,normrnd:1,nosep:1,noslic:1,nosmooth:1,nostar:1,notabl:1,notch:1,note:[1,2],notebook:[],notext:1,notfil:1,noth:[1,2],notic:[],notif:[1,2],notx_p05:1,noundershoot:1,nout:1,nov:[],novel_stimuli_run1:[1,2],novel_stimuli_run2:[1,2],noverbos:[1,2],noviolin:1,now:[1,2],nperm:1,nps_by_studi:1,nps_thresh:1,nps_thresh_smooth:1,nrep:1,nresampl:1,nrm:1,nrun:1,nscalped_f:[1,2],nscalped_ft1:[1,2],nscan:1,nsess:[1,2],nsf2:[],nsf:[1,2],nsub:1,nsubj:1,nsubject:1,nterm:1,ntest:1,nth:[1,2],ntotalprocess:1,ntotalvox:1,ntrial:1,ntrim:1,nuclei:1,nucleu:1,nuisanc:[1,2],nuisance_cov:[1,2],nuisance_cov_estim:1,nuisancex:[1,2],nullmax:1,nullmaxt:1,num2str:[1,2],num:1,num_disdaq_vol:1,num_imag:[1,2],num_outli:1,num_vols_per_run:1,num_vox:1,number:[1,2],numc:1,numclust:1,numcompon:1,numer:1,numfram:1,numgen:1,numpi:[],numpiec:1,nums_from_text:1,numsecond:1,numvox:1,nvar:1,nvol:1,nvols_per_run:1,nvox:1,nvoxel:[1,2],nx1:1,nxvxt:1,obj1:1,obj2:1,obj:[1,2],obj_out:1,object:[],object_nam:1,objecthandl:1,objfun:1,objfun_ga:1,objhan:1,obji:1,objtyp:1,obs_dist:1,observ:[1,2],obsk:1,obsolet:1,obtain:1,obviat:[],obvious:[],occas:[1,2],occur:[1,2],oct:[1,2],odd:1,oddbal:[1,2],off:[1,2],offic:1,offset:1,ofilenames_or_v:1,often:[1,2],ofun:1,ohi:[],ohni:[],old:1,old_str:1,old_struct:1,old_var:1,older:1,oliv:1,ols_z_0001:1,omax:1,omin:1,omit:[1,2],ommit:1,omnibu:1,onc:[1,2],one_sample_t_test:[1,2],onecolor:1,oneinsert:1,onerow:1,onli:[1,2],onlin:[],onlycon:[1,2],onlyresult:[1,2],ono:[],onset:[1,2],onsets2:1,onsets2delta:[1,2],onsets2dx:1,onsets2fmridesign:1,onsets2parametric_mod_x:1,onsettim:[],onsp:1,onto:1,ooc:1,ooc_indic:1,ooc_vector:1,opaqu:1,open:1,opengl:1,oper:[1,2],opi:1,oppos:1,opt:1,optim:[1,2],optimize_rand_search:[1,2],optimizedesign11:[],optimizega:[1,2],optimizega_epoch:[1,2],option:[1,2],optional_input:1,optional_output:1,options_structur:1,optout:1,optstr:1,orang:1,orcutt:1,order:[1,2],ordinari:1,org:1,organ:1,orient:[],orig_cluster_indx:[],orig_sampr:1,orighz:1,origin:[1,2],ortho:[1,2],orthogon:[1,2],orthview:[1,2],orthviews_multiple_obj:1,osvd:1,osx:1,other:[0,1,2],other_output:1,other_output_cv:1,other_output_cv_descrip:1,other_output_descrip:1,otherwis:1,ouput:1,our:1,out:[1,2],out_nam:1,outcel:1,outcom:1,outcome_dat:1,outcome_method:1,outdata:1,outimagelabel:1,outlier:[1,2],outliers_rmssd:1,outlin:1,outlinecol:1,outlinecolor:1,outlinewidth:1,outnam:1,outp:1,outpoint:1,output:[1,2],output_basedir:[1,2],output_directori:[1,2],output_nam:1,outputdir:1,outputfil:1,outputnam:[1,2],outsid:[1,2],outside_rang:[],outtyp:[],ov_mat:1,over:[1,2],overal:[1,2],overall_sw:1,overlai:1,overlaid:[1,2],overlap:1,overlap_29_aug:1,overlapdat:1,overlayimagenam:1,overrid:1,overview:[1,2],overwrit:[1,2],overwritten:1,ovl:1,ovlcolor:1,ovlp:1,own:1,oxford:1,oxn:[1,2],p_cols_of_interest:1,p_obs_act_given_class:1,p_omnibu:1,p_sig:1,p_vs_c_heat:1,pa0_given_t:1,pa1_given_not_t:1,pa1_given_t:1,packag:[0,1],pad1:1,pad2:1,pad3:1,pad4:1,pad5:1,pad6:1,pad:1,padwithnan:1,page:[0,1,2],pagesetup:1,pain:1,pain_meta_fmridisplay_example_sagitt:1,pair:[1,2],pairwis:1,pairwise_diff:1,pakhomov:1,pallidu:1,panda:[],pane:1,panel:1,paper:1,paragraph:[],parallel:[1,2],param:[1,2],paramet:[1,2],parametr:1,parametric_singleregressor:1,parametric_standard:1,params_obj:1,parasaggit:1,parasagitt:1,parcel:1,parcel_cl:1,parcel_cl_avg:1,parcel_cl_nmd:1,parcel_cl_nmds_plot:1,parcel_clust:1,parcel_complete_set:1,parcel_imag:1,parcel_images_output:1,parcellation_info:1,parcellation_info_tor_mask_try1:1,parcellation_tool:[],parfor:1,park:1,parmet:1,parpool:1,pars:1,parse_char_to_cel:1,parse_edat_txt:1,part:[1,2],partial:1,partialr:1,particip:1,particular:1,particularli:1,partit:1,partition_variables_indevel:1,pass:[1,2],patch:1,patch_handl:1,path:[0,1,2],pathtomaskfil:[1,2],patient_id:1,patt:1,patter:[1,2],pattern:[1,2],pattern_exp_valu:1,pattern_express:1,paus:[1,2],pbn:1,pca:[1,2],pca_imag:1,pcacov:1,pcare:1,pci:1,pcitarget:1,pcl:1,pclustlev:1,pcr:1,pdf:[1,2],pdist1:1,pdist:1,peak:[1,2],peak_coordin:[],peakeq:1,pearson:1,peform:1,pemut:1,penal:1,penalti:1,per:[1,2],perc:[1,2],percent:1,percent_sig_imag:1,percentag:1,percentchang:1,percentil:1,percvarf:1,percvarp:1,perform:[1,2],period:[1,2],perm:1,permindx:1,permiss:[1,2],permit:[],permsign:1,permtest:1,permut:1,permute_setupperm:1,permute_signtest:1,person:[],perspect:1,pet:1,peter:1,pexp1:1,pexp:1,pfile:1,phase:1,phi:1,phil:1,php:1,physical_pain:1,physio:[1,2],physiolog:[1,2],pick:[1,2],pick_atlas_pal_larg:1,pid:1,pie:1,piec:1,piecewis:1,pimg1:1,pimg:1,pine:1,pinputnam:1,pinv:1,pip:[],pixel:1,pkx:1,place:[1,2],placebo:1,plai:1,plane:1,platt:1,platt_scal:1,plausibl:1,player:1,pleas:[1,2],plegend:1,plot3:1,plot3d:1,plot:[1,2],plot_correl:1,plot_correlation_samefig:1,plot_current_orthviews_coord:1,plot_dx_hrf:1,plot_dx_hrfs_indiff:1,plot_ellips:1,plot_error:1,plot_horizontal_lin:1,plot_hrf_model_fit:1,plot_ideal_deconv5:1,plot_joint_hist_contour:[1,2],plot_matrix_col:1,plot_model_fit:1,plot_points_on_slic:1,plot_var:1,plot_vertical_lin:1,plotal:1,plotdesign:1,plotfig:[1,2],plotflag:1,plothistogram:1,plotlinehor:1,plotmat:1,plotmethod:1,plotout:1,plotst:1,plotstr:1,plotsummari:1,plottitl:1,plssquash:1,plu:1,plugin:1,ply:[],pm_val:1,pmean:1,pmod:1,png:[1,2],point:[1,2],pointcolor:1,pointloc:1,pointsiz:1,polar:1,poli:1,polin:1,polygon:1,polyphas:1,pool:1,poorli:1,pop:1,popul:1,popular:1,portion:[],pos_colormap:1,poscl:1,poscm:1,poscolor:1,posit:[1,2],posneg:1,posneg_separ:1,pospo:1,possibl:1,post:1,posterior:1,potenti:[1,2],pout:[1,2],pow0:1,pow2:1,pow3:1,pow:1,power:[1,2],power_from_vari:[1,2],power_loss:[1,2],powerloss:[1,2],powerpoint:1,powloss:[1,2],pows1:1,pows2:1,ppm:1,ppv:1,practic:[1,2],prctile:1,pre:1,prealloc:[],precis:1,preclud:[1,2],pred:1,pred_outcome_r:1,predfun:1,predict:1,predict_test_suit:1,predictor:[1,2],prednam:1,predrang:1,prefer:[1,2],prefix:[1,2],preliminari:1,prep:[],prepar:1,prepend:[1,2],preproc:[1,2],preprocess:[1,2],preprocessed_dat:1,preprochandl:1,preproci:1,preprocx:1,prescrib:1,present:1,preserv:1,press:1,presum:[1,2],pretti:[1,2],prevent:1,previou:1,previous:1,prim_p:1,primari:1,primarili:[1,2],primary_p:1,princeton:1,princip:[1,2],principl:1,princomp:1,princomp_largedata:1,print:[1,2],print_matrix:1,print_summari:1,printfil:[1,2],printout:[1,2],prior:1,priori:1,priors_pt:1,privat:1,prob:1,probabl:[1,2],probe:[1,2],problem:[1,2],procedur:1,process:[1,2],produc:[1,2],product:1,profil:1,program:[1,2],programm:1,progress:1,progressbar:1,project:1,prompt:1,promt:1,prop1:1,prop:1,prop_correct:1,prop_correct_by_class:1,propcol:1,proper:1,properli:1,properti:1,property1:1,property2:1,propertynam:1,propertyvalu:1,propnam:1,proport:[1,2],propval1:1,propval2:1,prospect:1,prospect_optimize_design:1,prospect_organ:1,protect:[1,2],provid:1,prplot:1,prplot_multilevel:1,prune:1,pruneclust:1,prunese:1,psdx:1,pseudo:[1,2],pseudocolor:1,pseudoinvers:1,pso:1,pspm:1,psyc7215:[1,2],psyc_7215_fall_2010:[],psychol:1,pt_given_act0:1,pt_given_act1:1,ptask:1,ptaskcutoff:1,pthandl:1,pthresh:[1,2],ptsd:1,pub:1,publish:[1,2],publish_scn_session_spike_id:[1,2],publishedproject:1,purpl:1,purpos:[0,1,2],push:[1,2],pushbutton:1,put:[0,1,2],putamen:1,pval:[1,2],pvalthreshold:1,pvalu:[1,2],pvoxellev:1,pwd:[1,2],pxred:1,pypi:[],python:[],qc_imag:1,qc_yaml_repositori:[],qchist:[1,2],quadrat:1,qualiti:[1,2],quantifi:[],queri:[],question:1,quick:1,quickest:[],quickstart:1,quit:1,quot:1,r2009a:[1,2],r2012a:1,r2z:1,r_corr:1,racin:1,radial:1,radian:1,radiu:1,raid1:1,rais:[1,2],rand:1,randn:[1,2],random:[1,2],randomli:[1,2],randperm:1,randsampl:1,rang:[1,2],rank:1,rankdata:1,rankvoxel:1,rapca:1,raph:1,rapid:1,rarun:[1,2],rate:[1,2],rater:1,rather:1,ratio:1,ravol:[1,2],raw:[1,2],raw_data:1,rawvarf:1,rawvarp:1,rbf:1,rci:1,rcrit:1,rdiff:1,rdiff_p:1,rdiff_zscor:1,reach:1,read:[1,2],read_databas:1,read_database2:1,read_edat_output_2008:1,read_excel:1,read_from_excel:1,read_from_fil:1,read_hdr:[1,2],read_physio_data:1,read_t:[],readi:1,readim2:1,reading_data:1,readm:[1,2],real:[1,2],realclass:1,realign:[1,2],realign_fil:[1,2],realli:[1,2],reason:1,rebuild:1,rebuild_volinfo_from_dat:1,recalcul:1,receiv:1,recommend:1,recomput:1,recon:1,reconstruct:1,reconstruct_imag:1,record:[1,2],rect:1,rectangular:1,recurs:1,red:[1,2],redistribut:[],redon:[],reduc:[1,2],reduced_dimension:1,reducedi:1,reduct:1,redund:[],ref:[1,2],refactor:[],refer:[1,2],reflect:[1,2],refz:1,reg:[1,2],regardless:1,regex:1,regexprep:1,region2imagevec2tmp:1,region2imagevec:1,region2struct:1,region:[],region_idx:1,region_obj:1,regionmask:1,regist:[1,2],regress:[1,2],regress_best_subsets_ga:1,regression_output:1,regressor:[1,2],regs_per_sess:[1,2],regsofinterest:1,regular:[1,2],regularli:1,reject:1,rel:[1,2],relat:[1,2],relationship:1,releas:1,relev:1,reliabl:1,reload:1,remain:1,remap:1,remcomput:1,remi:1,remi_mean_t2:1,reml:1,remov:[1,2],remove_disdaq_vol:1,remove_empti:1,remove_mean_flag:1,removeblob:1,removed_imag:1,removed_voxel:1,removeintercept:[],removelin:1,removepoint:1,removevari:[],renam:1,rename_lowercas:1,rename_uppercas:1,render:1,render_blob:1,rendercluster_ui4:1,rendercluster_ui:1,reorder:1,repars:[],reparse_contigu:1,reparse_contingu:1,repeat:1,repeated_ancova:1,repetit:[1,2],repitit:1,replac:[1,2],replace_basis_set:1,replace_empti:1,replic:1,repmat:1,report:[1,2],report_predictor:1,reportmod_model:1,repositori:1,repres:[1,2],represent:1,request:1,requir:[1,2],res1:1,res2:1,res3:1,res4:1,res4d:1,res5:1,resampl:[1,2],resample_scnlab:1,resample_spac:1,resample_tim:1,resample_to_image_spac:1,resampled_dat:1,rescal:1,resel:1,reserv:1,reset:[1,2],reset_spmcfg:[1,2],reshap:1,resi_:1,resid:1,resid_full_model:1,residscan:[1,2],residu:[1,2],residual_imag:1,reslic:[1,2],reslice_img:[1,2],resliced_mask:1,reslicedimg:1,reslicethi:1,resm:1,resolut:[1,2],resort:1,resp:1,respect:[1,2],respir:[1,2],respons:[1,2],resss:1,rest:[1,2],restim:[],restrict:1,result:[1,2],results_imag:1,results_obj:1,results_searchlight_1_p_dat11:1,results_searchlight_1_r_dat11:1,results_searchlight_2_acc_dat11:1,results_searchlight_2_p_dat11:1,results_searchlight_2_se_dat11:1,results_searchlight_2_thr_dat11:1,results_searchlight_:1,resum:1,retain:1,retriev:1,return_beta:1,revers:1,reverse_mask:1,revis:[],revisit:1,revx:1,rewrot:[],rfx0009:1,rfx0011:1,rfx0013:1,rfx0015:1,rfx0017:1,rfx:1,rgb:1,rgblist:1,rgex:1,rho:[1,2],rid:1,ridg:1,right:[1,2],rightsurfac:1,rint:1,risk:1,rmanova2:1,rms_successive_diff:[1,2],rms_successive_diffs_inhomogen:[1,2],rmsd:1,rmse:1,rng:[],rngarrai:1,rnnhet1spgr_seg1:[],rnnhet1spgr_seg3:[],rob:1,rob_p_0001:1,rob_pmap_ful:1,rob_tmap_0001:1,rob_tmap_0001_filt_t_3:1,rob_tmap_0002:1,rob_tmap_0002_filt_t_3:1,rob_tmap_0003:1,rob_tmap_filtered_0001:1,rob_tmap_filtered_0002:1,robfit:[1,2],robfit_group_level_directori:[1,2],robfit_results_batch:[1,2],robfitdir:[1,2],robjhyndman:1,robust0001:[1,2],robust0001_poscl:1,robust0002_poscl:1,robust0003_poscl:1,robust:[1,2],robust_opt:1,robust_reg_pool:1,robust_results_act_plus_corr:1,robust_results_batch:[1,2],robust_results_batch_script:1,robust_results_threshold:1,robustcsvread:1,robustfit:1,roc:1,roc_boot:1,roc_calc:1,roc_plot:1,rocha:1,rocout:1,roi:[1,2],roi_contour_map:1,roi_drawing_tool:[],roi_group1:1,roi_imag:1,roi_mask:1,roi_method:1,roi_midbrain:1,roi_prob:1,roi_stn:1,roi_val:1,roimean:1,roipattern:1,roll:1,root:[1,2],rotat:[1,2],rotate_to_pca:1,rotatefactor:1,roughli:[1,2],round:1,rousseeuw:1,routin:1,row1:1,row2:1,row3:1,row:[1,2],rows_to_skip:1,rpv:1,rs2_8vs2_placebocp:1,rs2meta:1,rscalped_avg152t1_graymatter_smooth:1,rscoreplu:1,rset:1,rsj:1,rsquar:1,rsquare_calc:1,rsquare_multiple_regions_multilevel:1,rsync:[],rt_fit_brain:1,rtcenter:1,rtf:[1,2],rule:1,run03:1,run1:1,run2:1,run:[1,2],run_01:[1,2],run_col:1,runc:[1,2],ruzic:[1,2],ruzicl:[1,2],rvm:1,rvrv:1,s01:[1,2],s2between_ol:1,s2full:1,s2red:1,s_fdata:1,s_i:1,sad:1,sag:1,sagg:1,sagg_slice_movi:1,saggit:1,sagitt:1,sai:1,salientmap:1,same:[1,2],samefig:1,sampl:[1,2],sample_canlab_dataset_experiment_level:1,sample_canlab_dataset_subject:1,sample_data_nsf_studi:[],sampleto:1,sampr:[1,2],samprat:1,satterthwait:1,sattherwait:1,satur:1,save:[1,2],save_dir:1,save_plot:1,save_weight:1,savea:1,savebootweight:1,savedir:1,savedotfig:1,savefil:1,savefilenam:1,saveflag:1,savenam:1,saveplot:1,savestr:1,sc1:1,sc2:1,sca:1,scalar:[1,2],scale:[1,2],scale_imgs_by_csf:[1,2],scaledtranspar:1,scalefactor:1,scall:[],scalp:1,scalped_avg152t1_graymatt:[1,2],scalped_avg152t1_graymatter_smooth:1,scan:[1,2],scan_get_fil:1,scanadjust:1,scanlab:1,scanner:1,scannum:1,scans_per_sess:1,scansperrun:1,scanspersess:1,scatter:[1,2],scattermatrix:1,scatterplot:1,schafer:[],schema:1,schulznewcorn_regressor_demograph:1,scienc:1,scikit:[],scipi:[],scl_slope:1,scn:1,scn_component_rsquar:[1,2],scn_core_support:1,scn_export_papersetup:1,scn_get_datetim:1,scn_map_imag:1,scn_mat_conform:1,scn_resample_voxel_s:1,scn_session_spike_id:[1,2],scn_spm_choose_hpfilt:[1,2],scn_spm_design_check:[1,2],scn_spm_get_events_of_interest:[1,2],scn_standard_color:1,scn_stats_helper_funct:1,scn_write_plan:1,scnalpha:1,scnlab_filter_fmri_data:1,scnlab_norm_check3:[1,2],scnlab_norm_check:[1,2],scnlab_outlier_id:1,scnlab_pca_check1:[1,2],scnmontag:1,scolor:1,score:[1,2],scott:[],scree:1,screen:[1,2],script:[1,2],sdat:1,sdt:1,sdt_a:1,sdx:1,se_within:1,search:[0,1,2],search_struct:1,search_struct_field:1,searchlight:1,searchlight_applymask:1,searchlight_applymask_col:1,searchlight_correl:1,searchlight_disti:1,searchlight_dream:1,searchlight_dream_test:1,searchlight_results_:1,searchlight_saveresult:1,seber:1,sec2sec:[],sec2tr:[],sec:1,second:[1,2],second_level:[1,2],secondli:1,section:[1,2],see:[1,2],seed1:1,seed2:1,seed:1,seeddat:1,seedoth:1,seedself:1,seem:[1,2],seg3:[1,2],seg:1,segment:1,select:[1,2],select_one_imag:1,selective_averag:1,selective_average_group:1,selective_average_interactive_view_init:1,selectivity_cutoff:1,self:1,sell:[],sen:1,send:[1,2],sensibl:1,sensit:1,sep:1,separ:[1,2],sepplot:1,sept:1,sepval:1,sequenc:1,sergei:1,seri:[1,2],serial:1,seriesnam:1,serv:0,sesq:1,sess:1,sess_imag:[1,2],session:[1,2],session_global_percent_chang:1,session_global_z:1,session_multipl:1,session_outli:1,set:[0,1,2],setappdata:1,setcolor:1,setnam:1,sets_by_var:1,setstr:1,setup:[1,2],setupion:1,sever:1,sfir:1,sfwhm:1,shade:1,shall:[],shan:1,shape:1,share:1,sheet:[1,2],sheetnam:1,shell:1,shepardplot:1,shift:1,shift_bi:1,shift_correl:1,shift_sign:1,shift_step:1,shiftbi:1,shiftedi:1,shiftstep:1,shiftval:1,shim:[1,2],shorten:[],shorter:1,shorttitl:1,should:[0,1,2],show:[1,2],shown:1,shrankag:1,shrink:1,shrinkag:1,shrout:1,shtml:1,shuffl:[],si1:1,si2:1,sid:[],side:1,sig2:1,sig2b:[1,2],sig2wi:[1,2],sig2within:[1,2],sig:1,sigm:1,sigma2:1,sigma:1,sigmat2:1,sigmat:1,sigmat_uncorrect:1,sigmatavg:1,sigmatdif:1,sigmatneg:1,sigmoid:1,sign:[1,2],signal:[1,2],signal_hemispheric_asymmetri:[1,2],signal_rms_asymmetri:[1,2],signatur:1,signfic:1,signifi:1,signific:[1,2],significantli:1,signperm:1,signtest:1,signtest_matrix:1,sigonli:1,sigt:1,sihouett:1,sii:1,silhouett:1,silke_senders_xyz_coordin:1,silli:[],sim:[1,2],similar:[1,2],simpi:[],simpl:[1,2],simpler:1,simplest:1,simpli:[1,2],simplifi:1,simul:[1,2],sin:1,sinc:1,singl:[1,2],single_subj_t1:1,single_trial_estim:1,singleinterv:1,sinica:[1,2],size:[1,2],sizecutoff:1,sizeof_hdr:1,sizescal:1,sizethr:1,sizethresh:1,skew:[1,2],skill:1,skip:[1,2],sl_size:1,slack:1,slant:1,slate:1,slice10_timeseri:1,slice:1,slice_data:1,slice_mm:1,slice_mm_coord:1,slice_num:1,slice_rang:1,slice_vox_coord:1,slicedist:1,slicei:1,sliceindex:1,sliceinfo:1,sliceno:1,slicenumb:1,sliceord:1,slices_fig_h:1,slices_per_row:1,slicespac:1,slightli:1,slope:1,slope_p:1,slope_t:1,slow:[1,2],slower:[1,2],small:1,smaller:[1,2],smap:1,smapth:1,smartstart:1,smax:1,smin:1,smooth:[1,2],smooth_3d:1,smooth_mm:1,smooth_timeseri:1,smoothest:1,smoothlen:1,snpm0002_varsm_cov_clust:1,snpm:[1,2],snpmt_filter:1,snr:[1,2],snr_hemispheric_asymmetri:[1,2],snr_inhomogen:[1,2],snr_inhomogeneity95:[1,2],snr_rms_asymmetri:[1,2],soak:[1,2],sobol:1,social:1,soften:1,softer:1,softmax:1,softwar:[1,2],soldier:1,sole:1,solid:1,solut:[1,2],soluton:1,some:[1,2],someon:[],someth:1,sometim:1,somewhat:1,somresult:1,sorri:1,sort:[1,2],sort_by_vif:[1,2],sort_image_filenam:1,sort_nat:1,sourc:1,source_imag:1,source_time_interv:1,source_tr:1,space:[1,2],spaceto:1,span:1,spars:[1,2],spatial:[1,2],spatial_contrast:1,spatial_smooth_fwhm:1,spatio:1,spatiotemp_biomark:1,spearman:1,spec:1,special:1,specif:[1,2],specifi:[1,2],specularexpon:1,specularstrength:1,speechtask:1,speed:1,speedi:1,spersess:[1,2],spey:1,spgr:1,sphere:1,sphere_mask:1,sphere_roi_tool:1,spheric:1,spider:1,spike:[1,2],spikecorrect:1,spikesperimg:[1,2],spiral:1,spline:[1,2],spline_hrf_basi:1,splinedetrend:1,splinetrim:1,split:1,splitcolor:1,spm2:1,spm2_ami:1,spm2_hy:1,spm2canlab_dataset:1,spm5:[1,2],spm8:[1,2],spm8_colin27t1_seg:1,spm99:1,spm99b:1,spm:[1,2],spm_analysi:1,spm_check_registr:1,spm_cluster:1,spm_create_vol:1,spm_default:1,spm_desmtx:1,spm_est_smooth:1,spm_fcutil:1,spm_filter:1,spm_general_hist:[1,2],spm_get:[1,2],spm_get_bf:1,spm_get_data:1,spm_getspm:1,spm_hplength:1,spm_hrf:[1,2],spm_imag:1,spm_imcalc:1,spm_imcalc_ui:1,spm_img:1,spm_list_fil:1,spm_mat2batchinput:1,spm_max:[],spm_mireg:[1,2],spm_orthview:1,spm_orthviews_change_colormap:1,spm_orthviews_hotcool_colormap:1,spm_orthviews_name_axi:1,spm_orthviews_showposit:1,spm_orthviews_white_background:1,spm_ov_black2whit:1,spm_randfx:1,spm_read_vol:1,spm_reml:1,spm_results_dir:[1,2],spm_rfx_hist:[1,2],spm_select:1,spm_sp:1,spm_spm:1,spm_spm_bay:1,spm_spm_ui:1,spm_subject_level_directori:[1,2],spm_t2z:1,spm_vol:1,spm_write_plan:1,spm_write_vol:1,spmcfg:[1,2],spmp:[1,2],spmt:[1,2],spmt_0004:1,spmt_:[1,2],spmt_filtered_0002:1,spot:1,springer:1,sprintf:[1,2],sqrt:1,squar:[1,2],squareform:1,squeez:1,sre:[1,2],sres_n:[1,2],sse:1,stabl:1,stack:1,stage:[1,2],stand:[0,1,2],standard:[1,2],standard_stimuli_run1:[1,2],standard_stimuli_run2:[1,2],standardis:1,standardmrilight:1,star:1,start:[1,2],start_field:1,startend:1,startp:1,startslic:1,startval:1,stat:[1,2],stat_subset:1,state:1,statimg:1,stationari:1,statist:[1,2],statistic_imag:[],statistica:[1,2],statistics_imag:1,statistics_tool:[],stats1:1,stats2:1,stats_imag:1,stats_image_obj:1,stats_img:1,stats_md:1,stats_other_output_cv:1,stats_plot:1,stats_regress:1,stats_scatterplot:[1,2],stats_within:1,statsg:1,statsimg:1,std:[1,2],std_t1:[1,2],stderr:1,stdev:1,ste:1,stebeta:1,stedat:1,steiger:1,step:[1,2],stepbi:1,stephan:[],stepsiz:1,stepwis:1,stepwise_tor:1,sterr:1,stick:[1,2],still:1,stim:1,stimlength:1,stimlist:1,stimul:1,stimuli:1,stimulu:1,stmarker1:1,stn:1,stochast:[1,2],stop:1,store:1,stotalv:[1,2],stouffer:1,str2mat:[1,2],str:1,straightforward:[],strang:[1,2],stratifi:1,strcat:1,strength:1,stress:1,strfind:1,strict:1,strictli:1,string:[1,2],stringent:1,strip_git_dir:[],strip_path_dir:1,strip_svn_dir:1,strmatch:[],strongli:1,strrep_recurs:1,strtok:1,struct2yaml:[1,2],struct:[1,2],struct_strrep:1,structur:[1,2],strucur:1,strutur:1,studi:[1,2],study1:1,study_img:1,studybyroi:1,studybyset:1,studyroot:[1,2],stuff:1,style:1,styliz:1,sub:[1,2],subcl:1,subclust:1,subcluster_montag:1,subclusters_from_local_max:1,subclusters_to_chang:1,subcol:1,subcort:1,subdir:[1,2],subdirectori:[1,2],subdivid:1,subdivide_by_atla:1,subdivide_by_local_max:1,subfield:1,subfigur:1,subfold:1,subfunct:[1,2],subgroup:1,subj1:1,subj:[1,2],subj_level:1,subjdata:[1,2],subjdir:1,subjec:[],subject:[1,2],subject_avg:1,subject_dir:[1,2],subject_group:1,subject_level:1,subject_list:[1,2],subject_st:1,subjectdata:[1,2],subjectfil:1,subjectfilelist:1,subjectnumb:1,subjid:1,subjk:[1,2],subjlabel:[1,2],subjm:[1,2],subjnam:[1,2],subjtyp:1,subjw:[1,2],sublicens:[],submit:[1,2],submodul:[],subplot:[1,2],subplotcol:1,subplotrow:1,subregion:1,subsequ:[1,2],subset:[1,2],subset_indicator_matrix:1,subspac:1,substanti:[1,2],substantia:1,substructur:1,subthalam:1,subtract:1,success:1,suchman:1,suface_handl:1,suffici:1,suffix:1,sum:[1,2],sum_valid_ant:1,summar:1,summari:1,summaris:1,summer:1,sun:[1,2],superced:1,superior:1,support:[1,2],suppress:[1,2],supra:1,suprathreshold:1,supress:1,sure:1,surf:1,surf_handl:1,surf_plot_tor:1,surf_single_subj_t1_grai:1,surfac:1,surface_cutawai:1,surface_handl:1,surround:1,surv:1,survei:1,suspect:1,svd:[],svm:1,svn:1,svr:1,swap:1,swd:1,sweenei:1,switchnext:1,sxyz:1,sxzy:1,symbol:1,symmetr:1,synchron:1,syntax:1,synthesi:[],system:1,systemat:1,t1_face_exemplar:1,t_diff:1,t_intercept:1,t_test2:1,tab:1,table_group:1,table_spati:1,tag:1,tagnam:1,tail:[1,2],take:[1,2],taken:1,tal2mni:1,tal2vox:1,tal:1,tal_info:1,talairach:1,talairach_clust:1,talairach_info:1,talaraich_info:[],talariach:1,talarich:1,taldata:1,tanh:1,tar:1,target:1,target_space_imag:[1,2],target_stimuli_run1:[1,2],target_stimuli_run2:[1,2],target_time_interv:1,target_tr:1,targethz:1,targetsp:1,targetu:1,task:[1,2],taskbeta:[1,2],taskclass:1,taskimag:[1,2],taskprob:1,tau:1,taua:1,taub:1,tcl:1,tcrit:1,tdim:1,techniqu:1,teidx:1,tell:1,temp:1,templat:[1,2],tempor:[1,2],temporari:1,tend:[1,2],term:1,test:[],test_qc:[1,2],test_result:1,test_run1_pca2:1,test_run1_pca:1,test_statist:1,testclustnew:1,testvec:1,text:[1,2],textcod:1,textcol:1,textfield:1,textlab:[1,2],textlabel:1,textprefix:1,textual:1,tfontsiz:1,tha:1,thal:1,thalamu:1,than:[1,2],thei:[1,2],them:[0,1,2],theoret:1,theori:1,therefor:1,theta0:[1,2],theta:[1,2],theworkspac:1,thi:[],thick:1,thing:[1,2],think:1,third:1,thoroughli:1,those:[1,2],though:[1,2],thr:1,three:1,thresh:1,thresh_t:1,thresh_typ:1,threshold:[1,2],threshold_img:1,threshold_spm_t:1,threshold_typ:1,threshtyp:1,through:1,thu:1,tibrishani:[],tic:1,tick:1,tickdir:1,tiff:[1,2],time:[1,2],time_varying_estim:1,timebin:1,timecours:1,timecourse_plot:1,timedispers:1,timeeseri:1,timeonli:1,timepoint:1,timer:1,timeseri:[1,2],timeseries2:[1,2],timeseries3:[1,2],timeseries:[1,2],timeseries_btwngroups_plot:1,timeseries_extract_slic:1,timeseries_mc_pvalu:1,timeseries_prplot:1,timg:1,timseri:1,tinv:1,tip:1,tipangl:1,tissu:1,titl:[],titlestr:1,tlab2:[1,2],tmod:1,tmp2:1,tmp:1,tmp_file:1,tname:1,to_dir:1,toc:1,toeplitz:1,togeth:[1,2],toggl:1,toi:1,tom:[],too:1,tool:[],toolbox:[],top:[1,2],topmm:1,tor:[1,2],tor_3d:1,tor_docu:[1,2],tor_documentscurrentexperimentsintext2mp:[],tor_documentscurrentexperimentsintext2resultsmodel1:[],tor_extract_roi:1,tor_fig:1,tor_fill_steplot:1,tor_ga:1,tor_get_physio:[1,2],tor_ihb_getclust:1,tor_ihb_getclusterset:1,tor_ihb_talspac:1,tor_ihb_updateclustertalvoxs:1,tor_make_deconv_mtx3:1,tor_make_deconv_mtx:1,tor_polar_plot:1,tor_script:1,tor_scriptsvoistatutilitynanmean:1,tor_spm_mean_ui:1,torlab:1,tort:[],tot:1,total:[1,2],totmat:1,tour:1,toward:[1,2],tpr:1,tr2sec:[],tr2tr:[],trace:1,track:[1,2],tractabl:1,trail:1,train:1,tran:1,transform:[1,2],transform_coordin:1,transit:1,translat:[1,2],transpar:1,transparency_chang:1,transparent_surfac:1,transpos:[],transse:1,transvalu:1,travers:1,treat:[1,2],treatment:1,tree:1,trend:1,tri:1,trial:1,trial_amp_img:1,trial_height:1,trialdat:1,trials_col:1,tridx:1,tril:1,trilinear:1,trim:[1,2],trim_mask:1,trimt:[1,2],trinar:1,tripl:1,triplet:1,troubl:1,trrv:1,trrvrv:1,true_class:1,true_p:1,true_weight:1,truep:1,truer:1,trueval:1,truncat:1,trust:1,try4:1,tscv:1,tscvexampl:1,tsq:1,tsquar:1,tsquaretest:1,tstat:1,tsu:1,tsufigur:1,ttest2:1,ttest2_printout:1,ttest3d:1,ttest:1,tthr:1,tthresh:1,ttopeakeq:1,ttst:1,ttype:1,tukei:1,tune:[1,2],turn:[1,2],tutori:[],tval:1,twice:[1,2],twidmap:1,two:[1,2],twochoic:1,twotail:1,txt1:1,txt2:1,txt3:1,txt:[1,2],txtlab:[1,2],typ:1,type:[1,2],typic:[1,2],ucl:1,ufp:1,ugiu:[],uhio:[],uib:[],uibiu:[],uibu:[],uibui:[],uibuibui:[],uicontrol:1,uimenu:1,uint8:1,um_face_hous:[1,2],unc:1,uncorrecetd:1,uncorrect:1,under:1,underlai:1,underlyl:1,underscor:1,undershoot:1,understand:[],unequ:1,unfilt:1,uni:1,uniformli:1,unimod:1,union:1,uniqu:[1,2],unique_id:[1,2],unique_mask_valu:1,unit:[1,2],univari:1,univers:1,unix:1,unknown:1,unless:[1,2],unlik:[1,2],unprocess:1,unrel:[1,2],unspecifi:1,unthreshold:1,until:1,unus:1,unweight:1,unweighted_study_data:1,uonseteq:1,updat:[1,2],upload:[1,2],upon:1,upper:1,upsampl:1,upsamplefactor:1,url:[],usabl:[1,2],usag:[],use_rob_stat:1,use_same_rang:1,use_spm_filt:1,useexist:1,useful:1,useparallel:1,user:[1,2],usfactor:1,usual:[1,2],util:1,uva:1,uvb:1,val:1,valdiat:1,valid:[1,2],validatori:1,valu:[1,2],valuestoevalu:1,var_prc:1,var_prctil:1,varargin:[1,2],varargout:1,vardecomp:1,varexp:1,vari:1,variabl:[1,2],variable_input:1,varianbl:1,varianc:[1,2],variant:1,variat:[1,2],variou:1,varnam:1,varname1:1,varname2:1,varz:1,varzm:1,vascular_group_sum:1,vascular_mask_:1,vasquez:1,vbeta:1,vcon:1,vec:1,vector:[1,2],vectorized_voldata:1,vectorlen:1,veloc:1,vent_thr:1,ventricl:[1,2],verbos:[1,2],verboven:1,verbstr:1,veri:[1,2],verid:1,verlag:1,versa:1,version:[1,2],versu:1,vert:1,vertcat:[],vertex:1,vertic:1,vertici:1,vetor:1,via:[1,2],vice:1,video:1,view:[1,2],viewabl:[1,2],viewer:[],vif:[1,2],vif_thresh:[1,2],vimg:1,vinc:1,violin:1,violinplot:1,virtu:[1,2],visibl:[1,2],visit:1,visual:1,visualis:1,visualization_funct:[],vmpfc:1,vmpfc_mask_neurosynth:1,voinfo:1,voistat:[],vol0:[1,2],vol:1,voldat3d:1,voldata:1,volinfo2:1,volinfo:1,volinfo_mapto:1,vols_ad:1,vols_run0001:1,vols_run0002:1,volum:[1,2],vout:1,vox:1,voxel2mask:1,voxel2mm:1,voxel:[1,2],voxel_data_seri:[],voxels2mask:1,voxelsize_mm:1,voxelwise_pthresh:[1,2],voxsiz:1,vresm:1,vspm:1,vtal:1,vto:1,w1map:1,w2map:1,w3map:1,w_time:1,wager:[1,2],wager_jneuro2011_placebo_mask:[],wagerlab:1,wai:[1,2],waitbar:1,wanat_fil:[1,2],wani:[],wani_pi:1,want:[1,2],warm:1,warn:[1,2],warp:[1,2],warranti:[],wasbad:1,wb_hewma_shel:1,wb_multisubject_correl_hr_correct:1,wb_multisubject_ewma:1,wc1:1,wc2:1,wcard:[1,2],web:1,websit:1,weight:[1,2],weight_obj:1,weight_opt:1,weighted_corrcoef:1,weighted_glmfit:1,weighted_reg:1,weighted_reg_old2:1,weighted_reg_oldglmfit_old:1,weights_nsf_grouppred_cvpcr:1,weights_nsf_grouppred_cvpcr_fdr05:1,weights_nsf_grouppred_cvpcr_fdr05_smoothed_fwhm05:1,weird:1,welcom:[],well:[1,2],wellcom:1,were:1,wh_cluster:1,wh_col:[1,2],wh_inmask:1,wh_keep1:1,wh_keep2:1,wh_keep:1,wh_level:1,wh_merg:1,wh_montag:1,wh_ob:1,wh_of_interest:1,wh_predictor:1,wh_slice:1,wh_subj:1,wh_surfac:1,wh_var:1,what:1,whatev:1,whcl:1,when:[0,1,2],whenev:1,where:[1,2],wherea:1,wherein:[1,2],wherev:[1,2],whether:[1,2],whfold:1,which:[1,2],which_cl:1,which_montag:1,whichc:1,whichcon:[1,2],whichcut:1,whichorth:1,whichslic:1,white:1,white_matt:1,whiten:1,whnum:1,who:1,whole:[1,2],whole_brain_ewma:1,whole_brain_filt:1,whole_brain_fir:1,whom:[],whose:1,whout:1,whpvals_for_boot:1,whsave:1,why:[1,2],wichern:1,wicon:1,wide:1,width:[1,2],wiki:1,wildcard:[1,2],wilei:1,william:1,winam:1,window:1,windowbuttonupfcn:1,windsor:1,windsorizevoxel:1,wise:[1,2],wish:1,within:[1,2],without:[1,2],wm_mask:1,wm_thr:1,won:[1,2],woo:[],word:[1,2],work:[1,2],worker:[],workspac:[1,2],world:1,worslei:1,worstcat:1,worth:1,would:[1,2],wouldn:1,wrapper:[1,2],write:[1,2],write_residu:1,write_text:1,writefil:1,writerscoreplu:1,written:1,wrong:1,wt1:[1,2],wtotalv:[1,2],wvol:1,www:1,wyzx:1,x1o:1,x_in_sec:1,x_resid:1,xaxi:1,xbar:1,xbf:1,xbf_hire:1,xbin:[1,2],xcon:1,xcoord:1,xcorr:1,xcorr_multisubject:1,xcorr_xy_multisubject:1,xcx:1,xdata:[1,2],xdim:1,xfontsiz:1,xhair:1,xhairson:1,xinm:1,xkx:1,xlabel:1,xlabelsl:1,xlevel:1,xlim:[1,2],xlsx:1,xmax:[1,2],xmin:1,xmm:1,xname:1,xposit:1,xred:1,xsde:1,xsdm:1,xsize:1,xspm:1,xtal:1,xtest:1,xtick:1,xticklabel:1,xtrain:1,xtxi:1,xval:1,xval_cross_classifi:1,xval_lasso_brain:1,xval_lasso_brain_permutation_histogram:1,xval_regression_multisubject:1,xvals2:1,xvarnam:1,xvec:1,xvi:1,xvol:1,xxx:1,xycatplot:1,xyplot:1,xytspanelplot:1,xyz1:1,xyz2:1,xyz2clust:1,xyz3:1,xyz:1,xyz_coord:1,xyz_coord_struct:1,xyz_mm_po:1,xyzlist:1,xyzmm:1,xyzmmcent:1,xyzmmspher:1,xyzpt:1,xyztyp:1,xyzvoxspher:1,xyzw:1,y1avg:1,y2avg:1,y_axi:1,y_g1:1,y_g2:1,y_i:1,y_name:1,y_pval:1,y_pvals_thresh:1,y_resid:1,y_star:1,y_total_pv:1,yadj:1,yaml:[1,2],yaml_tmp:[1,2],yamlfilemethod:[1,2],yamlfilenam:[1,2],yaxi:1,ybase:1,ybin:[1,2],ycoord:1,ycut_mm:1,ydata:[1,2],ydim:1,yellow:1,yeo:1,yesno:1,yess:1,yet:[1,2],yfit:1,yfla:1,yfontsiz:1,yhat:1,yhi:1,yield:1,ylabel:1,ylim:1,ymax:[1,2],ymd:1,ymean:1,ymin:1,yminortick:1,ymm:1,yname:1,yoffset:1,yoni:[],you:[1,2],your:[1,2],yourself:1,yout:1,yperc:1,ypop:1,ypred:1,yrgb:1,ysize:1,ytal:1,ytick:1,yticklabel:1,ytmp:1,ytrain:1,yval:1,yvals2:1,yvarnam:1,yvec:1,yyyy_mm_dd:1,yzx:1,z_i:1,zbuffer:1,zcoord:1,zcor:1,zdiff:1,zdim:1,zdt:1,zero:[1,2],zero_cross:1,zeroinsert:1,zhang:1,zil:1,zip:1,ziu:1,zmax:1,zmax_act:1,zmax_negact:1,zmin:1,zmin_act:1,zmin_negact:1,zmm:1,zname:1,zoom:1,zpop:1,zscore:1,zscoreimag:1,zscorevoxel:1,zsize:1,ztal:1},titles:["CanlabCore documentation home","Object Oriented Tools","Toolboxes"],titleterms:{"new":[],aspectlib:[],canlab_canonical_brain:[],canlab_dataset:1,canlabcor:0,cluster_contig_region_tool:1,configur:[],content:[],data_extract:1,data_processing_tool:1,diagnost:[1,2],document:0,filename_tool:1,fmri_data:1,fmri_mask_imag:1,fmri_model:1,fmri_timeseri:[],fmridisplai:1,fmridisplay_helper_funct:1,glm_batch_tool:[1,2],hewma_util:1,home:0,hrf_est_toolbox2:[1,2],image_computation_tool:1,image_space_tool:1,image_threshold:1,image_vector:1,index_image_manip_tool:1,indic:0,instal:[],manual:[],misc_util:1,miscellan:1,model_building_tool:1,object:1,optimizedesign11:[1,2],orient:1,parcellation_tool:1,peak_coordin:1,python:[],region:1,roi_drawing_tool:1,statistic_imag:1,statistics_tool:1,tabl:0,test:[],thi:[],titl:[],tool:1,toolbox:[1,2],usag:[],visualization_funct:1,wager_jneuro2011_placebo_mask:[],welcom:[]}}) \ No newline at end of file diff --git a/docs_sphinx_old/fmridata.html b/docs_sphinx_old/fmridata.html index f67bf844..eae5aef5 100644 --- a/docs_sphinx_old/fmridata.html +++ b/docs_sphinx_old/fmridata.html @@ -701,7 +701,7 @@

    Navigation

    -added nancorr to ignore nans when calculating correlation -added rng ‘shuffle’ to ensure that bootstrapping will use different inital seed. VERY IMPORTANT for aggregating across -multiple boostrap sessions!

    +multiple bootstrap sessions!
    11/28/13: Luke Chang
    -added ability to use hv block cross-validation, which is good for timeseries data with stationary autocorrelation. diff --git a/docs_sphinx_old/misc_tools.html b/docs_sphinx_old/misc_tools.html index 7ff983bb..fcc3e36f 100644 --- a/docs_sphinx_old/misc_tools.html +++ b/docs_sphinx_old/misc_tools.html @@ -17604,7 +17604,7 @@

    Visualization_functions diff --git a/docs_sphinx_old/moduleslist.html b/docs_sphinx_old/moduleslist.html index 9e86c563..a1f8e689 100644 --- a/docs_sphinx_old/moduleslist.html +++ b/docs_sphinx_old/moduleslist.html @@ -27508,7 +27508,7 @@

    Visualization_functions diff --git a/docs_sphinx_old/searchindex.js b/docs_sphinx_old/searchindex.js index 57801fc6..a94ad710 100644 --- a/docs_sphinx_old/searchindex.js +++ b/docs_sphinx_old/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:46,filenames:["index","moduleslist","toolboxes"],objects:{"":{"@canlab_dataset":[1,0,1,""],"@fmri_data":[1,0,1,""],"@fmri_mask_image":[1,0,1,""],"@fmri_model":[1,0,1,""],"@fmridisplay":[1,0,1,""],"@image_vector":[1,0,1,""],"@region":[1,0,1,""],"@statistic_image":[1,0,1,""],Cluster_contig_region_tools:[1,0,1,""],Data_extraction:[1,0,1,""],Data_processing_tools:[1,0,1,""],Filename_tools:[1,0,1,""],GLM_Batch_tools:[2,0,1,""],HRF_Est_Toolbox2:[2,0,1,""],Image_computation_tools:[1,0,1,""],Image_space_tools:[1,0,1,""],Image_thresholding:[1,0,1,""],Index_image_manip_tools:[1,0,1,""],Misc_utilities:[1,0,1,""],Model_building_tools:[1,0,1,""],OptimizeDesign11:[2,0,1,""],Parcellation_tools:[1,0,1,""],ROI_drawing_tools:[1,0,1,""],Statistics_tools:[1,0,1,""],Visualization_functions:[1,0,1,""],diagnostics:[2,0,1,""],fmridisplay_helper_functions:[1,0,1,""],hewma_utility:[1,0,1,""],peak_coordinates:[1,0,1,""]},"@canlab_dataset":{bars:[1,1,1,""],concatenate:[1,1,1,""],get_var:[1,1,1,""],glm:[1,1,1,""],glm_multilevel:[1,1,1,""],histogram:[1,1,1,""],mediation:[1,1,1,""],plot_var:[1,1,1,""],print_summary:[1,1,1,""],read_from_excel:[1,1,1,""],scattermatrix:[1,1,1,""],scatterplot:[1,1,1,""],spm2canlab_dataset:[1,1,1,""],ttest2:[1,1,1,""],write_text:[1,1,1,""]},"@fmri_data":{canlab_connectivity_preproc:[1,1,1,""],create:[1,1,1,""],extract_roi_averages:[1,1,1,""],horzcat:[1,1,1,""],hrf_fit:[1,1,1,""],plot:[1,1,1,""],predict:[1,1,1,""],predict_test_suite:[1,1,1,""],regress:[1,1,1,""],rescale:[1,1,1,""],saveplots:[1,1,1,""],signtest:[1,1,1,""],ttest:[1,1,1,""],windsorize:[1,1,1,""]},"@fmri_mask_image":{resample_to_image_space:[1,1,1,""]},"@fmri_model":{build:[1,1,1,""],build_single_trial:[1,1,1,""],get_condition_assignments:[1,1,1,""],get_session_X:[1,1,1,""],plot:[1,1,1,""],replace_basis_set:[1,1,1,""],robustfit:[1,1,1,""],rotate_to_pca:[1,1,1,""],single_trial_estimates:[1,1,1,""]},"@fmridisplay":{addblobs:[1,1,1,""],addpoints:[1,1,1,""],addthreshblobs:[1,1,1,""],legend:[1,1,1,""],montage:[1,1,1,""],surface:[1,1,1,""],transparency_change:[1,1,1,""]},"@image_vector":{apply_mask:[1,1,1,""],check_image_filenames:[1,1,1,""],compare_space:[1,1,1,""],extract_gray_white_csf:[1,1,1,""],extract_roi_averages:[1,1,1,""],fastmontage:[1,1,1,""],flip:[1,1,1,""],get_wh_image:[1,1,1,""],histogram:[1,1,1,""],history:[1,1,1,""],horzcat:[1,1,1,""],ica:[1,1,1,""],image_math:[1,1,1,""],image_similarity_plot:[1,1,1,""],image_similarity_plot_bucknermaps:[1,1,1,""],interpolate:[1,1,1,""],mean:[1,1,1,""],minus:[1,1,1,""],montage:[1,1,1,""],orthviews:[1,1,1,""],plot_current_orthviews_coord:[1,1,1,""],plus:[1,1,1,""],power:[1,1,1,""],preprocess:[1,1,1,""],read_from_file:[1,1,1,""],rebuild_volinfo_from_dat:[1,1,1,""],reconstruct_image:[1,1,1,""],remove_empty:[1,1,1,""],reparse_contiguous:[1,1,1,""],replace_empty:[1,1,1,""],resample_space:[1,1,1,""],resample_time:[1,1,1,""],sagg_slice_movie:[1,1,1,""],searchlight:[1,1,1,""],slices:[1,1,1,""],surface:[1,1,1,""],threshold:[1,1,1,""],trim_mask:[1,1,1,""],union:[1,1,1,""],write:[1,1,1,""]},"@region":{check_extracted_data:[1,1,1,""],extract_data:[1,1,1,""],merge:[1,1,1,""],posneg_separate:[1,1,1,""],region2imagevec2tmp:[1,1,1,""],region2imagevec:[1,1,1,""],region2struct:[1,1,1,""],reparse_continguous:[1,1,1,""],subdivide_by_atlas:[1,1,1,""],subdivide_by_local_max:[1,1,1,""],surface:[1,1,1,""],table:[1,1,1,""]},"@statistic_image":{conjunction:[1,1,1,""],convert2mask:[1,1,1,""],multi_threshold:[1,1,1,""],orthviews:[1,1,1,""],reparse_contiguous:[1,1,1,""],select_one_image:[1,1,1,""],threshold:[1,1,1,""]},Cluster_contig_region_tools:{anat_subclusters:[1,1,1,""],cluster2region:[1,1,1,""],cluster2subclusters:[1,1,1,""],cluster_close_enough:[1,1,1,""],cluster_export_pngs:[1,1,1,""],cluster_find_index:[1,1,1,""],cluster_interp:[1,1,1,""],cluster_intersection:[1,1,1,""],cluster_local_maxima:[1,1,1,""],cluster_set_intersection:[1,1,1,""],cluster_table:[1,1,1,""],cluster_table_successive_threshold:[1,1,1,""],clusters2CLU:[1,1,1,""],clusters2mask:[1,1,1,""],image2clusters:[1,1,1,""],mask2clusters:[1,1,1,""],mask2struct:[1,1,1,""],merge_clusters:[1,1,1,""],merge_nearby_clusters:[1,1,1,""],subclusters_from_local_max:[1,1,1,""],xyz2clusters:[1,1,1,""]},Data_extraction:{canlab_maskstats:[1,1,1,""],cluster_tmask:[1,1,1,""],extract_contrast_data:[1,1,1,""],extract_from_rois:[1,1,1,""],extract_image_data:[1,1,1,""],extract_indiv_peak_data:[1,1,1,""],read_hdr:[1,1,1,""],readim2:[1,1,1,""],timeseries_extract_slice:[1,1,1,""],tor_extract_rois:[1,1,1,""]},Data_processing_tools:{center_of_mass:[1,1,1,""],detransition:[1,1,1,""],downsample_scnlab:[1,1,1,""],fft_plot_scnlab:[1,1,1,""],filterAdjust:[1,1,1,""],fir2htw2:[1,1,1,""],get_snr:[1,1,1,""],htw_from_fit:[1,1,1,""],luisFilter:[1,1,1,""],nuisance_cov_estimates:[1,1,1,""],resample_scnlab:[1,1,1,""],scale:[1,1,1,""],scnlab_filter_fmri_data:[1,1,1,""],scnlab_outlier_id:[1,1,1,""],selective_average:[1,1,1,""],selective_average_group:[1,1,1,""],smooth_timeseries:[1,1,1,""],splineDetrend:[1,1,1,""],splinetrim:[1,1,1,""],trimts:[1,1,1,""],use_spm_filter:[1,1,1,""]},Filename_tools:{check_valid_imagename:[1,1,1,""],copy_image_files:[1,1,1,""],delete_ana_imgs:[1,1,1,""],dicom_tarzip:[1,1,1,""],escapeForShell:[1,1,1,""],expand_4d_filenames:[1,1,1,""],filename_get_new_root_dir:[1,1,1,""],getfullpath:[1,1,1,""],nums_from_text:[1,1,1,""],read_excel:[1,1,1,""],remove_disdaq_vols:[1,1,1,""],rename_lowercase:[1,1,1,""],rename_uppercase:[1,1,1,""],scan_get_files:[1,1,1,""],sort_image_filenames:[1,1,1,""]},GLM_Batch_tools:{canlab_glm_getinfo:[2,1,1,""],canlab_glm_group_levels:[2,1,1,""],canlab_glm_group_levels_run1input:[2,1,1,""],canlab_glm_maskstats:[2,1,1,""],canlab_glm_publish:[2,1,1,""],canlab_glm_roistats:[2,1,1,""],canlab_glm_subject_levels:[2,1,1,""],canlab_glm_subject_levels_run1subject:[2,1,1,""]},HRF_Est_Toolbox2:{Anneal_Logit:[2,1,1,""],Det_Logit:[2,1,1,""],Fit_Canonical_HRF:[2,1,1,""],Fit_Logit2:[2,1,1,""],Fit_sFIR:[2,1,1,""],Get_Logit:[2,1,1,""],HMHRFest:[2,1,1,""],PowerLoss:[2,1,1,""],ResidScan:[2,1,1,""],get_parameters2:[2,1,1,""],hrf_fit_one_voxel:[2,1,1,""],ilogit:[2,1,1,""]},Image_computation_tools:{apply_derivative_boost:[1,1,1,""],canlab_create_wm_ventricle_masks:[1,1,1,""],fisherp:[1,1,1,""],get_mask_vol:[1,1,1,""],image_eval_function:[1,1,1,""],image_eval_function_multisubj:[1,1,1,""],image_histogram1d:[1,1,1,""],mask_create_from_image_set:[1,1,1,""],mask_create_results_mask:[1,1,1,""],mask_fisher:[1,1,1,""],mask_image:[1,1,1,""],mask_intersection2:[1,1,1,""],mask_intersection:[1,1,1,""],mask_stouffer:[1,1,1,""],mask_union:[1,1,1,""],percent_sig_image:[1,1,1,""],reslice_imgs:[1,1,1,""],reverse_mask:[1,1,1,""],scn_write_plane:[1,1,1,""],tor_spm_mean_ui:[1,1,1,""]},Image_space_tools:{check_spm_mat:[1,1,1,""],check_spm_matfiles:[1,1,1,""],img2voxel:[1,1,1,""],mask2voxel:[1,1,1,""],mni2tal:[1,1,1,""],scn_map_image:[1,1,1,""],scn_resample_voxel_size:[1,1,1,""],tal2mni:[1,1,1,""],tal2vox:[1,1,1,""],transform_coordinates:[1,1,1,""],voxel2mask:[1,1,1,""],voxel2mm:[1,1,1,""]},Image_thresholding:{FDR:[1,1,1,""],cl_ext_3dClustSim:[1,1,1,""],cl_ext_make_resid:[1,1,1,""],cl_ext_spm_grf:[1,1,1,""],cl_ext_spm_spm:[1,1,1,""],clusterSizeMask:[1,1,1,""],threshold_imgs:[1,1,1,""]},Index_image_manip_tools:{flip_endianness:[1,1,1,""],iimg_check_volinfo:[1,1,1,""],iimg_cluster_extent:[1,1,1,""],iimg_cluster_index:[1,1,1,""],iimg_cluster_intersect:[1,1,1,""],iimg_cluster_prune:[1,1,1,""],iimg_clusters2indx:[1,1,1,""],iimg_indx2contiguousxyz:[1,1,1,""],iimg_intersection:[1,1,1,""],iimg_make_sure_indx:[1,1,1,""],iimg_mask:[1,1,1,""],iimg_multi_threshold:[1,1,1,""],iimg_princomp:[1,1,1,""],iimg_princomp_display:[1,1,1,""],iimg_read_img:[1,1,1,""],iimg_read_vols:[1,1,1,""],iimg_reconstruct_3dvol:[1,1,1,""],iimg_reconstruct_vols:[1,1,1,""],iimg_reslice:[1,1,1,""],iimg_smooth_3d:[1,1,1,""],iimg_sphere_timeseries:[1,1,1,""],iimg_stouffer:[1,1,1,""],iimg_threshold:[1,1,1,""],iimg_weighted_ttest:[1,1,1,""],iimg_write_images:[1,1,1,""],iimg_xyz2indx:[1,1,1,""],iimg_xyz2spheres:[1,1,1,""]},Misc_utilities:{CERTreader:[1,1,1,""],append:[1,1,1,""],blank_struct:[1,1,1,""],checkMatlabVersion:[1,1,1,""],circle:[1,1,1,""],combine_structs:[1,1,1,""],condf2indic:[1,1,1,""],depfun_aggregate:[1,1,1,""],distance:[1,1,1,""],distance_euclid:[1,1,1,""],erase_and_display:[1,1,1,""],erase_string:[1,1,1,""],explode:[1,1,1,""],fast_conv_fft:[1,1,1,""],getRandom:[1,1,1,""],get_first_help_lines:[1,1,1,""],implode:[1,1,1,""],naninsert:[1,1,1,""],nanremove:[1,1,1,""],oneinsert:[1,1,1,""],orthviews_multiple_objs:[1,1,1,""],pad:[1,1,1,""],padwithnan:[1,1,1,""],parse_char_to_cell:[1,1,1,""],parse_edat_txt:[1,1,1,""],print_matrix:[1,1,1,""],progressbar:[1,1,1,""],read_edat_output_2008:[1,1,1,""],robustcsvread:[1,1,1,""],scn_get_datetime:[1,1,1,""],scn_mat_conform:[1,1,1,""],search_struct_fields:[1,1,1,""],strip_path_dirs:[1,1,1,""],strip_svn_dirs:[1,1,1,""],strrep_recurse:[1,1,1,""],struct_strrep:[1,1,1,""],tor_ga:[1,1,1,""],zeroinsert:[1,1,1,""]},Model_building_tools:{fmri_spline_basis:[1,1,1,""],getPredictors:[1,1,1,""],ideal_deconv6:[1,1,1,""],intercept_model:[1,1,1,""],modifiedconv:[1,1,1,""],onsets2delta:[1,1,1,""],onsets2dx:[1,1,1,""],onsets2fmridesign:[1,1,1,""],onsets2parametric_mod_X:[1,1,1,""],plot_ideal_deconv5:[1,1,1,""],spm_mat2batchinput:[1,1,1,""],tor_make_deconv_mtx3:[1,1,1,""]},OptimizeDesign11:{optimizeGA:[2,1,1,""],optimizeGA_epochs:[2,1,1,""],optimize_rand_search:[2,1,1,""]},Parcellation_tools:{cluster_princomp:[1,1,1,""],inconsistent:[1,1,1,""],mask_princomp:[1,1,1,""],parcel_cl_nmds:[1,1,1,""],parcel_cl_nmds_plots:[1,1,1,""],parcel_clusters:[1,1,1,""],parcel_complete_sets:[1,1,1,""],parcel_images:[1,1,1,""]},ROI_drawing_tools:{add2mask:[1,1,1,""],clusters2roimask:[1,1,1,""],draw_anatomical_roi_2008:[1,1,1,""],sphere_mask:[1,1,1,""]},Statistics_tools:{Bspline:[1,1,1,""],ContinuousAccuracy:[1,1,1,""],F_test_full_vs_red:[1,1,1,""],F_test_no_intercept:[1,1,1,""],ICC:[1,1,1,""],ancova:[1,1,1,""],barplot_get_within_ste:[1,1,1,""],bayes_get_probabilities:[1,1,1,""],bayes_get_probabilities_2010:[1,1,1,""],bayes_meta_feature_abstract:[1,1,1,""],binotest:[1,1,1,""],binotest_dependent:[1,1,1,""],cancor:[1,1,1,""],canlab_connectivity_predict:[1,1,1,""],classify_bayes:[1,1,1,""],classify_choose_most_likely:[1,1,1,""],classify_naive_bayes:[1,1,1,""],classify_naive_bayes_2010:[1,1,1,""],classify_naive_bayes_objfun:[1,1,1,""],classify_viz_regions:[1,1,1,""],contrast_code:[1,1,1,""],correl_compare_dep:[1,1,1,""],correl_compare_dep_permtest:[1,1,1,""],correl_compare_dep_search:[1,1,1,""],correl_compare_indep:[1,1,1,""],correl_compare_indep_inputr:[1,1,1,""],correl_compare_permute:[1,1,1,""],correlation:[1,1,1,""],correlation_fast_series:[1,1,1,""],create_orthogonal_contrast_set:[1,1,1,""],dice_coeff_image:[1,1,1,""],doquality:[1,1,1,""],fisherz:[1,1,1,""],fit_gls:[1,1,1,""],fit_gls_brain:[1,1,1,""],getmeanquality:[1,1,1,""],glmfit_general:[1,1,1,""],glmfit_multilevel:[1,1,1,""],glmfit_multilevel_varexplained:[1,1,1,""],intercept:[1,1,1,""],loess_multilevel:[1,1,1,""],matrix_direct_effects:[1,1,1,""],matrix_direct_effects_ridge:[1,1,1,""],matrix_eval_function:[1,1,1,""],monotonic_regression:[1,1,1,""],moving_average:[1,1,1,""],noise_arp:[1,1,1,""],nonlin_fit:[1,1,1,""],nonlin_param_mod_brain:[1,1,1,""],nonlin_param_modulator:[1,1,1,""],nonlin_parammod_predfun:[1,1,1,""],pairwise_diffs:[1,1,1,""],partition_variables_indevel:[1,1,1,""],permute_setupperms:[1,1,1,""],permute_signtest:[1,1,1,""],plssquash:[1,1,1,""],princomp_largedata:[1,1,1,""],prplot_multilevel:[1,1,1,""],r2z:[1,1,1,""],regress_best_subsets_ga:[1,1,1,""],repeated_ancova:[1,1,1,""],rmanova2:[1,1,1,""],robust_reg_pooled:[1,1,1,""],roc_boot:[1,1,1,""],roc_calc:[1,1,1,""],roc_plot:[1,1,1,""],rsquare_calc:[1,1,1,""],rsquare_multiple_regions_multilevel:[1,1,1,""],scn_stats_helper_functions:[1,1,1,""],sdt_A:[1,1,1,""],searchlight_applymask:[1,1,1,""],searchlight_applymask_collate:[1,1,1,""],searchlight_correlation:[1,1,1,""],searchlight_disti:[1,1,1,""],searchlight_dream:[1,1,1,""],searchlight_saveresults:[1,1,1,""],shift_correl:[1,1,1,""],shift_signal:[1,1,1,""],signtest_matrix:[1,1,1,""],ste:[1,1,1,""],stepwise_tor:[1,1,1,""],stouffer:[1,1,1,""],subset_indicator_matrix:[1,1,1,""],t_test2:[1,1,1,""],testclustnew:[1,1,1,""],time_varying_estimate:[1,1,1,""],tscv:[1,1,1,""],tsquaretest:[1,1,1,""],ttest2_printout:[1,1,1,""],ttest3d:[1,1,1,""],var_prctile:[1,1,1,""],weighted_glmfit:[1,1,1,""],xcorr_multisubject:[1,1,1,""],xcorr_xy_multisubject:[1,1,1,""]},Visualization_functions:{addbrain:[1,1,1,""],addbrainleft:[1,1,1,""],addbrainright:[1,1,1,""],applycolormap:[1,1,1,""],arrow:[1,1,1,""],bar_wani:[1,1,1,""],barplot_colored:[1,1,1,""],barplot_columns2:[1,1,1,""],barplot_columns3:[1,1,1,""],barplot_columns:[1,1,1,""],barplot_grouped:[1,1,1,""],barplotter:[1,1,1,""],canlab_force_directed_graph:[1,1,1,""],canlab_results_fmridisplay:[1,1,1,""],cl_line_plots:[1,1,1,""],cl_overlap:[1,1,1,""],close_non_spm_graphics_figures:[1,1,1,""],cluster_barplot:[1,1,1,""],cluster_cutaways:[1,1,1,""],cluster_image_shape:[1,1,1,""],cluster_image_sphere:[1,1,1,""],cluster_orthviews:[1,1,1,""],cluster_orthviews_classes:[1,1,1,""],cluster_orthviews_montage:[1,1,1,""],cluster_orthviews_overlap2:[1,1,1,""],cluster_orthviews_overlap:[1,1,1,""],cluster_orthviews_overlap_3colors:[1,1,1,""],cluster_orthviews_showcenters:[1,1,1,""],cluster_surf:[1,1,1,""],cluster_surf_batch2:[1,1,1,""],cluster_surf_batch:[1,1,1,""],colormap_tor:[1,1,1,""],compare_filtered_t:[1,1,1,""],compare_slice:[1,1,1,""],conf_region:[1,1,1,""],create_figure:[1,1,1,""],errorbar_horizontal:[1,1,1,""],errorbar_width:[1,1,1,""],fill_area_around_points:[1,1,1,""],getVertexColors:[1,1,1,""],get_cluster_volume:[1,1,1,""],glassbrain_avi:[1,1,1,""],imageCluster:[1,1,1,""],imageCluster_block:[1,1,1,""],image_histogram:[1,1,1,""],line_plot_multisubject:[1,1,1,""],lineplot_columns:[1,1,1,""],make3Davi:[1,1,1,""],make3Davi_uncompressed:[1,1,1,""],make_figure_into_orthviews:[1,1,1,""],makelegend:[1,1,1,""],map_data_to_colormap:[1,1,1,""],mask2surface:[1,1,1,""],mdsfig:[1,1,1,""],mdsfig_3d:[1,1,1,""],mea_visualise:[1,1,1,""],montage_clusters:[1,1,1,""],montage_clusters_maxslice:[1,1,1,""],montage_clusters_medial:[1,1,1,""],montage_clusters_points:[1,1,1,""],montage_clusters_text2:[1,1,1,""],montage_clusters_text:[1,1,1,""],montage_image_Worsley:[1,1,1,""],movie_of_slice_timeseries:[1,1,1,""],movie_stillframes:[1,1,1,""],multi_threshold:[1,1,1,""],mvroi_mdsfig_plot2:[1,1,1,""],mvroi_mdsfig_plot_sepstates:[1,1,1,""],mvroi_mdsfig_plugin2:[1,1,1,""],mvroi_plot_firs:[1,1,1,""],nmdsfig1D:[1,1,1,""],nmdsfig:[1,1,1,""],nmdsfig_fill:[1,1,1,""],nmdsfig_legend:[1,1,1,""],plot3d:[1,1,1,""],plotDesign:[1,1,1,""],plot_correlation:[1,1,1,""],plot_correlation_samefig:[1,1,1,""],plot_dx_hrfs:[1,1,1,""],plot_ellipse:[1,1,1,""],plot_error:[1,1,1,""],plot_horizontal_line:[1,1,1,""],plot_hrf_model_fit:[1,1,1,""],plot_joint_hist_contour:[1,1,1,""],plot_matrix_cols:[1,1,1,""],plot_vertical_line:[1,1,1,""],prplot:[1,1,1,""],renderCluster_ui4:[1,1,1,""],renderCluster_ui:[1,1,1,""],roi_contour_map:[1,1,1,""],scn_export_papersetup:[1,1,1,""],scn_standard_colors:[1,1,1,""],selective_average_interactive_view_init:[1,1,1,""],sepplot:[1,1,1,""],shepardplot:[1,1,1,""],sphere_roi_tool:[1,1,1,""],spm_orthviews_change_colormap:[1,1,1,""],spm_orthviews_hotcool_colormap:[1,1,1,""],spm_orthviews_name_axis:[1,1,1,""],spm_orthviews_showposition:[1,1,1,""],spm_orthviews_white_background:[1,1,1,""],spm_ov_black2white:[1,1,1,""],standardMRIlighting:[1,1,1,""],surf_plot_tor:[1,1,1,""],surface_cutaway:[1,1,1,""],talairach_clusters:[1,1,1,""],timeseries_prplot:[1,1,1,""],tor_3d:[1,1,1,""],tor_fill_steplot:[1,1,1,""],tor_ihb_GetClusterSet:[1,1,1,""],tor_ihb_GetClusters:[1,1,1,""],tor_ihb_TalSpace:[1,1,1,""],tor_ihb_UpdateClusterTalVoxSize:[1,1,1,""],tor_polar_plot:[1,1,1,""],violinplot:[1,1,1,""],wani_pie:[1,1,1,""],xval_lasso_brain_permutation_histogram:[1,1,1,""]},diagnostics:{BiasPowerloss:[2,1,1,""],ResidScan:[2,1,1,""],add_nuisance_to_SPMcfg:[2,1,1,""],batch_efficiency:[2,1,1,""],batch_t_histograms:[2,1,1,""],canlab_qc_metrics1:[2,1,1,""],check_cluster_data:[2,1,1,""],compare_subjects256:[2,1,1,""],compare_subjects:[2,1,1,""],displayme:[2,1,1,""],ellipse:[2,1,1,""],fft_calc:[2,1,1,""],fmri_mask_thresh_canlab:[2,1,1,""],get_filename2:[2,1,1,""],get_filename:[2,1,1,""],hist2:[2,1,1,""],image_intensity_histograms:[2,1,1,""],img_hist2:[2,1,1,""],img_hist:[2,1,1,""],joint_hist:[2,1,1,""],make_conv_mtx:[2,1,1,""],multivar_dist:[2,1,1,""],orthogonalize:[2,1,1,""],power_from_variance:[2,1,1,""],power_loss:[2,1,1,""],publish_scn_session_spike_id:[2,1,1,""],qchist:[2,1,1,""],reset_SPMcfg:[2,1,1,""],scale_imgs_by_csf:[2,1,1,""],scn_component_rsquare:[2,1,1,""],scn_session_spike_id:[2,1,1,""],scn_spm_choose_hpfilter:[2,1,1,""],scn_spm_design_check:[2,1,1,""],scn_spm_get_events_of_interest:[2,1,1,""],scnlab_norm_check3:[2,1,1,""],scnlab_norm_check:[2,1,1,""],scnlab_pca_check1:[2,1,1,""],spm_general_hist:[2,1,1,""],spm_rfx_hist:[2,1,1,""],struct2yaml:[2,1,1,""],tor_get_physio:[2,1,1,""]},fmridisplay_helper_functions:{clusters2mask2011:[1,1,1,""],define_sampling_space:[1,1,1,""],display_slice:[1,1,1,""],map_to_world_space:[1,1,1,""],render_blobs:[1,1,1,""],resample_space:[1,1,1,""]},hewma_utility:{Gaussian_mix:[1,1,1,""],change_point:[1,1,1,""],cluster_kmeans_parcel:[1,1,1,""],cnt_runs:[1,1,1,""],ewma5:[1,1,1,""],get_ax_slice:[1,1,1,""],get_max_t:[1,1,1,""],hewma2:[1,1,1,""],hewma2_plot:[1,1,1,""],hewma_extract_voxel:[1,1,1,""],hewma_from_raw_timeseries:[1,1,1,""],hewma_gui:[1,1,1,""],hewma_plot_bivariate:[1,1,1,""],hewma_plot_coord_btnupfcn:[1,1,1,""],hewma_plot_cpmap:[1,1,1,""],hewma_plot_runlen:[1,1,1,""],hewma_save_timeseries:[1,1,1,""],linear_detrending:[1,1,1,""],timeseries_btwngroups_plot:[1,1,1,""],timeseries_mc_pvalue:[1,1,1,""],wb_hewma_shell:[1,1,1,""],weighted_reg:[1,1,1,""],weighted_reg_old2:[1,1,1,""],weighted_reg_oldglmfit_old:[1,1,1,""],whole_brain_ewma:[1,1,1,""],zero_crossing:[1,1,1,""]},peak_coordinates:{cluster_manova:[1,1,1,""],extract_ind_peak:[1,1,1,""],image2coordinates:[1,1,1,""],spatial_contrast:[1,1,1,""]}},objnames:{"0":["mat","module","MATLAB module"],"1":["mat","function","MATLAB function"]},objtypes:{"0":"mat:module","1":"mat:function"},terms:{"020515sp":[1,2],"020726ag":[1,2],"020827mk":[1,2],"020829jh":[1,2],"020903lb":[1,2],"02d":[1,2],"03d":1,"05_k10_neg":1,"05_k5_po":1,"060518mw":[1,2],"10th":1,"1iconw":[1,2],"1st":1,"1x1":1,"1x105":1,"1x2":1,"1x30":1,"1xm":1,"2007a":1,"2012a":1,"2014a":1,"2nd":[1,2],"2subject":[1,2],"2x30":1,"3dclustsim":1,"3dclustsim_dir":1,"3dfwhmx":1,"3dheadutil":1,"3rd":1,"4th":1,"4x4":1,"50x1000":1,"50x10000":1,"5th":1,"6_intel_64":1,"8bit":1,"91x109x91":1,"95ci":1,"_01aug2014":1,"_10k":1,"_column":1,"_dat":1,"_level":[1,2],"_p_":1,"_seg1":[1,2],"_seg3":[1,2],"_tmap_0002":1,"abstract":1,"boolean":1,"break":1,"byte":1,"case":[1,2],"catch":1,"char":[1,2],"class":1,"const":1,"default":[1,2],"export":1,"final":1,"float":1,"function":[0,1,2],"import":1,"int":1,"long":[1,2],"new":[],"null":1,"public":[],"return":[1,2],"super":[],"switch":1,"true":[1,2],"try":1,"var":[1,2],"while":1,aa_:1,aall:[1,2],ab_c:1,abbrev:1,abbrevi:1,abc:1,abil:1,abin:1,abl:1,about:1,abov:[1,2],abrupt:1,absent:1,absolut:[1,2],acc:1,acc_roi_mask:1,acc_x_dist:1,accept:1,access:1,accompani:1,accord:1,accordingli:1,account:[1,2],accumben:1,accur:1,accuraci:1,acl:1,acquisit:[1,2],across:[1,2],act:1,actcolor2:1,actcolor3:1,actcolor:1,action:1,activ:[1,2],activation_cutoff:1,activation_fwe_al:1,activation_map:1,activation_proport:1,activationdata:1,active_plus_corr_scatterplot_plugin:1,actual:[1,2],adapt:1,add2mask:1,add2movi:1,add:[1,2],add_nuisance_to_spmcfg:[1,2],addblob:1,addbrain:1,addbrainleft:1,addbrainright:1,addcolouredblob:1,addcon:[1,2],addintercept:[],addit:[1,2],additional_info:1,additional_input:1,additional_nuis:1,addmontag:1,addpoint:1,address:[1,2],addtext:1,addthreshblob:1,addvari:[],adequ:1,adjac:1,adjust:[1,2],adjusti:[],adjustmatrix:1,adress:1,advanc:1,advantag:1,affect:1,affin:1,afni:1,after:[1,2],afterward:1,again:1,against:[1,2],agglom:1,aggreg:1,agre:1,aic:1,akin:1,alarm:1,alfja:[],algo:1,algorithm:[1,2],algorithm_nam:1,all4_union_bg_surf:1,all:[1,2],all_chi2_imag:1,all_data:1,all_surf_handl:1,all_surf_handles2:1,allcverr:1,alld:1,allinfo:1,allinput:[1,2],allmodel:[1,2],allow:[1,2],allownan:1,allw:1,allyhat:1,alon:[0,1,2],along:[1,2],alph:1,alpha:[1,2],alphanumer:1,alphasim:1,alreadi:[1,2],also:[0,1,2],alt:1,altern:[1,2],altho:[1,2],alwai:1,ambar_carvalho:1,ambient:1,ambigu:1,american:1,ami:1,among:[1,2],amount:1,amp:1,amplitud:[1,2],amygdala:1,an_metafwe_rad10:1,analys:[1,2],analysi:[1,2],analysis_dir:[1,2],analysisnam:1,analyz:[1,2],analyze_cluster_roi:1,anat:1,anat_lbpa_th:1,anat_subclust:1,anatmeannam:1,anatom:[1,2],anatomc:[1,2],anatomi:[1,2],anatomynscalped_ft1:[],anatp:1,ancova:1,andreas_nguyen:1,anew:1,angela_val:1,angl:1,ani:[0,1,2],anjali:[],anneal:[1,2],anneal_logit:[1,2],annot:1,anonym:1,anoth:[1,2],anova:1,answer:1,ant:1,anterior:1,antialias:1,antic:1,anticip:1,anxieti:1,anybad:1,anyth:[1,2],anywai:1,anywher:[],aout:1,apart:1,appar:1,appear:1,append:[1,2],appli:[1,2],applic:1,apply_clust:1,apply_derivative_boost:1,apply_mask:1,apply_np:1,applycolormap:1,apprais:1,approach:[1,2],appropri:[1,2],approv:1,approxim:[1,2],april:[],aproach:[1,2],arbitrari:1,archiv:[],area:1,aren:[1,2],arg:1,argument:[1,2],aris:[],arma:1,armi:1,arord:1,around:[1,2],arrai:[1,2],arrang:1,arrow:1,arrowhead:1,artifact:[1,2],asc:[1,2],ascend:[1,2],ascii:1,ashar:[],ask:1,aslfd:[],aspect:1,aspectlib:[],assess:1,assign:1,associ:1,assum:[1,2],assumpt:[1,2],ast:1,ast_adj_x:1,ast_adj_y_neg:1,ast_adj_y_po:1,asterisk:1,asymmetr:1,asymmetri:[1,2],asymptot:1,atan:1,atla:1,atlas:1,atlas_labels_combin:1,atleast:1,atleastn:1,att:1,attach:1,attempt:1,atti:1,attribut:[1,2],auc:1,auc_by_modul:1,auc_mean_tri:1,auditori:[1,2],auditory_oddbal:[1,2],aug:1,augment:1,august:1,author:1,auto:1,autocorrel:1,automat:[1,2],automodul:[],autoregress:1,aux_fil:1,avail:1,averag:[1,2],average_ov:1,average_resp:1,avg152t1:[1,2],avg:[1,2],avgd:1,avgstat:1,avgvs3:1,avi:1,avoid:[1,2],awai:1,awri:1,axh:1,axi:[1,2],axial:1,axis_handl:1,axishandl:1,axisnum:1,axtyp:1,azimuth:1,azoffset:1,b2_e2:1,b_star:1,b_subset:1,back:[1,2],background:[1,2],backspac:1,backup:1,backward:1,bad:[1,2],badvox:1,balanc:1,balanced_ridg:[],bandpass:1,bandwidth:1,bar:[1,2],bar_edgecol:1,bar_edgewidth:1,bar_handl:1,bar_wani:1,bar_width:1,bare:[],bargraph:1,barhandl:1,barplot:1,barplot_color:1,barplot_column:1,barplot_columns2:1,barplot_columns3:1,barplot_get_within_st:1,barplot_group:1,barplott:1,barttest:1,barwidth:1,basal:1,base:[1,2],base_timept:1,baseangl:1,basecolor:1,basedir:1,baseimg:1,baselin:1,basenam:1,baseperiod:1,basept:1,basi:[1,2],basic:[1,2],basisset:1,batch:[1,2],batch_effici:[1,2],batch_t_histogram:[1,2],bay:1,bayes_get_prob:1,bayes_get_probabilities_2010:1,bayes_meta_feature_abstract:1,bayes_model:1,bayes_model_region:1,bcov:1,bear:[1,2],becaus:[1,2],becom:1,been:[1,2],beff:1,befor:[1,2],begin:1,beh1:1,behav:[],behavior:1,behdat:1,behind:1,belong:1,below:1,benefici:[],benefit:1,benjamini:1,bernoulli:1,besid:1,best:[1,2],best_log:1,best_param:1,bestc:1,bestcoord:1,bestcorr:1,bestg:1,bestk:1,bestmyclass:1,bestnam:1,bestpval:1,bestshift:1,bestx:1,beta1_event1:1,beta1_event2:1,beta2_event1:1,beta:[1,2],beta_0001:[1,2],beta_0010:[1,2],beta_:1,beta_nam:1,betaorcontrast:1,better:[1,2],between:[1,2],beyond:1,bfr:1,bgcolor:1,bgl:1,bia:[1,2],bias:1,biasmean:1,biaspowerloss:[1,2],big:[1,2],bilat:1,bilater:1,bimod:1,bin:[1,2],binar:1,binari:[1,2],binary_outcom:1,binomi:1,binotest:1,binotest_depend:1,bint:1,biomark:1,biplot:1,bisempti:1,biseri:1,bit:1,biubiub:[],biubuib:[],bival:1,bivari:1,black2whit:1,black:1,blalock:1,blank:1,blank_struct:1,blank_val:1,blkdiag:[1,2],blob:1,blobhan:1,block:[1,2],blue:[1,2],blueon:[],bmrk3:1,bnew:1,bold:1,bonf:1,bonferroni:1,book:1,bool:1,boost:1,boostrap:1,boot1:1,boot:1,bootsampl:1,bootsrap:[],bootstrap:1,bootstrp:[],bootweight:1,borderscal:1,both:[1,2],bottom:1,bound:1,boundari:1,bout:1,box:1,boxcar:1,boxplot:1,bpf:1,brad_wilson:1,brain:[1,2],brain_avg152t1:[1,2],brain_render_t1:1,brainbottom:1,brainmask:[1,2],brainoni:1,brainstem:1,branch:1,breakpoint:1,bring:1,brownhil:1,brows:1,bspline:1,btwline:1,btwn:1,btwnname:1,bucker:1,buckner:1,bucknerlab:1,bug:1,bui:[],buib:[],buibiub:[],build:1,build_single_tri:1,built:1,bull:1,bump:[1,2],bunch:[],bwexist:1,c2m:1,c_bia:1,c_compar:1,calc:1,calcstr:1,calcul:[1,2],calculate_stat:1,calhoun:1,call:[1,2],camlight:1,can:[1,2],cancor:1,canlab:[0,1,2],canlab_canonical_brain:[],canlab_connectivity_predict:1,canlab_connectivity_preproc:1,canlab_create_wm_ventricle_mask:1,canlab_databas:[],canlab_dataset:[],canlab_extract_ventricle_wm_timeseri:1,canlab_force_directed_graph:1,canlab_glm_:[1,2],canlab_glm_getinfo:[1,2],canlab_glm_group_level:[1,2],canlab_glm_group_levels_run1input:[1,2],canlab_glm_maskstat:[1,2],canlab_glm_publish:[1,2],canlab_glm_readm:[1,2],canlab_glm_roistat:[1,2],canlab_glm_subject_level:[1,2],canlab_glm_subject_levels_run1subject:[1,2],canlab_maskstat:[1,2],canlab_preproc:[1,2],canlab_preproc_norm_check:[1,2],canlab_qc_metrics1:[1,2],canlab_results_fmridisplai:1,canlab_spm_contrast_job:[1,2],canlab_spm_contrast_job_luka:[1,2],canlab_spm_fmri_model_job:[1,2],cannot:1,canon:[1,2],canoncorr:1,canonical_brain:1,caonic:1,capabl:1,capit:1,captur:1,care:1,caret:1,carlo:1,carmack:1,carmack_get_label:[],cast:1,cat:[1,2],categor:1,categori:1,caudat:1,caus:[1,2],caution:1,caxi:1,ccor:1,cdf:1,ceil:1,cell:[1,2],cellarrai:[1,2],cellarri:1,cellstr:1,cen:1,center:[1,2],center_of_mass:1,centered_dot_product:1,centerimag:1,centervoxel:1,centr:1,central:1,centroid:1,centromedian:1,cerebellum:1,cert:1,certain:1,certread:1,chanc:1,chance_95_ci:1,chang:[1,2],change_point:1,changepoint:1,charact:[1,2],characterist:1,charg:[],chart:1,chebi:1,chebyshev:1,check:[1,2],check_cluster_data:[1,2],check_extracted_data:1,check_image_filenam:1,check_spm_mat:1,check_spm_matfil:1,check_valid_imagenam:1,checkmatlabvers:1,chemometr:1,chi2:[1,2],chi:1,child:[1,2],choic:[1,2],choos:[1,2],choose_ndim:1,chosen:1,chptmap:1,chrf:1,christensen:1,chronolog:1,chunck:1,chunk:1,chwo9116:1,circa:1,circl:1,circular:1,circumst:1,cis95:1,cl1:1,cl2:1,cl3:1,cl_ami:1,cl_b_fdr05_002_01_k3_1_1_prune:1,cl_ext:1,cl_ext_3dclustsim:1,cl_ext_clustsim:1,cl_ext_make_resid:1,cl_ext_spm:1,cl_ext_spm_grf:1,cl_ext_spm_spm:1,cl_extent:1,cl_glo1:1,cl_glo2:1,cl_in:1,cl_line_plot:1,cl_match:1,cl_match_to:1,cl_out:1,cl_overlap:1,cl_putamen:1,cl_roimean:1,cl_roipattern:1,cl_size:1,claim:[],clarifi:[],class_clust:1,class_est:1,class_threshold:1,classif:1,classifi:1,classify_bay:1,classify_choose_most_lik:1,classify_naive_bay:1,classify_naive_bayes_2010:1,classify_naive_bayes_objfun:1,classify_search_script3:1,classify_viz_region:1,classs:1,clcol:1,clean:1,clear:1,click:1,clim:1,clin:1,clindx:1,clinpsywoo:1,clneg:1,clneg_data:1,clockwis:1,close:[1,2],close_enough:1,close_non_spm_graphics_figur:1,closeenough:1,closemovi:1,closer:1,closest:1,closest_clust:[],clout:1,clpattern:1,clpo:1,clpos_data2:1,clpos_data:1,clroimean:1,cls1:1,cls2:1,cls3:1,clsize:1,clsuter:1,clu:1,clust:1,cluster2region:1,cluster2subclust:1,cluster:[1,2],cluster_barplot:1,cluster_close_enough:1,cluster_contig_region_tool:[],cluster_cutawai:1,cluster_export_png:1,cluster_find_index:1,cluster_image_shap:1,cluster_image_spher:1,cluster_interp:1,cluster_intersect:1,cluster_kmeans_parcel:1,cluster_local_maxima:1,cluster_manova:1,cluster_nam:1,cluster_nmd:1,cluster_nmdsfig:1,cluster_nmdsfig_glassbrain:1,cluster_orthview:1,cluster_orthviews_class:1,cluster_orthviews_montag:1,cluster_orthviews_overlap2:1,cluster_orthviews_overlap:1,cluster_orthviews_overlap_3color:1,cluster_orthviews_showcent:1,cluster_princomp:1,cluster_set_intersect:1,cluster_solut:1,cluster_surf:1,cluster_surf_batch2:1,cluster_surf_batch:1,cluster_surf_movi:1,cluster_t:1,cluster_table_old:[],cluster_table_successive_threshold:1,cluster_tmask:1,cluster_tool:1,clusterdata:1,clusters1:1,clusters2:1,clusters2clu:1,clusters2databas:1,clusters2mask2011:1,clusters2mask:1,clusters2roimask:1,clusters:[1,2],clusters_to_match:1,clustersizemask:1,clustersolut:1,clusterxyz:1,clustnam:1,clustqual:1,clustsim_dir:1,clz:1,cmaprang:1,cmd:1,cmdscale:1,cnt:1,cnt_run:1,cntmap:1,cntmat:1,cochran:1,code:[1,2],coeff:1,coeffici:1,coeffieint:1,cognit:1,cohen:[1,2],coher:[1,2],col1:1,col2:1,col:[1,2],colin:1,colinear:[1,2],collect:1,color:1,color_lowerboundpercentil:1,color_upperboundpercentil:1,colorado:[1,2],colorbar:1,colorchang:1,colorchangestr:1,colorcond:1,colormap:1,colormap_tor:1,colors2:1,colorscal:1,colorspec:1,colorspecstr:1,colum:1,column1:1,column2:1,column3:1,column4:1,column:[1,2],columnwis:1,com:1,combin:[1,2],combine_struct:1,combo:1,come:[1,2],comma:1,command:[0,1,2],comment:1,common:1,comp:1,compact2:1,compact:1,compar:[1,2],compare_filtered_t:1,compare_slic:1,compare_spac:1,compare_subject:[1,2],compare_subjects256:[1,2],comparegroup:1,comparison:1,compat:[1,2],complementari:1,complet:1,complex:1,complic:1,compoen:1,compon:[1,2],composit:1,compress:1,compris:1,compscor:[1,2],comput:[1,2],computation:1,con:[1,2],con_0002:[1,2],con_0003:1,con_0004:1,con_:[1,2],con_fil:1,con_pval:1,con_t:1,concaten:1,concis:1,conda:[],condf2ind:1,condf:1,condit:[1,2],condition:1,condition_num:1,condition_numb:1,conditionnam:1,conf:1,conf_region:1,confid:[1,2],configur:[],conflict:[],conform:[],confound:1,confus:1,confusion_mtx:1,confval:1,conimg:1,conjunct:1,conn:1,conn_filt:1,connam:[1,2],connect3d:1,connect:1,connectmetr:1,connot:1,connum:[1,2],consecut:1,conserv:1,consid:[1,2],consider:[1,2],consist:1,constant:1,constanttran:1,constrain:1,constraint:1,construct:[1,2],constructor:1,contain:[0,1,2],content:[],context:1,contig:[],contigu:1,contiguous_region:1,continu:1,continuousaccuraci:1,contour:1,contourslic:1,contract:[],contrast:[1,2],contrast_cod:1,contrast_mtx:1,contrast_t:1,contrastimag:[1,2],contrastnam:1,contrastxweight:1,contribut:[1,2],control:[1,2],control_dat:1,conv:[1,2],conv_hrf:[],conval:1,convent:1,converg:1,convers:1,converst:[],convert2mask:1,convert:1,convolut:[1,2],convolv:1,conw:[1,2],cool:1,coord:1,coordiat:1,coordin:[1,2],cophenet:1,copi:1,copy_image_fil:1,copyright:1,cor:1,cordir:1,core:[0,1],core_funct:[],corel:1,coron:1,corr:[1,2],corr_rep:1,corr_temp:1,corrc_mean:1,corrclass:1,corrclass_nullhyp:1,corrcoef:1,corrdat:1,correct:[1,2],corrected_p:1,correctli:1,correl:[1,2],correl_compare_dep:1,correl_compare_dep_permtest:1,correl_compare_dep_search:1,correl_compare_indep:1,correl_compare_indep_inputr:1,correl_compare_permut:1,correl_seed1_sig:1,correlation_fast_seri:1,correlation_to_text:1,correspond:[1,2],corrval:1,cortic:1,corval:1,cosin:[],cosine_similar:1,could:[1,2],count:[1,2],counterbalanc:[1,2],coupl:1,cours:[1,2],coursework_and_teach:[1,2],cov:[1,2],covari:[1,2],cover:[1,2],covfil:[1,2],covnam:[1,2],covt:1,covti:1,covxcon:[1,2],cp2:1,cp_ind:1,cpmap:1,crash:[],creat:[1,2],create_figur:1,create_fmri_mask:1,create_orthogonal_contrast_set:1,creation:1,creelman:1,crimin:1,crit_t:1,criterion:1,critic:1,cronbach:1,cross:1,crossdir:1,crosshair:1,crossov:1,crossval:1,crossvalid:1,cscale:1,cse:1,csf:[1,2],csfname:[],csfp2:[],csfpath:[],csv:[1,2],ctmp:1,cubic:1,cue:1,curr:1,current:[1,2],current_data:[],currentexperi:[1,2],currentmap:1,cursor:1,curv:[1,2],custom:[1,2],custom_coord:1,custom_hrf:[],customneur:1,cut:[1,2],cutawai:1,cutoff:[1,2],cv_assign:1,cv_lassopcr:1,cv_lassopcrmatlab:1,cv_multilevel_glm:1,cv_multregress:1,cv_pcr:1,cv_regress:1,cv_svm:1,cv_svr:1,cv_univregress:1,cverr:1,cvpartit:1,cwd:[1,2],cyan:1,cycl:1,cyclecorrect:1,cyclecorrection2:1,d_by_mod:1,d_mean:1,dacc_hw_pattern_sl6mm:1,dacc_rf_pattern_sl6mm:1,damag:[],dark:1,dash:1,dat1:1,dat2:1,dat:[1,2],dat_comb:1,dat_ext:1,dat_intersect:1,dat_mask:1,dat_matrix:1,dat_out:1,dat_union:1,data:[1,2],data_and_tool:1,data_comb:1,data_extract:[],data_matrix12:1,data_matrix1:1,data_matrix22:1,data_matrix2:1,data_obj:1,data_processing_tool:[],databas:[1,2],databasexyz:1,datafil:1,datanam:1,dataset:1,datatyp:1,datavalueset:1,datcel:1,datdir:1,date:1,datenum:1,datestr:1,datout:1,datsig:1,dattyp:1,datv:1,david:1,davidson:1,dbmethod:[1,2],dcm:1,dcon:1,deactiv:1,deal:1,deblank:[1,2],debug:1,dec:1,decil:1,decim:1,declar:1,decompos:1,decomposit:1,deconv:1,deconvolut:1,deconvolv:1,decor:[],decreas:1,dedetrend:1,deep:1,def:1,defin:[1,2],define_sampling_spac:1,definit:1,degre:[1,2],delai:1,delayeq:1,delet:[1,2],delete_ana_img:1,delim:1,delimit:1,deliv:1,delta:[1,2],delta_hir:1,deltadist:1,deltadon:1,deltadon_avg:1,deltatend:1,demand:[],demo2:1,demo:1,denan:1,dendrogram:1,denois:1,denoised_canlab:[1,2],denot:[1,2],densiti:1,dep:1,depend:[1,2],depfun_aggreg:1,depict:1,deprec:[1,2],depth:1,deriv:[1,2],descend:1,descent:[],describ:[1,2],descrip:1,descript:[1,2],design:[0,1,2],design_matrix:1,designfil:1,designx:[1,2],desir:1,det:1,det_logit:[1,2],det_logit_allstim:[1,2],detail:1,detect:[1,2],determin:[1,2],determinist:[1,2],detransit:1,detrend:1,dev:1,develop:1,devianc:1,deviat:[1,2],devinnei:1,df_error:1,df_model:1,dfb:1,dfe:1,dfm:1,dfwithin:1,dhr:1,diag:1,diaglinear:1,diagnost:[],diagon:1,diagquadrat:1,dice:1,dice_coeff:1,dice_coeff_imag:1,dichotom:1,dicom:1,dicom_tarzip:1,did:1,didn:[1,2],diff:1,differ:[1,2],difficult:1,difstat:1,dim4:1,dim:[1,2],dimens:[1,2],dimension:1,dip:[1,2],dir2cel:1,dir:[1,2],dir_wcard:[1,2],dire:[1,2],direct:1,direct_mtx:1,directli:1,directori:[1,2],directory_specif:[1,2],discard:1,discoveri:1,discret:1,discrimin:1,discuss:1,disdaq:1,disk:1,disord:1,disp:1,dispers:[1,2],displai:[1,2],display_plot:1,display_slic:1,displaym:[1,2],disptyp:1,dissim:1,dissimilar:[1,2],dist:[1,2],dist_from_hyperplane_xv:1,dist_hi:1,dist_i:1,dist_n:1,dist_thresh:1,distanc:[1,2],distance_euclid:1,distinguish:1,distribut:[1,2],ditto:1,divid:[1,2],dm1:[],dm2:[],dmpfc:1,doasym:1,dobrain:1,doc:1,docent:1,dodetrend:1,doe:[1,2],doesn:[1,2],dofig:1,dohead:1,dohp:1,doind:1,doindiff:1,doindiv:1,doku:1,dolegend:1,dolin:1,dolp:1,domask:1,dominic_ricci:1,domontag:1,don:[1,2],done:[1,2],dool:1,doonerow:1,doortho:[1,2],doplot2:1,doplot:[1,2],doquad:1,doqual:1,dorandom:1,dorob:1,dorobust:1,dosav:1,doshad:1,dosmooth:1,dot:[1,2],dot_product:1,dotfig:1,doubl:1,doubt:1,doug:1,douniqu:1,dowithinst:1,download:[0,1],downsampl:1,downsample_canlab:1,downsample_delta:1,downsample_scnlab:1,downweight:1,dpsp002:1,dpsp002_spm:1,dpsp003:1,dpsp003_spm:1,drag:1,drastic:1,draw:1,draw_anatomical_roi_2008:1,drawlin:1,drawn:1,drawnow:1,drawslic:1,drawsyml:1,drawsymr:1,dream:[1,2],dreamio:1,drift:[1,2],drive:[],driven:1,drop:1,dsgn:[1,2],dsgnarg:[1,2],dsgninfo:[1,2],dslen:1,dsrate:1,dthresh:1,due:[1,2],dull:1,dummi:[1,2],dummyscan:1,duplic:[],dur:1,durat:1,dure:1,durectli:1,dwcard:[1,2],dx_beta:1,dynam:1,each:[1,2],earlier:1,easi:1,easili:1,ebay:1,econ:1,econflag:1,econometr:1,edat2:1,edat:1,edat_cel:1,edat_struct:1,eddi:1,edg:1,edgecolor:1,edit:[1,2],edu:[1,2],eeg:1,effect:[1,2],effect_size_map:[1,2],effici:[1,2],ehter:[],eidf:1,eig:1,eigenvalu:[1,2],eigenvari:[1,2],eigenvector:[1,2],eigenvetor:1,eigv:[1,2],eigval:[1,2],either:[1,2],elaps:[],elast:1,element:[1,2],elev:1,elimin:1,ellips:[1,2],ellipt:[1,2],eloffset:1,els:[1,2],elsewher:1,email:[1,2],embed:[1,2],emot:1,emotion_2s_z_val_fdr_05:1,empir:1,empti:[1,2],emul:1,enabl:[1,2],encapsul:1,end:[1,2],endian:[1,2],endval:1,enforc:1,engin:[1,2],engram:1,enlarg:1,enough:[],ensu:1,ensur:1,entail:1,enter:[1,2],entir:[1,2],entiti:1,entri:[1,2],epi:[1,2],epi_nam:[1,2],epoch:1,eprim:1,equal:[1,2],equat:1,equival:1,erase_and_displai:1,erase_str:1,eraseblob:1,erdf:1,err:1,errbar_width:1,error:[1,2],error_r:1,error_typ:1,errorbar:1,errorbar_horizont:1,errorbar_width:1,errorbarseri:1,errordata:1,errormatrix:1,errorwidth:1,errval:1,escapedstr:1,escapeforshel:1,esim:1,ess:1,essenti:[1,2],est:1,establish:1,estim:[1,2],estimateparam:1,etc:[1,2],euclidean:1,eval:1,evalu:1,even:[1,2],evenli:1,event:[1,2],event_level:1,event_pain_onli:1,eventdesign:1,eventmean:1,eventnam:1,events_onli:[1,2],ever:1,everi:[1,2],everyth:[1,2],everywher:1,evtonset:1,ewma3:1,ewma5:1,ewma:1,ewma_var:1,ewma_z:1,exact:1,exactli:1,examin:1,exampl:[1,2],example1:1,example2:1,example3:1,example4:1,example_barwani:1,example_pi:1,example_plot:1,examplev:1,exce:1,excel:1,excelfilenam:1,except:1,exclud:[1,2],exclus:1,execut:1,exist:[1,2],existing_ax:1,existingfig:1,exit:1,exp0:1,exp1:1,exp2:1,exp3:1,exp:[1,2],exp_dat:1,exp_tim:1,exp_vs_percept:1,expand:1,expand_4d_filenam:1,expect:[1,2],experi:[1,2],experimentfilenam:1,experment:[1,2],expfun:1,explain:[1,2],explan:1,explicit:1,explicitli:1,explod:1,expon:1,exponenti:1,expr:1,express:[1,2],expt:[1,2],exptm:[1,2],ext:1,extend:1,extended_output_flag:1,extens:[1,2],extent:1,extent_thresh:1,extern:1,extr:1,extra:1,extract:[1,2],extract_contrast_data:1,extract_data:1,extract_dxbeta_data:1,extract_from_roi:1,extract_gray_white_csf:1,extract_image_data:1,extract_ind_peak:1,extract_indiv_peak_data:1,extract_mask:1,extract_raw_data:1,extract_roi:1,extract_roi_averag:1,extrem:1,f_cols_of_interest:1,f_ix0:1,f_test_full_vs_r:1,f_test_no_intercept:1,face:1,facealpha:[1,2],facecolor:1,facevertexcdata:1,facilit:1,fact:[1,2],factor:[1,2],factoran:1,fail:1,fairli:1,fake:1,fall:1,fals:[1,2],fashion:1,fast:[1,2],fast_conv_fft:1,faster:1,fastest:1,fastmontag:1,fault:1,fda:1,fdr:1,fdrp:1,fdrsig:1,fdrthresh:1,featur:1,feb:1,few:1,fewer:[1,2],fft:[1,2],fft_calc:[1,2],fft_plot_scnlab:1,fgh:1,fhan:1,fhandl:1,fhwm:1,fid:1,field:[1,2],field_skip:1,fieldnam:1,fieldpath:1,fifth:1,fig:1,fig_han:1,fig_handl:1,figh:1,figur:[1,2],figure_galleri:1,figuresa:[1,2],file:[1,2],file_arrai:1,file_list:1,file_wcard:[1,2],filenam:[1,2],filename_get_new_root_dir:1,filename_tool:[],filenames_or_v:1,files_exist:1,filesep:1,fill:[1,2],fill_area_around_point:1,fill_handl:1,fillh:1,filt:1,filter:[1,2],filteradjust:1,filtertyp:1,find:[1,2],findobj:1,fine:1,finish:[1,2],fir2htw2:1,fir:[1,2],fir_fil:1,fircondit:1,firnam:1,first:[1,2],first_lev_var:1,first_vol:1,firstimg:1,fisher:1,fisherp:1,fisherz:1,fit:[1,2],fit_and_averag:1,fit_canonical_hrf:[1,2],fit_gl:1,fit_gls_brain:1,fit_logit2:[1,2],fit_logit:[1,2],fit_sfir:[1,2],fitlin:1,fitting_fun:1,fitx:1,fix:1,fixed_input:1,fixed_inputs1:1,fixed_tsu:1,fixin:1,fklsf:[],flag:[1,2],flat:1,flatdat:1,flatten:1,fleiss:1,flexibl:1,flip:1,flip_endian:1,flipi:1,float32:1,float64:1,fly:1,fmri:[1,2],fmri_dat:1,fmri_data:[],fmri_data_obj:1,fmri_data_object:1,fmri_fil:[1,2],fmri_imag:1,fmri_mask_imag:[],fmri_mask_thresh:[],fmri_mask_thresh_canlab:[1,2],fmri_model:[],fmri_model_obj:1,fmri_obj_imag:1,fmri_spline_basi:1,fmri_timeseri:[],fmridat:1,fmridat_obj:1,fmridisp:1,fmridisplai:[],fmridisplay_helper_funct:[],fmristat:[],fname:1,fob:1,fold:1,folder:1,follow:[1,2],font:1,fontsiz:1,foo:1,forc:1,force_delta:1,forcenam:1,forcesup:1,form:1,format:[1,2],formula:[1,2],forward:1,found:[1,2],found_path:1,foundat:[],four:1,fourier:1,fouriernotch:1,foursurfac:1,fout:[1,2],fout_1:[1,2],fov:1,fpr:1,fprintf:1,frackowiak:1,fraction:[1,2],frame:1,fread:1,free:1,freedom:[1,2],freehand:1,freq2:1,freq:[1,2],frequenc:[1,2],friedman:[],friston:1,frith:1,from:[1,2],from_multireg:[1,2],frontal:1,frustrat:1,fsl:[1,2],fsl_output_typ:1,fsloutputtyp:1,fter:[],full:[1,2],full_model_gv_p_v_np:1,full_path_of_movie_output_fil:1,fullfil:[1,2],fulli:1,fullpath:1,function_cal:1,function_handl:1,function_nam:1,functional_mask:1,functionnam:1,funhan:[],funhandl:1,funki:1,funnam:1,funtion:1,furnish:[],further:1,futur:1,fval:1,fwe:1,fwhm:[1,2],ga_example_script:[1,2],galleri:1,gambl:1,gamma:1,gamrnd:1,ganglia:1,garson:1,gauss:1,gaussian:[1,2],gaussian_mix:1,gca:1,gcf:1,geisser:1,genconverg:1,gener:[1,2],generalis:1,genet:1,genetic_algorithm_readm:[1,2],genfun:1,gensiz:1,geom2d:1,get:[1,2],get_ax_slic:1,get_cluster_volum:1,get_condition_assign:1,get_filenam:[1,2],get_filename2:[1,2],get_first_help_lin:1,get_from:1,get_htw_image_nam:1,get_logit:[1,2],get_mask_vol:1,get_max_t:1,get_parameters2:[1,2],get_session_x:1,get_snr:1,get_var:1,get_wh_imag:1,getappdata:1,getclust:1,getdata:1,getfigclust:1,getfrom:1,getfullpath:1,getfunctnames2:1,getmeanqu:1,getpredictor:1,getrandom:1,getvertexcolor:1,getvif:[],ghost:[1,2],gianaro:1,gindx:1,git:[],github:[],give:[1,2],given:[1,2],glass:1,glassbrain_avi:1,glm:[1,2],glm_batch_tool:[],glm_multilevel:1,glmax:1,glmfit:1,glmfit_gener:1,glmfit_multilevel:1,glmfit_multilevel_varexplain:1,glmin:1,global:[1,2],global_t1:[1,2],globu:1,gm_mask:1,gnu:[],goal:1,goe:1,gone:1,good:[1,2],got:1,gouraud:1,gov:1,gradient:[1,2],grai:[1,2],grand:[1,2],grant:[],graph:1,graphic:1,graymask:1,graymatt:1,grayscal:1,great:1,greater:1,greatest:1,green:1,greenhous:1,grei:1,grid:[1,2],gridlinestyl:1,grname:[],gross:[1,2],group:[1,2],group_analys:1,group_anxiety_n35:[1,2],group_avg:1,group_avg_ref_lin:1,group_n35:[1,2],group_sadness_n35:[1,2],group_st:1,groupbi:1,groupmean:[1,2],groupspac:1,grow:1,grp:[1,2],grpcontrast:1,grpmean:1,grpmodeldir:[1,2],grpste:1,gtrim:[1,2],guess:1,gui:1,guid:1,guilt:1,guilti:1,h25_aerger:1,h_by_mod:1,h_mean:1,hair:1,half:[1,2],halfh:1,han:1,handl:[1,2],handle_numb:1,happen:1,hard:[1,2],hardcopi:1,harvei:1,has_header_row:1,hasti:[],hat:1,have:[0,1,2],haxaxi:1,haxfront:1,haxi:1,haxis3d:1,haxsagl:1,haxsagr:1,hchoic:1,hcmp:1,hconstraint:1,hdr:1,hdrf:[1,2],hdvabakjsbdakjsbdkajsdbakjskl:[],head3d:1,head:[1,2],header:[1,2],header_col:1,headernam:1,headhandl:1,heart:[1,2],heat:1,heat_trial:1,heatmap:1,heavili:[1,2],height:[1,2],height_mask:1,heighteq:1,heightp:1,heightthresh:1,help:[1,2],helper:1,helptext:1,hem:1,hemispher:[1,2],hemodynam:[1,2],henc:1,here:[1,2],herebi:[],hernandez:1,hewma2:1,hewma2_plot:1,hewma:1,hewma_cp:1,hewma_extract_voxel:1,hewma_from_raw_timeseri:1,hewma_gui:1,hewma_plot_bivari:1,hewma_plot_coord_btnupfcn:1,hewma_plot_cpmap:1,hewma_plot_runlen:1,hewma_runlen:1,hewma_save_timeseri:1,hewma_timeseri:1,hewma_timeseries_plot:1,hewma_util:[],hfig3d:1,hfigleg:1,hfigmain:1,hh1:1,hh2:1,hh3:1,hh_mm:1,hicolor:1,hidese:1,hierarch:1,high:[1,2],high_r:1,higher:[1,2],highest:[1,2],highli:[1,2],highlow:1,hightim:1,hill:1,hipp:1,hippocampu:1,hire:1,hist2:[1,2],hist:1,hist_un0:1,histogram:[1,2],histori:1,history_descrip:1,hit:1,hlight:1,hlm:1,hmhrfest:[1,2],hoc:1,hochberg:1,hold:[1,2],holder:[],holdout:1,holdout_set:1,hole:1,hole_s:1,holm:1,hope:[],hopefulli:[],horiz:1,horizont:[1,2],horribl:1,horzcat:1,hot:1,hotel:1,hotopen:1,how:[1,2],howev:[1,2],howto:1,hp_length:1,hparam:1,hpatch:1,hpf:1,hpfilter:1,hplen:1,hplength:1,hr_intercept:1,hrf:[1,2],hrf_est_toolbox2:[],hrf_fit:1,hrf_fit_one_voxel:[1,2],hrf_obj:1,hrf_satur:1,hrf_timecourse_cond0001:1,hrf_timecourse_cond0002:1,ht00_inst:1,hthreshold:1,html:[1,2],html_output:[1,2],html_save_dir:[1,2],http:1,htw:1,htw_from_fit:1,hubert:1,huge:1,human:1,hump:1,hvblock:1,hyndsight:1,hyper:[],hyperellipsoid:1,hyperparamet:1,hyperplan:1,hypothalamu:1,hypothesi:1,ica:1,icadat:1,icasig:1,icbm:1,icbm_area74:1,icbm_brainonly_1mm_seg1:1,icbm_loc:1,icc:1,iccvalu:1,id_numb:1,idata:1,idd:1,idea:1,ideal:1,ideal_deconv5:1,ideal_deconv6:1,ident:1,identifi:[1,2],idx:1,igl:1,igls_multicond:1,ignor:[1,2],ignore_miss:1,ihb_axes3dmenuclusteronli:1,ihb_axes3dmenuwholebrain:1,ihb_axestalspace3d:1,ihb_changetalvoxs:1,ihb_clr_axi:1,ihb_clr_front:1,ihb_clr_orig:1,ihb_clr_saggit:1,ihb_clr_surfac:1,ihb_clr_symm:1,ihb_clusterlevelprob:1,ihb_clusterpopup:1,ihb_cntaxi:1,ihb_cntfront:1,ihb_cntsagittal:1,ihb_cntsagittalr:1,ihb_cursorcoord:1,ihb_getclust:1,ihb_getclusterset:1,ihb_lighttalspace3d:1,ihb_lineorigin:1,ihb_linesymmetr:1,ihb_linewidthmenunorm:1,ihb_linewidthmenuthick:1,ihb_linewidthmenuthin:1,ihb_loadslic:1,ihb_renderermenuopengl:1,ihb_renderermenuzbuff:1,ihb_resetdefault:1,ihb_surfaceclust:1,ihb_talspac:1,ihb_talspace3d_fig:1,ihb_talspacedfl:1,ihb_talspaceleg_fig:1,ihb_talspacemain_fig:1,ihb_transparencymenu:1,ihb_transparencymenuhigh:1,ihb_transparencymenulow:1,ihb_transparencymenumedium:1,ihb_transparencymenuopaqu:1,ihb_volumeinvox:1,ihb_voxellevelprob:1,ihb_voxsizemenu111:1,ihb_voxsizemenu222:1,ihb_voxsizemenu444:1,ihbdfl_ax_info:1,ihbdfl_baxesisclusteronli:1,ihbdfl_color_clorig:1,ihbdfl_color_clsymm:1,ihbdfl_color_cntax:1,ihbdfl_color_cntfr:1,ihbdfl_color_cntsag:1,ihbdfl_color_surfac:1,ihbdfl_fr_info:1,ihbdfl_line_width:1,ihbdfl_main_gap:1,ihbdfl_main_height:1,ihbdfl_main_i:1,ihbdfl_main_info_h:1,ihbdfl_main_width:1,ihbdfl_main_x:1,ihbdfl_main_z:1,ihbdfl_min_size_to_draw:1,ihbdfl_render:1,ihbdfl_sl_info:1,ihbdfl_spm_fig_conman:1,ihbdfl_spm_fig_interact:1,ihbdfl_spm_fig_selfilewin:1,ihbdfl_sr_info:1,ihbdfl_tal_x_vox:1,ihbdfl_tal_y_vox:1,ihbdfl_tal_z_vox:1,ihbdfl_transpar:1,ihbdfl_xlimd:1,ihbdfl_xlimi:1,ihbdfl_ylimd:1,ihbdfl_ylimi:1,ihbdfl_zlimd:1,ihbdfl_zlimi:1,iimg_check_indx:1,iimg_check_volinfo:1,iimg_cluster_ext:1,iimg_cluster_index:1,iimg_cluster_intersect:1,iimg_cluster_prun:1,iimg_clusters2indx:1,iimg_data:1,iimg_get_data:1,iimg_indx2clust:[1,2],iimg_indx2contiguousxyz:1,iimg_intersect:1,iimg_make_sure_indx:1,iimg_mask:1,iimg_multi_threshold:1,iimg_nam:1,iimg_princomp:1,iimg_princomp_displai:1,iimg_read_img:1,iimg_read_vol:1,iimg_reconstruct_3dvol:1,iimg_reconstruct_vol:1,iimg_reslic:1,iimg_smooth_3d:1,iimg_sphere_timeseri:1,iimg_stouff:1,iimg_threshold:1,iimg_weighted_ttest:1,iimg_write_imag:1,iimg_xxx:1,iimg_xyz2indx:1,iimg_xyz2spher:1,illustr:[],ilogit:[1,2],im_fil:1,ima:[1,2],imag:[1,2],image2clust:1,image2coordin:1,image_computation_tool:[],image_eval_funct:1,image_eval_function_multisubj:1,image_histogram1d:1,image_histogram:1,image_indx:1,image_intensity_histogram:[1,2],image_list:1,image_math:1,image_nam:1,image_obj:1,image_object:1,image_scatterplot:1,image_similarity_plot:1,image_similarity_plot_bucknermap:1,image_skip_interv:1,image_space_tool:[],image_threshold:[],image_vector:[],imageclust:1,imagecluster_block:1,imagelist:1,imagenam:1,images_per_sess:1,imagesc:[1,2],imcalc:1,imdat:1,imfilenam:[1,2],img1:1,img2:1,img2surf:1,img2voxel:1,img:[1,2],img_fil:1,img_hist2:[1,2],img_hist:[1,2],img_nam:1,imgdat:1,imgdata:1,imgfil:[1,2],imginfo:1,imgnam:[1,2],imgs2:1,imgs_to_extract_from:1,imgtyp:1,imgvec:1,immedi:[1,2],imnam:[1,2],imp:1,impact:1,implement:[1,2],impli:1,implicit:[1,2],implicit_mask:[1,2],implicit_masking_method:[1,2],implicitli:1,implict:[1,2],implied_dissim:1,implod:1,importantli:[1,2],importdata:1,impos:1,improv:[1,2],impuls:1,imput:1,imraw_data:1,imtr:1,in1:1,in2:1,in_mask_logical_vector:[1,2],inc:1,incis:1,includ:[1,2],includezero:[1,2],inclus:[1,2],incompat:1,inconsist:1,incorpor:1,incorrect:[],increas:1,increment:1,ind2:1,ind2sub:[1,2],ind:1,indclustertoview:1,indeo5:1,indepen:[1,2],independ:1,indepnd:1,index:[0,1],index_image_manip_tool:[],indiv:1,indiv_timeseri:1,individu:[1,2],indlin:1,indscal:1,indscalf:1,indx:1,ineffici:1,inequ:1,inf:1,infer:[1,2],inference_opt:1,inferenti:1,inferior:1,infin:1,infinit:1,inflat:[1,2],influenc:[1,2],info:[1,2],inform:[1,2],infostr:1,inhib2_cluster_barplot:1,inhib:1,inhomogen:[1,2],ini:[],init:1,initi:[1,2],inlin:1,inmask:[1,2],inmaskvox:[1,2],innaccur:1,innam:1,inner:1,inpoint:1,inpress_2007_emotion_handbook_2006:1,input:[1,2],input_activ:1,input_threshold:1,input_v:1,input_valu:1,inputarg:1,inputhrf:1,inputimg:[1,2],inputmean:1,inputopt:1,insert:1,insid:1,instabl:[],instal:[],instanc:1,instead:[1,2],insula_from_part1:1,int16:1,int32:1,int_dat:1,intcpt:1,integ:[1,2],integr:[1,2],intellig:1,intend:1,intens:[1,2],intensity_threshold:1,intepret:1,inter:1,interact:1,interacti:1,intercept:[1,2],intercept_model:1,interconnect:1,intercorrel:1,interest:[1,2],intermedi:1,intern:[1,2],interp3:1,interp:1,interp_imag:1,interp_method:1,interpol:1,interpret:[1,2],interquartil:1,interrog:1,intersct:1,intersect001:1,intersect:1,intersect_cl:1,interv:1,intext2:[1,2],intext_countloc:[1,2],intraclass:1,intrins:1,introduc:1,introductori:1,inv:1,invalid:[1,2],invar:1,invers:[1,2],invert:1,invis:1,invok:1,involv:1,invp:[1,2],invpview:[1,2],ipython:[],iqrmult:1,irl:1,irrelev:1,isconverg:1,isdiff:1,isdir:1,isfield:1,ishot:1,isi:1,isn:1,isnan:1,isnul:1,isocap:1,isocapshandl:1,isok:[],isosurfac:1,isosurfacehandl:1,ispain:1,isspmclust:1,issu:1,item:1,iter:1,ith:1,itself:1,iub:[],ivec:1,ivecobj:1,ivoldat3d:1,ix0:1,iyfj:[],jackson:1,jamil:1,jare:[],jet:1,job:[1,2],john:1,johnson:1,join:1,joint:[1,2],joint_hist:[1,2],jolliff:1,journal:1,judg:1,juli:[],jump:1,june:1,just:[1,2],kcl:1,kdensiti:1,keep:1,keep_exist:[1,2],keepdt:1,keepit:1,keepzero:1,keepzerosmask:1,kei:[1,2],keith:1,kendal:1,kendalla:1,kendallb:1,kern_siz:1,kernel:[1,2],kernels:1,kevin:1,keyword:[1,2],kind:1,knot:1,knotrat:1,know:1,known:1,kragel:1,kragelemot:1,kramer:1,kreyszig:1,kruskal:1,krzanowski:1,ksdensiti:1,ktotalv:[1,2],kurtosi:[1,2],kxi:1,l2_covt:1,l2m:1,lab:1,labar:1,labdata:1,label:[1,2],label_group:1,label_mask:1,labl:1,laboratori:1,lag:1,lam:1,lambda:1,larg:1,larger:1,largest:1,largest_region:1,lasso:1,lasso_cv:[],lasso_num:1,lasso_rocha:[],lassoglm:1,lassopcr:1,lasspcrmatlab:[],last:[1,2],latenc:1,latent:1,later:1,latest:1,layout:1,lazar:1,lbpa40:1,lchoic:1,lcl:1,lead:1,leaf:1,learn:[],least:1,leav:[1,2],lebesgu:1,left:[1,2],legaci:1,legend:1,legland:1,legmat:1,len:1,length:[1,2],lengthlegend:1,lenmat:1,less:1,let:1,letter:[1,2],lev:1,level:[1,2],levonp:1,lew:1,liabil:[],liabl:[],liber:1,librari:1,licens:[],life:1,light:1,lightangl:1,lightfollowview:1,lightrestoresingl:1,like:[1,2],likelihood:1,likeratio:1,limbic:1,limit:[1,2],lindetrend:1,lindquist:[1,2],line:[0,1,2],line_handl:1,line_plot_multisubject:1,linear:[1,2],linear_detrend:1,linear_trend:1,linearli:1,linearpain:1,linebar:1,linecolor:1,lineh:1,linehx:1,linemat:1,lineplot:1,lineplot_column:1,linespec:1,linestyl:1,linethick:1,linewidth:1,link:[1,2],linkag:1,linkage_t:1,linkagetyp:1,linkfun:1,linktyp:1,list:[1,2],littl:[1,2],live:[1,2],load:[1,2],loadimg:1,local:1,locat:[1,2],locflag:1,loess:1,loess_multilevel:1,loess_parti:1,loess_xi:1,loessord:1,loftu:1,log:1,log_joint:1,logic:1,logist:[1,2],logit:[1,2],loh:[1,2],london:1,longer:1,longest:1,look:[1,2],loop:1,lose:[],loss:[1,2],lot:1,lotim:1,low:1,lowcolor:1,lower:[1,2],lowest:1,lparam:1,lpf:1,lsqisoton:1,lui:1,luisfilt:1,luk:[],luka:[],luke:1,luna:1,m_pval:1,mac:1,machin:1,macmillan:1,macosx_10:1,mad:[1,2],made:1,madlimit:1,mag:1,magenta:1,magic:1,magnitud:[1,2],magnu:1,mahalanobi:[1,2],mai:[1,2],main:1,mainli:1,major:1,make3davi:1,make3davi_uncompress:1,make:[1,2],make_conv_mtx:[1,2],make_figure_into_orthview:1,make_htw_contrast_imag:1,makebinari:1,makefig:1,makelegend:1,malanobi:[1,2],malform:1,man:1,mandatori:1,mani:[0,1,2],manual:[],map:[1,2],map_data_to_colormap:1,map_to_image_spac:1,map_to_world_spac:1,mapnam:1,march:1,mark:1,marker:1,markercol:1,markerfacecolor:1,markers:1,markerstyl:1,markertyp:1,markov:1,martin:[],mask1:1,mask2:1,mask2clust:1,mask2struct:1,mask2surfac:1,mask2voxel:[1,2],mask3:1,mask:[1,2],mask_all_valid:1,mask_char_nam:1,mask_cl:1,mask_clust:1,mask_create_from_image_set:1,mask_create_results_mask:1,mask_fish:1,mask_imag:1,mask_intersect:1,mask_intersection2:1,mask_nam:[1,2],mask_princomp:1,mask_stouff:1,mask_thresh:[1,2],mask_union:1,mask_vol:1,mask_xyzlist:1,maskclu:1,maskdim:1,maskdir:[1,2],masked_dat:1,masked_indx:1,masked_indx_data:1,masked_t:1,masked_vol:1,maskfil:[1,2],maskfilenam:[1,2],maskimag:[1,2],maskimg:1,maskindx:1,maskinfo:1,masknam:[1,2],maskobj:1,maskstat:[1,2],maskvec:1,maskz:1,mass:1,masson:1,mat1:1,mat2:1,mat:[1,2],match:[1,2],matchto:1,materi:1,mathemat:1,matlab2010a:[],matlab:[0,1,2],matlabr12toolboxmatlabdatatypessqueez:1,matric:[1,2],matrix:[1,2],matrix_direct_effect:1,matrix_direct_effects_ridg:1,matrix_eval_funct:1,matrixm:1,matter:[1,2],matthew:1,max95est:1,max:[1,2],max_network:1,max_shift:1,maxalpha:1,maxclust:1,maxcolor:1,maxim:1,maxima:1,maximg:1,maximum:[1,2],maximumum:1,maxiter:1,maxlik:1,maxlin:1,maxmask:1,maxmem:1,maxr:1,maxrow:[1,2],maxslic:1,maxt:1,maxtim:1,mc_setup:1,mcd:1,mcgraw:1,mclellan:1,mcol:1,mcr:1,mdsfig:1,mdsfig_3d:1,mea_visualis:1,mean:[1,2],mean_func_fil:[1,2],mean_gray_matter_mask:1,mean_imag:1,mean_ravol:1,mean_snr:[1,2],mean_spikes_per_imag:[1,2],meanabserr:1,meandat:1,meanest:1,meaning:1,means_for_unique_i:1,meantim:[],measur:[1,2],med:1,medc:1,media:1,medial:1,median:1,mediap:1,mediat:1,mediated_mtx:1,mediation_brain_result:1,mediation_brain_surface_fig:1,mediation_setup:1,mediation_xprepvsb_mbrain_yhr:1,mediodors:1,medium:1,meet:1,member:1,membership:1,memori:[1,2],meng:[],menu:1,merchant:[],merg:1,merge_clust:1,merge_nearby_clust:1,mesg:1,mesh:1,meshgrid:1,mess:1,messag:1,met:1,meta:1,meta_cluster_tool:1,meta_stochastic_activation_blob:1,meth:1,method:[1,2],method_nam:1,metric:[1,2],mia:1,michigan:[],microsoft:1,midbrain:1,midcolor1:1,midcolor2:1,midcolor:1,middl:1,might:1,milimet:1,millimet:1,mimic:1,min95est:1,min:1,min_cluster_s:1,min_dist:1,mincolor:1,mind:1,mind_res_net_fmri_course_2008:[1,2],minh:1,minim:[1,2],minimg:1,minimum:1,minimum_cluster_s:[1,2],minmask:1,minor:[],minsiz:1,minu:1,minut:[],mirror:1,misc_util:[],miscellan:[],misclass:1,misclassif:1,misclassifi:1,mismodel:[1,2],miss:[1,2],missing_imag:[1,2],missing_valu:[1,2],missing_vox:[1,2],mistak:[],mix:1,mixedsig:1,mixtur:1,mm2voxel:1,mm_center:1,mm_distanc:1,mmdeep:1,mni2tal:1,mni:1,mni_tsu:1,mod:1,modal:1,moddf:[1,2],mode:[1,2],model1:[1,2],model3:[1,2],model:[1,2],model_building_tool:[],modeldir:[1,2],modfit:[1,2],modif:[],modifi:1,modifiedconv:1,modr:[1,2],modul:[0,1],modulator_cent:1,moment:[1,2],monkei:[],monotonic_regress:1,mont:1,montag:1,montage_clust:1,montage_clusters_maxslic:1,montage_clusters_medi:1,montage_clusters_point:1,montage_clusters_text2:1,montage_clusters_text:1,montage_image_worslei:1,montagetyp:1,more:[1,2],most:[1,2],motion:[1,2],mous:1,mov:1,move:1,movement:[1,2],movement_param:[1,2],moveslic:1,movi:1,movie_of_slice_timeseri:1,movie_output_fil:1,movie_stillfram:1,movienam:1,moving_averag:1,mri1:1,mri_data:1,ms_cond:1,ms_subject:1,ms_total:1,msb:1,msdb:1,msdstd:1,mse:1,msk:1,mspec:1,mtotalv:[1,2],mtx:1,much:[1,2],muck:[],mueller:1,multcomp_group:1,multcomp_spati:1,multcompar:1,multi:[1,2],multi_threshold:1,multiclass:1,multicolinear:[1,2],multicollinear:[],multidimension:1,multilev_medi:1,multilevel:1,multipl:[1,2],multipli:[1,2],multireg:[1,2],multivar_dist:[1,2],multivari:[1,2],multval:1,must:[1,2],mutipl:1,mutual:[1,2],mv_distanc:[1,2],mvarnam:1,mvmt:[1,2],mvmt_baseline_rsquar:1,mvmt_rsquar:1,mvmtrsq:1,mvnrnd:1,mvroi:1,mvroi_mdsfig_plot2:1,mvroi_mdsfig_plot_sepst:1,mvroi_mdsfig_plugin2:1,mvroi_mdsfig_plugint2:1,mvroi_plot_fir:1,mx1:1,mxc:1,my_function_nam:1,my_image_nam:1,my_image_vector:1,my_mean_imag:1,my_mm_coord:1,my_model:1,my_on:1,my_rgb_color:1,my_st:1,mya:1,myalpha:1,mycol:1,mycolor:1,mycon:1,mycov:1,mydelimit:1,mydir:[1,2],myfft2:1,myfft:[1,2],myfield1:1,myfield2:1,myfield:1,myfil:1,myimag:1,myimg:1,mylight:1,mymontag:1,myoutnam:1,myradiu:1,mysavedir:1,myset:1,mystd:[1,2],mytext:1,myview:1,myz:[1,2],n15_avgpet:1,n15_avgpet_brain:1,n_bin:1,n_condit:1,n_in_column:1,n_in_sampl:1,n_in_set:1,n_inmask:1,naiv:1,name1:1,name2:1,name:[1,2],names_t1:[1,2],namesfield:1,nan:[1,2],nancorr:[],naninsert:1,nanmean:1,nanremov:1,nanstd:1,nanvec:1,natur:1,nbasi:[1,2],nbin:[1,2],nboot:1,ncl:1,nclass:1,ncond:1,ncondit:1,ndim:1,nearest:1,nearest_dist:[],necessari:[1,2],necessarili:1,need:[1,2],needless:1,neg:1,neg_colormap:1,negcl:1,negcm:1,negcolor:1,negneg:1,negpo:1,neighbor:1,neighbour:1,neither:[1,2],nest:1,net:1,nets:[],network:1,neural:1,neuroimag:1,neurolog:1,neurosynth:[],nevent:1,new_fil:1,new_sampr:1,new_str:1,new_struct:1,new_var:1,new_voxs:1,newax:1,newcl:1,newcolormap:1,newdat:1,newfig:1,newroot:1,newvx:[],next:[1,2],nfold:1,nheaderrow:1,nibabel:[],nice:1,nichol:1,nifit:1,nifti:[1,2],nigra:1,nih:1,nii:[1,2],nimag:1,nimg:1,nimh:1,niter:1,nkx:1,nlcon:1,nlevel:1,nmb:1,nmd:1,nmdsfig1d:1,nmdsfig:1,nmdsfig_fil:1,nmdsfig_legend:1,nmdsfig_output:1,nmdsfig_tool:1,nneed:1,nnhe:[1,2],nnmfscore:[1,2],no_preproc:1,no_surfac:1,noampscal:1,nobin:1,noblob:1,noboot:1,nodb:1,node:1,nodelet:[1,2],nodisplai:1,nodraw:1,nofig:1,nofigur:1,nofil:1,nofuzzi:1,nograph:1,nohead:[1,2],nohtw:1,noind:1,noint:1,nointercept:1,nois:[1,2],noise_arp:1,noisemodel:1,noisevar:1,noisevector:1,nolin:1,nolink:[1,2],noll:1,nomin:1,nomontag:1,non:[1,2],none:1,nonempti:1,noninfring:[],nonlin_fit:1,nonlin_param_mod_brain:1,nonlin_param_modul:1,nonlin_parammod_predfun:1,nonlinear:1,nonneg:1,nonnoc_v6_109subjmap_mean:1,nonorm:1,nonormfit:1,nonparametr:1,nonrobust:1,nonstationari:1,nonzero:1,noopt:1,noorthview:1,nooutlin:1,nooutput:1,nooverlap:1,nopcr:1,noplot:[1,2],nopoint:1,nopreproc:1,noprint:1,nor:[1,2],norder:[1,2],noremov:1,noreshap:1,noresidu:1,noresult:[1,2],noreview:[1,2],norm:[1,2],norm_check:[1,2],norm_mask:1,norm_vs_templ:[1,2],normal:[1,2],normaldir:1,normalizedrank:[],norminv:1,normrnd:1,nosep:1,noslic:1,nosmooth:1,nostar:1,notabl:1,notch:1,note:[1,2],notebook:[],notext:1,notfil:1,noth:[1,2],notic:[],notif:[1,2],notx_p05:1,noundershoot:1,nout:1,nov:[],novel_stimuli_run1:[1,2],novel_stimuli_run2:[1,2],noverbos:[1,2],noviolin:1,now:[1,2],nperm:1,nps_by_studi:1,nps_thresh:1,nps_thresh_smooth:1,nrep:1,nresampl:1,nrm:1,nrun:1,nscalped_f:[1,2],nscalped_ft1:[1,2],nscan:1,nsess:[1,2],nsf2:[],nsf:[1,2],nsub:1,nsubj:1,nsubject:1,nterm:1,ntest:1,nth:[1,2],ntotalprocess:1,ntotalvox:1,ntrial:1,ntrim:1,nuclei:1,nucleu:1,nuisanc:[1,2],nuisance_cov:[1,2],nuisance_cov_estim:1,nuisancex:[1,2],nullmax:1,nullmaxt:1,num2str:[1,2],num:1,num_disdaq_vol:1,num_imag:[1,2],num_outli:1,num_vols_per_run:1,num_vox:1,number:[1,2],numc:1,numclust:1,numcompon:1,numer:1,numfram:1,numgen:1,numpi:[],numpiec:1,nums_from_text:1,numsecond:1,numvox:1,nvar:1,nvol:1,nvols_per_run:1,nvox:1,nvoxel:[1,2],nx1:1,nxvxt:1,obj1:1,obj2:1,obj:[1,2],obj_out:1,object:[],object_nam:1,objecthandl:1,objfun:1,objfun_ga:1,objhan:1,obji:1,objtyp:1,obs_dist:1,observ:[1,2],obsk:1,obsolet:1,obtain:1,obviat:[],obvious:[],occas:[1,2],occur:[1,2],oct:[1,2],odd:1,oddbal:[1,2],off:[1,2],offic:1,offset:1,ofilenames_or_v:1,often:[1,2],ofun:1,ohi:[],ohni:[],old:1,old_str:1,old_struct:1,old_var:1,older:1,oliv:1,ols_z_0001:1,omax:1,omin:1,omit:[1,2],ommit:1,omnibu:1,onc:[1,2],one_sample_t_test:[1,2],onecolor:1,oneinsert:1,onerow:1,onli:[1,2],onlin:[],onlycon:[1,2],onlyresult:[1,2],ono:[],onset:[1,2],onsets2:1,onsets2delta:[1,2],onsets2dx:1,onsets2fmridesign:1,onsets2parametric_mod_x:1,onsettim:[],onsp:1,onto:1,ooc:1,ooc_indic:1,ooc_vector:1,opaqu:1,open:1,opengl:1,oper:[1,2],opi:1,oppos:1,opt:1,optim:[1,2],optimize_rand_search:[1,2],optimizedesign11:[],optimizega:[1,2],optimizega_epoch:[1,2],option:[1,2],optional_input:1,optional_output:1,options_structur:1,optout:1,optstr:1,orang:1,orcutt:1,order:[1,2],ordinari:1,org:1,organ:1,orient:[],orig_cluster_indx:[],orig_sampr:1,orighz:1,origin:[1,2],ortho:[1,2],orthogon:[1,2],orthview:[1,2],orthviews_multiple_obj:1,osvd:1,osx:1,other:[0,1,2],other_output:1,other_output_cv:1,other_output_cv_descrip:1,other_output_descrip:1,otherwis:1,ouput:1,our:1,out:[1,2],out_nam:1,outcel:1,outcom:1,outcome_dat:1,outcome_method:1,outdata:1,outimagelabel:1,outlier:[1,2],outliers_rmssd:1,outlin:1,outlinecol:1,outlinecolor:1,outlinewidth:1,outnam:1,outp:1,outpoint:1,output:[1,2],output_basedir:[1,2],output_directori:[1,2],output_nam:1,outputdir:1,outputfil:1,outputnam:[1,2],outsid:[1,2],outside_rang:[],outtyp:[],ov_mat:1,over:[1,2],overal:[1,2],overall_sw:1,overlai:1,overlaid:[1,2],overlap:1,overlap_29_aug:1,overlapdat:1,overlayimagenam:1,overrid:1,overview:[1,2],overwrit:[1,2],overwritten:1,ovl:1,ovlcolor:1,ovlp:1,own:1,oxford:1,oxn:[1,2],p_cols_of_interest:1,p_obs_act_given_class:1,p_omnibu:1,p_sig:1,p_vs_c_heat:1,pa0_given_t:1,pa1_given_not_t:1,pa1_given_t:1,packag:[0,1],pad1:1,pad2:1,pad3:1,pad4:1,pad5:1,pad6:1,pad:1,padwithnan:1,page:[0,1,2],pagesetup:1,pain:1,pain_meta_fmridisplay_example_sagitt:1,pair:[1,2],pairwis:1,pairwise_diff:1,pakhomov:1,pallidu:1,panda:[],pane:1,panel:1,paper:1,paragraph:[],parallel:[1,2],param:[1,2],paramet:[1,2],parametr:1,parametric_singleregressor:1,parametric_standard:1,params_obj:1,parasaggit:1,parasagitt:1,parcel:1,parcel_cl:1,parcel_cl_avg:1,parcel_cl_nmd:1,parcel_cl_nmds_plot:1,parcel_clust:1,parcel_complete_set:1,parcel_imag:1,parcel_images_output:1,parcellation_info:1,parcellation_info_tor_mask_try1:1,parcellation_tool:[],parfor:1,park:1,parmet:1,parpool:1,pars:1,parse_char_to_cel:1,parse_edat_txt:1,part:[1,2],partial:1,partialr:1,particip:1,particular:1,particularli:1,partit:1,partition_variables_indevel:1,pass:[1,2],patch:1,patch_handl:1,path:[0,1,2],pathtomaskfil:[1,2],patient_id:1,patt:1,patter:[1,2],pattern:[1,2],pattern_exp_valu:1,pattern_express:1,paus:[1,2],pbn:1,pca:[1,2],pca_imag:1,pcacov:1,pcare:1,pci:1,pcitarget:1,pcl:1,pclustlev:1,pcr:1,pdf:[1,2],pdist1:1,pdist:1,peak:[1,2],peak_coordin:[],peakeq:1,pearson:1,peform:1,pemut:1,penal:1,penalti:1,per:[1,2],perc:[1,2],percent:1,percent_sig_imag:1,percentag:1,percentchang:1,percentil:1,percvarf:1,percvarp:1,perform:[1,2],period:[1,2],perm:1,permindx:1,permiss:[1,2],permit:[],permsign:1,permtest:1,permut:1,permute_setupperm:1,permute_signtest:1,person:[],perspect:1,pet:1,peter:1,pexp1:1,pexp:1,pfile:1,phase:1,phi:1,phil:1,php:1,physical_pain:1,physio:[1,2],physiolog:[1,2],pick:[1,2],pick_atlas_pal_larg:1,pid:1,pie:1,piec:1,piecewis:1,pimg1:1,pimg:1,pine:1,pinputnam:1,pinv:1,pip:[],pixel:1,pkx:1,place:[1,2],placebo:1,plai:1,plane:1,platt:1,platt_scal:1,plausibl:1,player:1,pleas:[1,2],plegend:1,plot3:1,plot3d:1,plot:[1,2],plot_correl:1,plot_correlation_samefig:1,plot_current_orthviews_coord:1,plot_dx_hrf:1,plot_dx_hrfs_indiff:1,plot_ellips:1,plot_error:1,plot_horizontal_lin:1,plot_hrf_model_fit:1,plot_ideal_deconv5:1,plot_joint_hist_contour:[1,2],plot_matrix_col:1,plot_model_fit:1,plot_points_on_slic:1,plot_var:1,plot_vertical_lin:1,plotal:1,plotdesign:1,plotfig:[1,2],plotflag:1,plothistogram:1,plotlinehor:1,plotmat:1,plotmethod:1,plotout:1,plotst:1,plotstr:1,plotsummari:1,plottitl:1,plssquash:1,plu:1,plugin:1,ply:[],pm_val:1,pmean:1,pmod:1,png:[1,2],point:[1,2],pointcolor:1,pointloc:1,pointsiz:1,polar:1,poli:1,polin:1,polygon:1,polyphas:1,pool:1,poorli:1,pop:1,popul:1,popular:1,portion:[],pos_colormap:1,poscl:1,poscm:1,poscolor:1,posit:[1,2],posneg:1,posneg_separ:1,pospo:1,possibl:1,post:1,posterior:1,potenti:[1,2],pout:[1,2],pow0:1,pow2:1,pow3:1,pow:1,power:[1,2],power_from_vari:[1,2],power_loss:[1,2],powerloss:[1,2],powerpoint:1,powloss:[1,2],pows1:1,pows2:1,ppm:1,ppv:1,practic:[1,2],prctile:1,pre:1,prealloc:[],precis:1,preclud:[1,2],pred:1,pred_outcome_r:1,predfun:1,predict:1,predict_test_suit:1,predictor:[1,2],prednam:1,predrang:1,prefer:[1,2],prefix:[1,2],preliminari:1,prep:[],prepar:1,prepend:[1,2],preproc:[1,2],preprocess:[1,2],preprocessed_dat:1,preprochandl:1,preproci:1,preprocx:1,prescrib:1,present:1,preserv:1,press:1,presum:[1,2],pretti:[1,2],prevent:1,previou:1,previous:1,prim_p:1,primari:1,primarili:[1,2],primary_p:1,princeton:1,princip:[1,2],principl:1,princomp:1,princomp_largedata:1,print:[1,2],print_matrix:1,print_summari:1,printfil:[1,2],printout:[1,2],prior:1,priori:1,priors_pt:1,privat:1,prob:1,probabl:[1,2],probe:[1,2],problem:[1,2],procedur:1,process:[1,2],produc:[1,2],product:1,profil:1,program:[1,2],programm:1,progress:1,progressbar:1,project:1,prompt:1,promt:1,prop1:1,prop:1,prop_correct:1,prop_correct_by_class:1,propcol:1,proper:1,properli:1,properti:1,property1:1,property2:1,propertynam:1,propertyvalu:1,propnam:1,proport:[1,2],propval1:1,propval2:1,prospect:1,prospect_optimize_design:1,prospect_organ:1,protect:[1,2],provid:1,prplot:1,prplot_multilevel:1,prune:1,pruneclust:1,prunese:1,psdx:1,pseudo:[1,2],pseudocolor:1,pseudoinvers:1,pso:1,pspm:1,psyc7215:[1,2],psyc_7215_fall_2010:[],psychol:1,pt_given_act0:1,pt_given_act1:1,ptask:1,ptaskcutoff:1,pthandl:1,pthresh:[1,2],ptsd:1,pub:1,publish:[1,2],publish_scn_session_spike_id:[1,2],publishedproject:1,purpl:1,purpos:[0,1,2],push:[1,2],pushbutton:1,put:[0,1,2],putamen:1,pval:[1,2],pvalthreshold:1,pvalu:[1,2],pvoxellev:1,pwd:[1,2],pxred:1,pypi:[],python:[],qc_imag:1,qc_yaml_repositori:[],qchist:[1,2],quadrat:1,qualiti:[1,2],quantifi:[],queri:[],question:1,quick:1,quickest:[],quickstart:1,quit:1,quot:1,r2009a:[1,2],r2012a:1,r2z:1,r_corr:1,racin:1,radial:1,radian:1,radiu:1,raid1:1,rais:[1,2],rand:1,randn:[1,2],random:[1,2],randomli:[1,2],randperm:1,randsampl:1,rang:[1,2],rank:1,rankdata:1,rankvoxel:1,rapca:1,raph:1,rapid:1,rarun:[1,2],rate:[1,2],rater:1,rather:1,ratio:1,ravol:[1,2],raw:[1,2],raw_data:1,rawvarf:1,rawvarp:1,rbf:1,rci:1,rcrit:1,rdiff:1,rdiff_p:1,rdiff_zscor:1,reach:1,read:[1,2],read_databas:1,read_database2:1,read_edat_output_2008:1,read_excel:1,read_from_excel:1,read_from_fil:1,read_hdr:[1,2],read_physio_data:1,read_t:[],readi:1,readim2:1,reading_data:1,readm:[1,2],real:[1,2],realclass:1,realign:[1,2],realign_fil:[1,2],realli:[1,2],reason:1,rebuild:1,rebuild_volinfo_from_dat:1,recalcul:1,receiv:1,recommend:1,recomput:1,recon:1,reconstruct:1,reconstruct_imag:1,record:[1,2],rect:1,rectangular:1,recurs:1,red:[1,2],redistribut:[],redon:[],reduc:[1,2],reduced_dimension:1,reducedi:1,reduct:1,redund:[],ref:[1,2],refactor:[],refer:[1,2],reflect:[1,2],refz:1,reg:[1,2],regardless:1,regex:1,regexprep:1,region2imagevec2tmp:1,region2imagevec:1,region2struct:1,region:[],region_idx:1,region_obj:1,regionmask:1,regist:[1,2],regress:[1,2],regress_best_subsets_ga:1,regression_output:1,regressor:[1,2],regs_per_sess:[1,2],regsofinterest:1,regular:[1,2],regularli:1,reject:1,rel:[1,2],relat:[1,2],relationship:1,releas:1,relev:1,reliabl:1,reload:1,remain:1,remap:1,remcomput:1,remi:1,remi_mean_t2:1,reml:1,remov:[1,2],remove_disdaq_vol:1,remove_empti:1,remove_mean_flag:1,removeblob:1,removed_imag:1,removed_voxel:1,removeintercept:[],removelin:1,removepoint:1,removevari:[],renam:1,rename_lowercas:1,rename_uppercas:1,render:1,render_blob:1,rendercluster_ui4:1,rendercluster_ui:1,reorder:1,repars:[],reparse_contigu:1,reparse_contingu:1,repeat:1,repeated_ancova:1,repetit:[1,2],repitit:1,replac:[1,2],replace_basis_set:1,replace_empti:1,replic:1,repmat:1,report:[1,2],report_predictor:1,reportmod_model:1,repositori:1,repres:[1,2],represent:1,request:1,requir:[1,2],res1:1,res2:1,res3:1,res4:1,res4d:1,res5:1,resampl:[1,2],resample_scnlab:1,resample_spac:1,resample_tim:1,resample_to_image_spac:1,resampled_dat:1,rescal:1,resel:1,reserv:1,reset:[1,2],reset_spmcfg:[1,2],reshap:1,resi_:1,resid:1,resid_full_model:1,residscan:[1,2],residu:[1,2],residual_imag:1,reslic:[1,2],reslice_img:[1,2],resliced_mask:1,reslicedimg:1,reslicethi:1,resm:1,resolut:[1,2],resort:1,resp:1,respect:[1,2],respir:[1,2],respons:[1,2],resss:1,rest:[1,2],restim:[],restrict:1,result:[1,2],results_imag:1,results_obj:1,results_searchlight_1_p_dat11:1,results_searchlight_1_r_dat11:1,results_searchlight_2_acc_dat11:1,results_searchlight_2_p_dat11:1,results_searchlight_2_se_dat11:1,results_searchlight_2_thr_dat11:1,results_searchlight_:1,resum:1,retain:1,retriev:1,return_beta:1,revers:1,reverse_mask:1,revis:[],revisit:1,revx:1,rewrot:[],rfx0009:1,rfx0011:1,rfx0013:1,rfx0015:1,rfx0017:1,rfx:1,rgb:1,rgblist:1,rgex:1,rho:[1,2],rid:1,ridg:1,right:[1,2],rightsurfac:1,rint:1,risk:1,rmanova2:1,rms_successive_diff:[1,2],rms_successive_diffs_inhomogen:[1,2],rmsd:1,rmse:1,rng:[],rngarrai:1,rnnhet1spgr_seg1:[],rnnhet1spgr_seg3:[],rob:1,rob_p_0001:1,rob_pmap_ful:1,rob_tmap_0001:1,rob_tmap_0001_filt_t_3:1,rob_tmap_0002:1,rob_tmap_0002_filt_t_3:1,rob_tmap_0003:1,rob_tmap_filtered_0001:1,rob_tmap_filtered_0002:1,robfit:[1,2],robfit_group_level_directori:[1,2],robfit_results_batch:[1,2],robfitdir:[1,2],robjhyndman:1,robust0001:[1,2],robust0001_poscl:1,robust0002_poscl:1,robust0003_poscl:1,robust:[1,2],robust_opt:1,robust_reg_pool:1,robust_results_act_plus_corr:1,robust_results_batch:[1,2],robust_results_batch_script:1,robust_results_threshold:1,robustcsvread:1,robustfit:1,roc:1,roc_boot:1,roc_calc:1,roc_plot:1,rocha:1,rocout:1,roi:[1,2],roi_contour_map:1,roi_drawing_tool:[],roi_group1:1,roi_imag:1,roi_mask:1,roi_method:1,roi_midbrain:1,roi_prob:1,roi_stn:1,roi_val:1,roimean:1,roipattern:1,roll:1,root:[1,2],rotat:[1,2],rotate_to_pca:1,rotatefactor:1,roughli:[1,2],round:1,rousseeuw:1,routin:1,row1:1,row2:1,row3:1,row:[1,2],rows_to_skip:1,rpv:1,rs2_8vs2_placebocp:1,rs2meta:1,rscalped_avg152t1_graymatter_smooth:1,rscoreplu:1,rset:1,rsj:1,rsquar:1,rsquare_calc:1,rsquare_multiple_regions_multilevel:1,rsync:[],rt_fit_brain:1,rtcenter:1,rtf:[1,2],rule:1,run03:1,run1:1,run2:1,run:[1,2],run_01:[1,2],run_col:1,runc:[1,2],ruzic:[1,2],ruzicl:[1,2],rvm:1,rvrv:1,s01:[1,2],s2between_ol:1,s2full:1,s2red:1,s_fdata:1,s_i:1,sad:1,sag:1,sagg:1,sagg_slice_movi:1,saggit:1,sagitt:1,sai:1,salientmap:1,same:[1,2],samefig:1,sampl:[1,2],sample_canlab_dataset_experiment_level:1,sample_canlab_dataset_subject:1,sample_data_nsf_studi:[],sampleto:1,sampr:[1,2],samprat:1,satterthwait:1,sattherwait:1,satur:1,save:[1,2],save_dir:1,save_plot:1,save_weight:1,savea:1,savebootweight:1,savedir:1,savedotfig:1,savefil:1,savefilenam:1,saveflag:1,savenam:1,saveplot:1,savestr:1,sc1:1,sc2:1,sca:1,scalar:[1,2],scale:[1,2],scale_imgs_by_csf:[1,2],scaledtranspar:1,scalefactor:1,scall:[],scalp:1,scalped_avg152t1_graymatt:[1,2],scalped_avg152t1_graymatter_smooth:1,scan:[1,2],scan_get_fil:1,scanadjust:1,scanlab:1,scanner:1,scannum:1,scans_per_sess:1,scansperrun:1,scanspersess:1,scatter:[1,2],scattermatrix:1,scatterplot:1,schafer:[],schema:1,schulznewcorn_regressor_demograph:1,scienc:1,scikit:[],scipi:[],scl_slope:1,scn:1,scn_component_rsquar:[1,2],scn_core_support:1,scn_export_papersetup:1,scn_get_datetim:1,scn_map_imag:1,scn_mat_conform:1,scn_resample_voxel_s:1,scn_session_spike_id:[1,2],scn_spm_choose_hpfilt:[1,2],scn_spm_design_check:[1,2],scn_spm_get_events_of_interest:[1,2],scn_standard_color:1,scn_stats_helper_funct:1,scn_write_plan:1,scnalpha:1,scnlab_filter_fmri_data:1,scnlab_norm_check3:[1,2],scnlab_norm_check:[1,2],scnlab_outlier_id:1,scnlab_pca_check1:[1,2],scnmontag:1,scolor:1,score:[1,2],scott:[],scree:1,screen:[1,2],script:[1,2],sdat:1,sdt:1,sdt_a:1,sdx:1,se_within:1,search:[0,1,2],search_struct:1,search_struct_field:1,searchlight:1,searchlight_applymask:1,searchlight_applymask_col:1,searchlight_correl:1,searchlight_disti:1,searchlight_dream:1,searchlight_dream_test:1,searchlight_results_:1,searchlight_saveresult:1,seber:1,sec2sec:[],sec2tr:[],sec:1,second:[1,2],second_level:[1,2],secondli:1,section:[1,2],see:[1,2],seed1:1,seed2:1,seed:1,seeddat:1,seedoth:1,seedself:1,seem:[1,2],seg3:[1,2],seg:1,segment:1,select:[1,2],select_one_imag:1,selective_averag:1,selective_average_group:1,selective_average_interactive_view_init:1,selectivity_cutoff:1,self:1,sell:[],sen:1,send:[1,2],sensibl:1,sensit:1,sep:1,separ:[1,2],sepplot:1,sept:1,sepval:1,sequenc:1,sergei:1,seri:[1,2],serial:1,seriesnam:1,serv:0,sesq:1,sess:1,sess_imag:[1,2],session:[1,2],session_global_percent_chang:1,session_global_z:1,session_multipl:1,session_outli:1,set:[0,1,2],setappdata:1,setcolor:1,setnam:1,sets_by_var:1,setstr:1,setup:[1,2],setupion:1,sever:1,sfir:1,sfwhm:1,shade:1,shall:[],shan:1,shape:1,share:1,sheet:[1,2],sheetnam:1,shell:1,shepardplot:1,shift:1,shift_bi:1,shift_correl:1,shift_sign:1,shift_step:1,shiftbi:1,shiftedi:1,shiftstep:1,shiftval:1,shim:[1,2],shorten:[],shorter:1,shorttitl:1,should:[0,1,2],show:[1,2],shown:1,shrankag:1,shrink:1,shrinkag:1,shrout:1,shtml:1,shuffl:[],si1:1,si2:1,sid:[],side:1,sig2:1,sig2b:[1,2],sig2wi:[1,2],sig2within:[1,2],sig:1,sigm:1,sigma2:1,sigma:1,sigmat2:1,sigmat:1,sigmat_uncorrect:1,sigmatavg:1,sigmatdif:1,sigmatneg:1,sigmoid:1,sign:[1,2],signal:[1,2],signal_hemispheric_asymmetri:[1,2],signal_rms_asymmetri:[1,2],signatur:1,signfic:1,signifi:1,signific:[1,2],significantli:1,signperm:1,signtest:1,signtest_matrix:1,sigonli:1,sigt:1,sihouett:1,sii:1,silhouett:1,silke_senders_xyz_coordin:1,silli:[],sim:[1,2],similar:[1,2],simpi:[],simpl:[1,2],simpler:1,simplest:1,simpli:[1,2],simplifi:1,simul:[1,2],sin:1,sinc:1,singl:[1,2],single_subj_t1:1,single_trial_estim:1,singleinterv:1,sinica:[1,2],size:[1,2],sizecutoff:1,sizeof_hdr:1,sizescal:1,sizethr:1,sizethresh:1,skew:[1,2],skill:1,skip:[1,2],sl_size:1,slack:1,slant:1,slate:1,slice10_timeseri:1,slice:1,slice_data:1,slice_mm:1,slice_mm_coord:1,slice_num:1,slice_rang:1,slice_vox_coord:1,slicedist:1,slicei:1,sliceindex:1,sliceinfo:1,sliceno:1,slicenumb:1,sliceord:1,slices_fig_h:1,slices_per_row:1,slicespac:1,slightli:1,slope:1,slope_p:1,slope_t:1,slow:[1,2],slower:[1,2],small:1,smaller:[1,2],smap:1,smapth:1,smartstart:1,smax:1,smin:1,smooth:[1,2],smooth_3d:1,smooth_mm:1,smooth_timeseri:1,smoothest:1,smoothlen:1,snpm0002_varsm_cov_clust:1,snpm:[1,2],snpmt_filter:1,snr:[1,2],snr_hemispheric_asymmetri:[1,2],snr_inhomogen:[1,2],snr_inhomogeneity95:[1,2],snr_rms_asymmetri:[1,2],soak:[1,2],sobol:1,social:1,soften:1,softer:1,softmax:1,softwar:[1,2],soldier:1,sole:1,solid:1,solut:[1,2],soluton:1,some:[1,2],someon:[],someth:1,sometim:1,somewhat:1,somresult:1,sorri:1,sort:[1,2],sort_by_vif:[1,2],sort_image_filenam:1,sort_nat:1,sourc:1,source_imag:1,source_time_interv:1,source_tr:1,space:[1,2],spaceto:1,span:1,spars:[1,2],spatial:[1,2],spatial_contrast:1,spatial_smooth_fwhm:1,spatio:1,spatiotemp_biomark:1,spearman:1,spec:1,special:1,specif:[1,2],specifi:[1,2],specularexpon:1,specularstrength:1,speechtask:1,speed:1,speedi:1,spersess:[1,2],spey:1,spgr:1,sphere:1,sphere_mask:1,sphere_roi_tool:1,spheric:1,spider:1,spike:[1,2],spikecorrect:1,spikesperimg:[1,2],spiral:1,spline:[1,2],spline_hrf_basi:1,splinedetrend:1,splinetrim:1,split:1,splitcolor:1,spm2:1,spm2_ami:1,spm2_hy:1,spm2canlab_dataset:1,spm5:[1,2],spm8:[1,2],spm8_colin27t1_seg:1,spm99:1,spm99b:1,spm:[1,2],spm_analysi:1,spm_check_registr:1,spm_cluster:1,spm_create_vol:1,spm_default:1,spm_desmtx:1,spm_est_smooth:1,spm_fcutil:1,spm_filter:1,spm_general_hist:[1,2],spm_get:[1,2],spm_get_bf:1,spm_get_data:1,spm_getspm:1,spm_hplength:1,spm_hrf:[1,2],spm_imag:1,spm_imcalc:1,spm_imcalc_ui:1,spm_img:1,spm_list_fil:1,spm_mat2batchinput:1,spm_max:[],spm_mireg:[1,2],spm_orthview:1,spm_orthviews_change_colormap:1,spm_orthviews_hotcool_colormap:1,spm_orthviews_name_axi:1,spm_orthviews_showposit:1,spm_orthviews_white_background:1,spm_ov_black2whit:1,spm_randfx:1,spm_read_vol:1,spm_reml:1,spm_results_dir:[1,2],spm_rfx_hist:[1,2],spm_select:1,spm_sp:1,spm_spm:1,spm_spm_bay:1,spm_spm_ui:1,spm_subject_level_directori:[1,2],spm_t2z:1,spm_vol:1,spm_write_plan:1,spm_write_vol:1,spmcfg:[1,2],spmp:[1,2],spmt:[1,2],spmt_0004:1,spmt_:[1,2],spmt_filtered_0002:1,spot:1,springer:1,sprintf:[1,2],sqrt:1,squar:[1,2],squareform:1,squeez:1,sre:[1,2],sres_n:[1,2],sse:1,stabl:1,stack:1,stage:[1,2],stand:[0,1,2],standard:[1,2],standard_stimuli_run1:[1,2],standard_stimuli_run2:[1,2],standardis:1,standardmrilight:1,star:1,start:[1,2],start_field:1,startend:1,startp:1,startslic:1,startval:1,stat:[1,2],stat_subset:1,state:1,statimg:1,stationari:1,statist:[1,2],statistic_imag:[],statistica:[1,2],statistics_imag:1,statistics_tool:[],stats1:1,stats2:1,stats_imag:1,stats_image_obj:1,stats_img:1,stats_md:1,stats_other_output_cv:1,stats_plot:1,stats_regress:1,stats_scatterplot:[1,2],stats_within:1,statsg:1,statsimg:1,std:[1,2],std_t1:[1,2],stderr:1,stdev:1,ste:1,stebeta:1,stedat:1,steiger:1,step:[1,2],stepbi:1,stephan:[],stepsiz:1,stepwis:1,stepwise_tor:1,sterr:1,stick:[1,2],still:1,stim:1,stimlength:1,stimlist:1,stimul:1,stimuli:1,stimulu:1,stmarker1:1,stn:1,stochast:[1,2],stop:1,store:1,stotalv:[1,2],stouffer:1,str2mat:[1,2],str:1,straightforward:[],strang:[1,2],stratifi:1,strcat:1,strength:1,stress:1,strfind:1,strict:1,strictli:1,string:[1,2],stringent:1,strip_git_dir:[],strip_path_dir:1,strip_svn_dir:1,strmatch:[],strongli:1,strrep_recurs:1,strtok:1,struct2yaml:[1,2],struct:[1,2],struct_strrep:1,structur:[1,2],strucur:1,strutur:1,studi:[1,2],study1:1,study_img:1,studybyroi:1,studybyset:1,studyroot:[1,2],stuff:1,style:1,styliz:1,sub:[1,2],subcl:1,subclust:1,subcluster_montag:1,subclusters_from_local_max:1,subclusters_to_chang:1,subcol:1,subcort:1,subdir:[1,2],subdirectori:[1,2],subdivid:1,subdivide_by_atla:1,subdivide_by_local_max:1,subfield:1,subfigur:1,subfold:1,subfunct:[1,2],subgroup:1,subj1:1,subj:[1,2],subj_level:1,subjdata:[1,2],subjdir:1,subjec:[],subject:[1,2],subject_avg:1,subject_dir:[1,2],subject_group:1,subject_level:1,subject_list:[1,2],subject_st:1,subjectdata:[1,2],subjectfil:1,subjectfilelist:1,subjectnumb:1,subjid:1,subjk:[1,2],subjlabel:[1,2],subjm:[1,2],subjnam:[1,2],subjtyp:1,subjw:[1,2],sublicens:[],submit:[1,2],submodul:[],subplot:[1,2],subplotcol:1,subplotrow:1,subregion:1,subsequ:[1,2],subset:[1,2],subset_indicator_matrix:1,subspac:1,substanti:[1,2],substantia:1,substructur:1,subthalam:1,subtract:1,success:1,suchman:1,suface_handl:1,suffici:1,suffix:1,sum:[1,2],sum_valid_ant:1,summar:1,summari:1,summaris:1,summer:1,sun:[1,2],superced:1,superior:1,support:[1,2],suppress:[1,2],supra:1,suprathreshold:1,supress:1,sure:1,surf:1,surf_handl:1,surf_plot_tor:1,surf_single_subj_t1_grai:1,surfac:1,surface_cutawai:1,surface_handl:1,surround:1,surv:1,survei:1,suspect:1,svd:[],svm:1,svn:1,svr:1,swap:1,swd:1,sweenei:1,switchnext:1,sxyz:1,sxzy:1,symbol:1,symmetr:1,synchron:1,syntax:1,synthesi:[],system:1,systemat:1,t1_face_exemplar:1,t_diff:1,t_intercept:1,t_test2:1,tab:1,table_group:1,table_spati:1,tag:1,tagnam:1,tail:[1,2],take:[1,2],taken:1,tal2mni:1,tal2vox:1,tal:1,tal_info:1,talairach:1,talairach_clust:1,talairach_info:1,talaraich_info:[],talariach:1,talarich:1,taldata:1,tanh:1,tar:1,target:1,target_space_imag:[1,2],target_stimuli_run1:[1,2],target_stimuli_run2:[1,2],target_time_interv:1,target_tr:1,targethz:1,targetsp:1,targetu:1,task:[1,2],taskbeta:[1,2],taskclass:1,taskimag:[1,2],taskprob:1,tau:1,taua:1,taub:1,tcl:1,tcrit:1,tdim:1,techniqu:1,teidx:1,tell:1,temp:1,templat:[1,2],tempor:[1,2],temporari:1,tend:[1,2],term:1,test:[],test_qc:[1,2],test_result:1,test_run1_pca2:1,test_run1_pca:1,test_statist:1,testclustnew:1,testvec:1,text:[1,2],textcod:1,textcol:1,textfield:1,textlab:[1,2],textlabel:1,textprefix:1,textual:1,tfontsiz:1,tha:1,thal:1,thalamu:1,than:[1,2],thei:[1,2],them:[0,1,2],theoret:1,theori:1,therefor:1,theta0:[1,2],theta:[1,2],theworkspac:1,thi:[],thick:1,thing:[1,2],think:1,third:1,thoroughli:1,those:[1,2],though:[1,2],thr:1,three:1,thresh:1,thresh_t:1,thresh_typ:1,threshold:[1,2],threshold_img:1,threshold_spm_t:1,threshold_typ:1,threshtyp:1,through:1,thu:1,tibrishani:[],tic:1,tick:1,tickdir:1,tiff:[1,2],time:[1,2],time_varying_estim:1,timebin:1,timecours:1,timecourse_plot:1,timedispers:1,timeeseri:1,timeonli:1,timepoint:1,timer:1,timeseri:[1,2],timeseries2:[1,2],timeseries3:[1,2],timeseries:[1,2],timeseries_btwngroups_plot:1,timeseries_extract_slic:1,timeseries_mc_pvalu:1,timeseries_prplot:1,timg:1,timseri:1,tinv:1,tip:1,tipangl:1,tissu:1,titl:[],titlestr:1,tlab2:[1,2],tmod:1,tmp2:1,tmp:1,tmp_file:1,tname:1,to_dir:1,toc:1,toeplitz:1,togeth:[1,2],toggl:1,toi:1,tom:[],too:1,tool:[],toolbox:[],top:[1,2],topmm:1,tor:[1,2],tor_3d:1,tor_docu:[1,2],tor_documentscurrentexperimentsintext2mp:[],tor_documentscurrentexperimentsintext2resultsmodel1:[],tor_extract_roi:1,tor_fig:1,tor_fill_steplot:1,tor_ga:1,tor_get_physio:[1,2],tor_ihb_getclust:1,tor_ihb_getclusterset:1,tor_ihb_talspac:1,tor_ihb_updateclustertalvoxs:1,tor_make_deconv_mtx3:1,tor_make_deconv_mtx:1,tor_polar_plot:1,tor_script:1,tor_scriptsvoistatutilitynanmean:1,tor_spm_mean_ui:1,torlab:1,tort:[],tot:1,total:[1,2],totmat:1,tour:1,toward:[1,2],tpr:1,tr2sec:[],tr2tr:[],trace:1,track:[1,2],tractabl:1,trail:1,train:1,tran:1,transform:[1,2],transform_coordin:1,transit:1,translat:[1,2],transpar:1,transparency_chang:1,transparent_surfac:1,transpos:[],transse:1,transvalu:1,travers:1,treat:[1,2],treatment:1,tree:1,trend:1,tri:1,trial:1,trial_amp_img:1,trial_height:1,trialdat:1,trials_col:1,tridx:1,tril:1,trilinear:1,trim:[1,2],trim_mask:1,trimt:[1,2],trinar:1,tripl:1,triplet:1,troubl:1,trrv:1,trrvrv:1,true_class:1,true_p:1,true_weight:1,truep:1,truer:1,trueval:1,truncat:1,trust:1,try4:1,tscv:1,tscvexampl:1,tsq:1,tsquar:1,tsquaretest:1,tstat:1,tsu:1,tsufigur:1,ttest2:1,ttest2_printout:1,ttest3d:1,ttest:1,tthr:1,tthresh:1,ttopeakeq:1,ttst:1,ttype:1,tukei:1,tune:[1,2],turn:[1,2],tutori:[],tval:1,twice:[1,2],twidmap:1,two:[1,2],twochoic:1,twotail:1,txt1:1,txt2:1,txt3:1,txt:[1,2],txtlab:[1,2],typ:1,type:[1,2],typic:[1,2],ucl:1,ufp:1,ugiu:[],uhio:[],uib:[],uibiu:[],uibu:[],uibui:[],uibuibui:[],uicontrol:1,uimenu:1,uint8:1,um_face_hous:[1,2],unc:1,uncorrecetd:1,uncorrect:1,under:1,underlai:1,underlyl:1,underscor:1,undershoot:1,understand:[],unequ:1,unfilt:1,uni:1,uniformli:1,unimod:1,union:1,uniqu:[1,2],unique_id:[1,2],unique_mask_valu:1,unit:[1,2],univari:1,univers:1,unix:1,unknown:1,unless:[1,2],unlik:[1,2],unprocess:1,unrel:[1,2],unspecifi:1,unthreshold:1,until:1,unus:1,unweight:1,unweighted_study_data:1,uonseteq:1,updat:[1,2],upload:[1,2],upon:1,upper:1,upsampl:1,upsamplefactor:1,url:[],usabl:[1,2],usag:[],use_rob_stat:1,use_same_rang:1,use_spm_filt:1,useexist:1,useful:1,useparallel:1,user:[1,2],usfactor:1,usual:[1,2],util:1,uva:1,uvb:1,val:1,valdiat:1,valid:[1,2],validatori:1,valu:[1,2],valuestoevalu:1,var_prc:1,var_prctil:1,varargin:[1,2],varargout:1,vardecomp:1,varexp:1,vari:1,variabl:[1,2],variable_input:1,varianbl:1,varianc:[1,2],variant:1,variat:[1,2],variou:1,varnam:1,varname1:1,varname2:1,varz:1,varzm:1,vascular_group_sum:1,vascular_mask_:1,vasquez:1,vbeta:1,vcon:1,vec:1,vector:[1,2],vectorized_voldata:1,vectorlen:1,veloc:1,vent_thr:1,ventricl:[1,2],verbos:[1,2],verboven:1,verbstr:1,veri:[1,2],verid:1,verlag:1,versa:1,version:[1,2],versu:1,vert:1,vertcat:[],vertex:1,vertic:1,vertici:1,vetor:1,via:[1,2],vice:1,video:1,view:[1,2],viewabl:[1,2],viewer:[],vif:[1,2],vif_thresh:[1,2],vimg:1,vinc:1,violin:1,violinplot:1,virtu:[1,2],visibl:[1,2],visit:1,visual:1,visualis:1,visualization_funct:[],vmpfc:1,vmpfc_mask_neurosynth:1,voinfo:1,voistat:[],vol0:[1,2],vol:1,voldat3d:1,voldata:1,volinfo2:1,volinfo:1,volinfo_mapto:1,vols_ad:1,vols_run0001:1,vols_run0002:1,volum:[1,2],vout:1,vox:1,voxel2mask:1,voxel2mm:1,voxel:[1,2],voxel_data_seri:[],voxels2mask:1,voxelsize_mm:1,voxelwise_pthresh:[1,2],voxsiz:1,vresm:1,vspm:1,vtal:1,vto:1,w1map:1,w2map:1,w3map:1,w_time:1,wager:[1,2],wager_jneuro2011_placebo_mask:[],wagerlab:1,wai:[1,2],waitbar:1,wanat_fil:[1,2],wani:[],wani_pi:1,want:[1,2],warm:1,warn:[1,2],warp:[1,2],warranti:[],wasbad:1,wb_hewma_shel:1,wb_multisubject_correl_hr_correct:1,wb_multisubject_ewma:1,wc1:1,wc2:1,wcard:[1,2],web:1,websit:1,weight:[1,2],weight_obj:1,weight_opt:1,weighted_corrcoef:1,weighted_glmfit:1,weighted_reg:1,weighted_reg_old2:1,weighted_reg_oldglmfit_old:1,weights_nsf_grouppred_cvpcr:1,weights_nsf_grouppred_cvpcr_fdr05:1,weights_nsf_grouppred_cvpcr_fdr05_smoothed_fwhm05:1,weird:1,welcom:[],well:[1,2],wellcom:1,were:1,wh_cluster:1,wh_col:[1,2],wh_inmask:1,wh_keep1:1,wh_keep2:1,wh_keep:1,wh_level:1,wh_merg:1,wh_montag:1,wh_ob:1,wh_of_interest:1,wh_predictor:1,wh_slice:1,wh_subj:1,wh_surfac:1,wh_var:1,what:1,whatev:1,whcl:1,when:[0,1,2],whenev:1,where:[1,2],wherea:1,wherein:[1,2],wherev:[1,2],whether:[1,2],whfold:1,which:[1,2],which_cl:1,which_montag:1,whichc:1,whichcon:[1,2],whichcut:1,whichorth:1,whichslic:1,white:1,white_matt:1,whiten:1,whnum:1,who:1,whole:[1,2],whole_brain_ewma:1,whole_brain_filt:1,whole_brain_fir:1,whom:[],whose:1,whout:1,whpvals_for_boot:1,whsave:1,why:[1,2],wichern:1,wicon:1,wide:1,width:[1,2],wiki:1,wildcard:[1,2],wilei:1,william:1,winam:1,window:1,windowbuttonupfcn:1,windsor:1,windsorizevoxel:1,wise:[1,2],wish:1,within:[1,2],without:[1,2],wm_mask:1,wm_thr:1,won:[1,2],woo:[],word:[1,2],work:[1,2],worker:[],workspac:[1,2],world:1,worslei:1,worstcat:1,worth:1,would:[1,2],wouldn:1,wrapper:[1,2],write:[1,2],write_residu:1,write_text:1,writefil:1,writerscoreplu:1,written:1,wrong:1,wt1:[1,2],wtotalv:[1,2],wvol:1,www:1,wyzx:1,x1o:1,x_in_sec:1,x_resid:1,xaxi:1,xbar:1,xbf:1,xbf_hire:1,xbin:[1,2],xcon:1,xcoord:1,xcorr:1,xcorr_multisubject:1,xcorr_xy_multisubject:1,xcx:1,xdata:[1,2],xdim:1,xfontsiz:1,xhair:1,xhairson:1,xinm:1,xkx:1,xlabel:1,xlabelsl:1,xlevel:1,xlim:[1,2],xlsx:1,xmax:[1,2],xmin:1,xmm:1,xname:1,xposit:1,xred:1,xsde:1,xsdm:1,xsize:1,xspm:1,xtal:1,xtest:1,xtick:1,xticklabel:1,xtrain:1,xtxi:1,xval:1,xval_cross_classifi:1,xval_lasso_brain:1,xval_lasso_brain_permutation_histogram:1,xval_regression_multisubject:1,xvals2:1,xvarnam:1,xvec:1,xvi:1,xvol:1,xxx:1,xycatplot:1,xyplot:1,xytspanelplot:1,xyz1:1,xyz2:1,xyz2clust:1,xyz3:1,xyz:1,xyz_coord:1,xyz_coord_struct:1,xyz_mm_po:1,xyzlist:1,xyzmm:1,xyzmmcent:1,xyzmmspher:1,xyzpt:1,xyztyp:1,xyzvoxspher:1,xyzw:1,y1avg:1,y2avg:1,y_axi:1,y_g1:1,y_g2:1,y_i:1,y_name:1,y_pval:1,y_pvals_thresh:1,y_resid:1,y_star:1,y_total_pv:1,yadj:1,yaml:[1,2],yaml_tmp:[1,2],yamlfilemethod:[1,2],yamlfilenam:[1,2],yaxi:1,ybase:1,ybin:[1,2],ycoord:1,ycut_mm:1,ydata:[1,2],ydim:1,yellow:1,yeo:1,yesno:1,yess:1,yet:[1,2],yfit:1,yfla:1,yfontsiz:1,yhat:1,yhi:1,yield:1,ylabel:1,ylim:1,ymax:[1,2],ymd:1,ymean:1,ymin:1,yminortick:1,ymm:1,yname:1,yoffset:1,yoni:[],you:[1,2],your:[1,2],yourself:1,yout:1,yperc:1,ypop:1,ypred:1,yrgb:1,ysize:1,ytal:1,ytick:1,yticklabel:1,ytmp:1,ytrain:1,yval:1,yvals2:1,yvarnam:1,yvec:1,yyyy_mm_dd:1,yzx:1,z_i:1,zbuffer:1,zcoord:1,zcor:1,zdiff:1,zdim:1,zdt:1,zero:[1,2],zero_cross:1,zeroinsert:1,zhang:1,zil:1,zip:1,ziu:1,zmax:1,zmax_act:1,zmax_negact:1,zmin:1,zmin_act:1,zmin_negact:1,zmm:1,zname:1,zoom:1,zpop:1,zscore:1,zscoreimag:1,zscorevoxel:1,zsize:1,ztal:1},titles:["CanlabCore documentation home","Object Oriented Tools","Toolboxes"],titleterms:{"new":[],aspectlib:[],canlab_canonical_brain:[],canlab_dataset:1,canlabcor:0,cluster_contig_region_tool:1,configur:[],content:[],data_extract:1,data_processing_tool:1,diagnost:[1,2],document:0,filename_tool:1,fmri_data:1,fmri_mask_imag:1,fmri_model:1,fmri_timeseri:[],fmridisplai:1,fmridisplay_helper_funct:1,glm_batch_tool:[1,2],hewma_util:1,home:0,hrf_est_toolbox2:[1,2],image_computation_tool:1,image_space_tool:1,image_threshold:1,image_vector:1,index_image_manip_tool:1,indic:0,instal:[],manual:[],misc_util:1,miscellan:1,model_building_tool:1,object:1,optimizedesign11:[1,2],orient:1,parcellation_tool:1,peak_coordin:1,python:[],region:1,roi_drawing_tool:1,statistic_imag:1,statistics_tool:1,tabl:0,test:[],thi:[],titl:[],tool:1,toolbox:[1,2],usag:[],visualization_funct:1,wager_jneuro2011_placebo_mask:[],welcom:[]}}) \ No newline at end of file +Search.setIndex({envversion:46,filenames:["index","moduleslist","toolboxes"],objects:{"":{"@canlab_dataset":[1,0,1,""],"@fmri_data":[1,0,1,""],"@fmri_mask_image":[1,0,1,""],"@fmri_model":[1,0,1,""],"@fmridisplay":[1,0,1,""],"@image_vector":[1,0,1,""],"@region":[1,0,1,""],"@statistic_image":[1,0,1,""],Cluster_contig_region_tools:[1,0,1,""],Data_extraction:[1,0,1,""],Data_processing_tools:[1,0,1,""],Filename_tools:[1,0,1,""],GLM_Batch_tools:[2,0,1,""],HRF_Est_Toolbox2:[2,0,1,""],Image_computation_tools:[1,0,1,""],Image_space_tools:[1,0,1,""],Image_thresholding:[1,0,1,""],Index_image_manip_tools:[1,0,1,""],Misc_utilities:[1,0,1,""],Model_building_tools:[1,0,1,""],OptimizeDesign11:[2,0,1,""],Parcellation_tools:[1,0,1,""],ROI_drawing_tools:[1,0,1,""],Statistics_tools:[1,0,1,""],Visualization_functions:[1,0,1,""],diagnostics:[2,0,1,""],fmridisplay_helper_functions:[1,0,1,""],hewma_utility:[1,0,1,""],peak_coordinates:[1,0,1,""]},"@canlab_dataset":{bars:[1,1,1,""],concatenate:[1,1,1,""],get_var:[1,1,1,""],glm:[1,1,1,""],glm_multilevel:[1,1,1,""],histogram:[1,1,1,""],mediation:[1,1,1,""],plot_var:[1,1,1,""],print_summary:[1,1,1,""],read_from_excel:[1,1,1,""],scattermatrix:[1,1,1,""],scatterplot:[1,1,1,""],spm2canlab_dataset:[1,1,1,""],ttest2:[1,1,1,""],write_text:[1,1,1,""]},"@fmri_data":{canlab_connectivity_preproc:[1,1,1,""],create:[1,1,1,""],extract_roi_averages:[1,1,1,""],horzcat:[1,1,1,""],hrf_fit:[1,1,1,""],plot:[1,1,1,""],predict:[1,1,1,""],predict_test_suite:[1,1,1,""],regress:[1,1,1,""],rescale:[1,1,1,""],saveplots:[1,1,1,""],signtest:[1,1,1,""],ttest:[1,1,1,""],windsorize:[1,1,1,""]},"@fmri_mask_image":{resample_to_image_space:[1,1,1,""]},"@fmri_model":{build:[1,1,1,""],build_single_trial:[1,1,1,""],get_condition_assignments:[1,1,1,""],get_session_X:[1,1,1,""],plot:[1,1,1,""],replace_basis_set:[1,1,1,""],robustfit:[1,1,1,""],rotate_to_pca:[1,1,1,""],single_trial_estimates:[1,1,1,""]},"@fmridisplay":{addblobs:[1,1,1,""],addpoints:[1,1,1,""],addthreshblobs:[1,1,1,""],legend:[1,1,1,""],montage:[1,1,1,""],surface:[1,1,1,""],transparency_change:[1,1,1,""]},"@image_vector":{apply_mask:[1,1,1,""],check_image_filenames:[1,1,1,""],compare_space:[1,1,1,""],extract_gray_white_csf:[1,1,1,""],extract_roi_averages:[1,1,1,""],fastmontage:[1,1,1,""],flip:[1,1,1,""],get_wh_image:[1,1,1,""],histogram:[1,1,1,""],history:[1,1,1,""],horzcat:[1,1,1,""],ica:[1,1,1,""],image_math:[1,1,1,""],image_similarity_plot:[1,1,1,""],image_similarity_plot_bucknermaps:[1,1,1,""],interpolate:[1,1,1,""],mean:[1,1,1,""],minus:[1,1,1,""],montage:[1,1,1,""],orthviews:[1,1,1,""],plot_current_orthviews_coord:[1,1,1,""],plus:[1,1,1,""],power:[1,1,1,""],preprocess:[1,1,1,""],read_from_file:[1,1,1,""],rebuild_volinfo_from_dat:[1,1,1,""],reconstruct_image:[1,1,1,""],remove_empty:[1,1,1,""],reparse_contiguous:[1,1,1,""],replace_empty:[1,1,1,""],resample_space:[1,1,1,""],resample_time:[1,1,1,""],sagg_slice_movie:[1,1,1,""],searchlight:[1,1,1,""],slices:[1,1,1,""],surface:[1,1,1,""],threshold:[1,1,1,""],trim_mask:[1,1,1,""],union:[1,1,1,""],write:[1,1,1,""]},"@region":{check_extracted_data:[1,1,1,""],extract_data:[1,1,1,""],merge:[1,1,1,""],posneg_separate:[1,1,1,""],region2imagevec2tmp:[1,1,1,""],region2imagevec:[1,1,1,""],region2struct:[1,1,1,""],reparse_continguous:[1,1,1,""],subdivide_by_atlas:[1,1,1,""],subdivide_by_local_max:[1,1,1,""],surface:[1,1,1,""],table:[1,1,1,""]},"@statistic_image":{conjunction:[1,1,1,""],convert2mask:[1,1,1,""],multi_threshold:[1,1,1,""],orthviews:[1,1,1,""],reparse_contiguous:[1,1,1,""],select_one_image:[1,1,1,""],threshold:[1,1,1,""]},Cluster_contig_region_tools:{anat_subclusters:[1,1,1,""],cluster2region:[1,1,1,""],cluster2subclusters:[1,1,1,""],cluster_close_enough:[1,1,1,""],cluster_export_pngs:[1,1,1,""],cluster_find_index:[1,1,1,""],cluster_interp:[1,1,1,""],cluster_intersection:[1,1,1,""],cluster_local_maxima:[1,1,1,""],cluster_set_intersection:[1,1,1,""],cluster_table:[1,1,1,""],cluster_table_successive_threshold:[1,1,1,""],clusters2CLU:[1,1,1,""],clusters2mask:[1,1,1,""],image2clusters:[1,1,1,""],mask2clusters:[1,1,1,""],mask2struct:[1,1,1,""],merge_clusters:[1,1,1,""],merge_nearby_clusters:[1,1,1,""],subclusters_from_local_max:[1,1,1,""],xyz2clusters:[1,1,1,""]},Data_extraction:{canlab_maskstats:[1,1,1,""],cluster_tmask:[1,1,1,""],extract_contrast_data:[1,1,1,""],extract_from_rois:[1,1,1,""],extract_image_data:[1,1,1,""],extract_indiv_peak_data:[1,1,1,""],read_hdr:[1,1,1,""],readim2:[1,1,1,""],timeseries_extract_slice:[1,1,1,""],tor_extract_rois:[1,1,1,""]},Data_processing_tools:{center_of_mass:[1,1,1,""],detransition:[1,1,1,""],downsample_scnlab:[1,1,1,""],fft_plot_scnlab:[1,1,1,""],filterAdjust:[1,1,1,""],fir2htw2:[1,1,1,""],get_snr:[1,1,1,""],htw_from_fit:[1,1,1,""],luisFilter:[1,1,1,""],nuisance_cov_estimates:[1,1,1,""],resample_scnlab:[1,1,1,""],scale:[1,1,1,""],scnlab_filter_fmri_data:[1,1,1,""],scnlab_outlier_id:[1,1,1,""],selective_average:[1,1,1,""],selective_average_group:[1,1,1,""],smooth_timeseries:[1,1,1,""],splineDetrend:[1,1,1,""],splinetrim:[1,1,1,""],trimts:[1,1,1,""],use_spm_filter:[1,1,1,""]},Filename_tools:{check_valid_imagename:[1,1,1,""],copy_image_files:[1,1,1,""],delete_ana_imgs:[1,1,1,""],dicom_tarzip:[1,1,1,""],escapeForShell:[1,1,1,""],expand_4d_filenames:[1,1,1,""],filename_get_new_root_dir:[1,1,1,""],getfullpath:[1,1,1,""],nums_from_text:[1,1,1,""],read_excel:[1,1,1,""],remove_disdaq_vols:[1,1,1,""],rename_lowercase:[1,1,1,""],rename_uppercase:[1,1,1,""],scan_get_files:[1,1,1,""],sort_image_filenames:[1,1,1,""]},GLM_Batch_tools:{canlab_glm_getinfo:[2,1,1,""],canlab_glm_group_levels:[2,1,1,""],canlab_glm_group_levels_run1input:[2,1,1,""],canlab_glm_maskstats:[2,1,1,""],canlab_glm_publish:[2,1,1,""],canlab_glm_roistats:[2,1,1,""],canlab_glm_subject_levels:[2,1,1,""],canlab_glm_subject_levels_run1subject:[2,1,1,""]},HRF_Est_Toolbox2:{Anneal_Logit:[2,1,1,""],Det_Logit:[2,1,1,""],Fit_Canonical_HRF:[2,1,1,""],Fit_Logit2:[2,1,1,""],Fit_sFIR:[2,1,1,""],Get_Logit:[2,1,1,""],HMHRFest:[2,1,1,""],PowerLoss:[2,1,1,""],ResidScan:[2,1,1,""],get_parameters2:[2,1,1,""],hrf_fit_one_voxel:[2,1,1,""],ilogit:[2,1,1,""]},Image_computation_tools:{apply_derivative_boost:[1,1,1,""],canlab_create_wm_ventricle_masks:[1,1,1,""],fisherp:[1,1,1,""],get_mask_vol:[1,1,1,""],image_eval_function:[1,1,1,""],image_eval_function_multisubj:[1,1,1,""],image_histogram1d:[1,1,1,""],mask_create_from_image_set:[1,1,1,""],mask_create_results_mask:[1,1,1,""],mask_fisher:[1,1,1,""],mask_image:[1,1,1,""],mask_intersection2:[1,1,1,""],mask_intersection:[1,1,1,""],mask_stouffer:[1,1,1,""],mask_union:[1,1,1,""],percent_sig_image:[1,1,1,""],reslice_imgs:[1,1,1,""],reverse_mask:[1,1,1,""],scn_write_plane:[1,1,1,""],tor_spm_mean_ui:[1,1,1,""]},Image_space_tools:{check_spm_mat:[1,1,1,""],check_spm_matfiles:[1,1,1,""],img2voxel:[1,1,1,""],mask2voxel:[1,1,1,""],mni2tal:[1,1,1,""],scn_map_image:[1,1,1,""],scn_resample_voxel_size:[1,1,1,""],tal2mni:[1,1,1,""],tal2vox:[1,1,1,""],transform_coordinates:[1,1,1,""],voxel2mask:[1,1,1,""],voxel2mm:[1,1,1,""]},Image_thresholding:{FDR:[1,1,1,""],cl_ext_3dClustSim:[1,1,1,""],cl_ext_make_resid:[1,1,1,""],cl_ext_spm_grf:[1,1,1,""],cl_ext_spm_spm:[1,1,1,""],clusterSizeMask:[1,1,1,""],threshold_imgs:[1,1,1,""]},Index_image_manip_tools:{flip_endianness:[1,1,1,""],iimg_check_volinfo:[1,1,1,""],iimg_cluster_extent:[1,1,1,""],iimg_cluster_index:[1,1,1,""],iimg_cluster_intersect:[1,1,1,""],iimg_cluster_prune:[1,1,1,""],iimg_clusters2indx:[1,1,1,""],iimg_indx2contiguousxyz:[1,1,1,""],iimg_intersection:[1,1,1,""],iimg_make_sure_indx:[1,1,1,""],iimg_mask:[1,1,1,""],iimg_multi_threshold:[1,1,1,""],iimg_princomp:[1,1,1,""],iimg_princomp_display:[1,1,1,""],iimg_read_img:[1,1,1,""],iimg_read_vols:[1,1,1,""],iimg_reconstruct_3dvol:[1,1,1,""],iimg_reconstruct_vols:[1,1,1,""],iimg_reslice:[1,1,1,""],iimg_smooth_3d:[1,1,1,""],iimg_sphere_timeseries:[1,1,1,""],iimg_stouffer:[1,1,1,""],iimg_threshold:[1,1,1,""],iimg_weighted_ttest:[1,1,1,""],iimg_write_images:[1,1,1,""],iimg_xyz2indx:[1,1,1,""],iimg_xyz2spheres:[1,1,1,""]},Misc_utilities:{CERTreader:[1,1,1,""],append:[1,1,1,""],blank_struct:[1,1,1,""],checkMatlabVersion:[1,1,1,""],circle:[1,1,1,""],combine_structs:[1,1,1,""],condf2indic:[1,1,1,""],depfun_aggregate:[1,1,1,""],distance:[1,1,1,""],distance_euclid:[1,1,1,""],erase_and_display:[1,1,1,""],erase_string:[1,1,1,""],explode:[1,1,1,""],fast_conv_fft:[1,1,1,""],getRandom:[1,1,1,""],get_first_help_lines:[1,1,1,""],implode:[1,1,1,""],naninsert:[1,1,1,""],nanremove:[1,1,1,""],oneinsert:[1,1,1,""],orthviews_multiple_objs:[1,1,1,""],pad:[1,1,1,""],padwithnan:[1,1,1,""],parse_char_to_cell:[1,1,1,""],parse_edat_txt:[1,1,1,""],print_matrix:[1,1,1,""],progressbar:[1,1,1,""],read_edat_output_2008:[1,1,1,""],robustcsvread:[1,1,1,""],scn_get_datetime:[1,1,1,""],scn_mat_conform:[1,1,1,""],search_struct_fields:[1,1,1,""],strip_path_dirs:[1,1,1,""],strip_svn_dirs:[1,1,1,""],strrep_recurse:[1,1,1,""],struct_strrep:[1,1,1,""],tor_ga:[1,1,1,""],zeroinsert:[1,1,1,""]},Model_building_tools:{fmri_spline_basis:[1,1,1,""],getPredictors:[1,1,1,""],ideal_deconv6:[1,1,1,""],intercept_model:[1,1,1,""],modifiedconv:[1,1,1,""],onsets2delta:[1,1,1,""],onsets2dx:[1,1,1,""],onsets2fmridesign:[1,1,1,""],onsets2parametric_mod_X:[1,1,1,""],plot_ideal_deconv5:[1,1,1,""],spm_mat2batchinput:[1,1,1,""],tor_make_deconv_mtx3:[1,1,1,""]},OptimizeDesign11:{optimizeGA:[2,1,1,""],optimizeGA_epochs:[2,1,1,""],optimize_rand_search:[2,1,1,""]},Parcellation_tools:{cluster_princomp:[1,1,1,""],inconsistent:[1,1,1,""],mask_princomp:[1,1,1,""],parcel_cl_nmds:[1,1,1,""],parcel_cl_nmds_plots:[1,1,1,""],parcel_clusters:[1,1,1,""],parcel_complete_sets:[1,1,1,""],parcel_images:[1,1,1,""]},ROI_drawing_tools:{add2mask:[1,1,1,""],clusters2roimask:[1,1,1,""],draw_anatomical_roi_2008:[1,1,1,""],sphere_mask:[1,1,1,""]},Statistics_tools:{Bspline:[1,1,1,""],ContinuousAccuracy:[1,1,1,""],F_test_full_vs_red:[1,1,1,""],F_test_no_intercept:[1,1,1,""],ICC:[1,1,1,""],ancova:[1,1,1,""],barplot_get_within_ste:[1,1,1,""],bayes_get_probabilities:[1,1,1,""],bayes_get_probabilities_2010:[1,1,1,""],bayes_meta_feature_abstract:[1,1,1,""],binotest:[1,1,1,""],binotest_dependent:[1,1,1,""],cancor:[1,1,1,""],canlab_connectivity_predict:[1,1,1,""],classify_bayes:[1,1,1,""],classify_choose_most_likely:[1,1,1,""],classify_naive_bayes:[1,1,1,""],classify_naive_bayes_2010:[1,1,1,""],classify_naive_bayes_objfun:[1,1,1,""],classify_viz_regions:[1,1,1,""],contrast_code:[1,1,1,""],correl_compare_dep:[1,1,1,""],correl_compare_dep_permtest:[1,1,1,""],correl_compare_dep_search:[1,1,1,""],correl_compare_indep:[1,1,1,""],correl_compare_indep_inputr:[1,1,1,""],correl_compare_permute:[1,1,1,""],correlation:[1,1,1,""],correlation_fast_series:[1,1,1,""],create_orthogonal_contrast_set:[1,1,1,""],dice_coeff_image:[1,1,1,""],doquality:[1,1,1,""],fisherz:[1,1,1,""],fit_gls:[1,1,1,""],fit_gls_brain:[1,1,1,""],getmeanquality:[1,1,1,""],glmfit_general:[1,1,1,""],glmfit_multilevel:[1,1,1,""],glmfit_multilevel_varexplained:[1,1,1,""],intercept:[1,1,1,""],loess_multilevel:[1,1,1,""],matrix_direct_effects:[1,1,1,""],matrix_direct_effects_ridge:[1,1,1,""],matrix_eval_function:[1,1,1,""],monotonic_regression:[1,1,1,""],moving_average:[1,1,1,""],noise_arp:[1,1,1,""],nonlin_fit:[1,1,1,""],nonlin_param_mod_brain:[1,1,1,""],nonlin_param_modulator:[1,1,1,""],nonlin_parammod_predfun:[1,1,1,""],pairwise_diffs:[1,1,1,""],partition_variables_indevel:[1,1,1,""],permute_setupperms:[1,1,1,""],permute_signtest:[1,1,1,""],plssquash:[1,1,1,""],princomp_largedata:[1,1,1,""],prplot_multilevel:[1,1,1,""],r2z:[1,1,1,""],regress_best_subsets_ga:[1,1,1,""],repeated_ancova:[1,1,1,""],rmanova2:[1,1,1,""],robust_reg_pooled:[1,1,1,""],roc_boot:[1,1,1,""],roc_calc:[1,1,1,""],roc_plot:[1,1,1,""],rsquare_calc:[1,1,1,""],rsquare_multiple_regions_multilevel:[1,1,1,""],scn_stats_helper_functions:[1,1,1,""],sdt_A:[1,1,1,""],searchlight_applymask:[1,1,1,""],searchlight_applymask_collate:[1,1,1,""],searchlight_correlation:[1,1,1,""],searchlight_disti:[1,1,1,""],searchlight_dream:[1,1,1,""],searchlight_saveresults:[1,1,1,""],shift_correl:[1,1,1,""],shift_signal:[1,1,1,""],signtest_matrix:[1,1,1,""],ste:[1,1,1,""],stepwise_tor:[1,1,1,""],stouffer:[1,1,1,""],subset_indicator_matrix:[1,1,1,""],t_test2:[1,1,1,""],testclustnew:[1,1,1,""],time_varying_estimate:[1,1,1,""],tscv:[1,1,1,""],tsquaretest:[1,1,1,""],ttest2_printout:[1,1,1,""],ttest3d:[1,1,1,""],var_prctile:[1,1,1,""],weighted_glmfit:[1,1,1,""],xcorr_multisubject:[1,1,1,""],xcorr_xy_multisubject:[1,1,1,""]},Visualization_functions:{addbrain:[1,1,1,""],addbrainleft:[1,1,1,""],addbrainright:[1,1,1,""],applycolormap:[1,1,1,""],arrow:[1,1,1,""],bar_wani:[1,1,1,""],barplot_colored:[1,1,1,""],barplot_columns2:[1,1,1,""],barplot_columns3:[1,1,1,""],barplot_columns:[1,1,1,""],barplot_grouped:[1,1,1,""],barplotter:[1,1,1,""],canlab_force_directed_graph:[1,1,1,""],canlab_results_fmridisplay:[1,1,1,""],cl_line_plots:[1,1,1,""],cl_overlap:[1,1,1,""],close_non_spm_graphics_figures:[1,1,1,""],cluster_barplot:[1,1,1,""],cluster_cutaways:[1,1,1,""],cluster_image_shape:[1,1,1,""],cluster_image_sphere:[1,1,1,""],cluster_orthviews:[1,1,1,""],cluster_orthviews_classes:[1,1,1,""],cluster_orthviews_montage:[1,1,1,""],cluster_orthviews_overlap2:[1,1,1,""],cluster_orthviews_overlap:[1,1,1,""],cluster_orthviews_overlap_3colors:[1,1,1,""],cluster_orthviews_showcenters:[1,1,1,""],cluster_surf:[1,1,1,""],cluster_surf_batch2:[1,1,1,""],cluster_surf_batch:[1,1,1,""],colormap_tor:[1,1,1,""],compare_filtered_t:[1,1,1,""],compare_slice:[1,1,1,""],conf_region:[1,1,1,""],create_figure:[1,1,1,""],errorbar_horizontal:[1,1,1,""],errorbar_width:[1,1,1,""],fill_area_around_points:[1,1,1,""],getVertexColors:[1,1,1,""],get_cluster_volume:[1,1,1,""],glassbrain_avi:[1,1,1,""],imageCluster:[1,1,1,""],imageCluster_block:[1,1,1,""],image_histogram:[1,1,1,""],line_plot_multisubject:[1,1,1,""],lineplot_columns:[1,1,1,""],make3Davi:[1,1,1,""],make3Davi_uncompressed:[1,1,1,""],make_figure_into_orthviews:[1,1,1,""],makelegend:[1,1,1,""],map_data_to_colormap:[1,1,1,""],mask2surface:[1,1,1,""],mdsfig:[1,1,1,""],mdsfig_3d:[1,1,1,""],mea_visualise:[1,1,1,""],montage_clusters:[1,1,1,""],montage_clusters_maxslice:[1,1,1,""],montage_clusters_medial:[1,1,1,""],montage_clusters_points:[1,1,1,""],montage_clusters_text2:[1,1,1,""],montage_clusters_text:[1,1,1,""],montage_image_Worsley:[1,1,1,""],movie_of_slice_timeseries:[1,1,1,""],movie_stillframes:[1,1,1,""],multi_threshold:[1,1,1,""],mvroi_mdsfig_plot2:[1,1,1,""],mvroi_mdsfig_plot_sepstates:[1,1,1,""],mvroi_mdsfig_plugin2:[1,1,1,""],mvroi_plot_firs:[1,1,1,""],nmdsfig1D:[1,1,1,""],nmdsfig:[1,1,1,""],nmdsfig_fill:[1,1,1,""],nmdsfig_legend:[1,1,1,""],plot3d:[1,1,1,""],plotDesign:[1,1,1,""],plot_correlation:[1,1,1,""],plot_correlation_samefig:[1,1,1,""],plot_dx_hrfs:[1,1,1,""],plot_ellipse:[1,1,1,""],plot_error:[1,1,1,""],plot_horizontal_line:[1,1,1,""],plot_hrf_model_fit:[1,1,1,""],plot_joint_hist_contour:[1,1,1,""],plot_matrix_cols:[1,1,1,""],plot_vertical_line:[1,1,1,""],prplot:[1,1,1,""],renderCluster_ui4:[1,1,1,""],renderCluster_ui:[1,1,1,""],roi_contour_map:[1,1,1,""],scn_export_papersetup:[1,1,1,""],scn_standard_colors:[1,1,1,""],selective_average_interactive_view_init:[1,1,1,""],sepplot:[1,1,1,""],shepardplot:[1,1,1,""],sphere_roi_tool:[1,1,1,""],spm_orthviews_change_colormap:[1,1,1,""],spm_orthviews_hotcool_colormap:[1,1,1,""],spm_orthviews_name_axis:[1,1,1,""],spm_orthviews_showposition:[1,1,1,""],spm_orthviews_white_background:[1,1,1,""],spm_ov_black2white:[1,1,1,""],standardMRIlighting:[1,1,1,""],surf_plot_tor:[1,1,1,""],surface_cutaway:[1,1,1,""],talairach_clusters:[1,1,1,""],timeseries_prplot:[1,1,1,""],tor_3d:[1,1,1,""],tor_fill_steplot:[1,1,1,""],tor_ihb_GetClusterSet:[1,1,1,""],tor_ihb_GetClusters:[1,1,1,""],tor_ihb_TalSpace:[1,1,1,""],tor_ihb_UpdateClusterTalVoxSize:[1,1,1,""],tor_polar_plot:[1,1,1,""],violinplot:[1,1,1,""],wani_pie:[1,1,1,""],xval_lasso_brain_permutation_histogram:[1,1,1,""]},diagnostics:{BiasPowerloss:[2,1,1,""],ResidScan:[2,1,1,""],add_nuisance_to_SPMcfg:[2,1,1,""],batch_efficiency:[2,1,1,""],batch_t_histograms:[2,1,1,""],canlab_qc_metrics1:[2,1,1,""],check_cluster_data:[2,1,1,""],compare_subjects256:[2,1,1,""],compare_subjects:[2,1,1,""],displayme:[2,1,1,""],ellipse:[2,1,1,""],fft_calc:[2,1,1,""],fmri_mask_thresh_canlab:[2,1,1,""],get_filename2:[2,1,1,""],get_filename:[2,1,1,""],hist2:[2,1,1,""],image_intensity_histograms:[2,1,1,""],img_hist2:[2,1,1,""],img_hist:[2,1,1,""],joint_hist:[2,1,1,""],make_conv_mtx:[2,1,1,""],multivar_dist:[2,1,1,""],orthogonalize:[2,1,1,""],power_from_variance:[2,1,1,""],power_loss:[2,1,1,""],publish_scn_session_spike_id:[2,1,1,""],qchist:[2,1,1,""],reset_SPMcfg:[2,1,1,""],scale_imgs_by_csf:[2,1,1,""],scn_component_rsquare:[2,1,1,""],scn_session_spike_id:[2,1,1,""],scn_spm_choose_hpfilter:[2,1,1,""],scn_spm_design_check:[2,1,1,""],scn_spm_get_events_of_interest:[2,1,1,""],scnlab_norm_check3:[2,1,1,""],scnlab_norm_check:[2,1,1,""],scnlab_pca_check1:[2,1,1,""],spm_general_hist:[2,1,1,""],spm_rfx_hist:[2,1,1,""],struct2yaml:[2,1,1,""],tor_get_physio:[2,1,1,""]},fmridisplay_helper_functions:{clusters2mask2011:[1,1,1,""],define_sampling_space:[1,1,1,""],display_slice:[1,1,1,""],map_to_world_space:[1,1,1,""],render_blobs:[1,1,1,""],resample_space:[1,1,1,""]},hewma_utility:{Gaussian_mix:[1,1,1,""],change_point:[1,1,1,""],cluster_kmeans_parcel:[1,1,1,""],cnt_runs:[1,1,1,""],ewma5:[1,1,1,""],get_ax_slice:[1,1,1,""],get_max_t:[1,1,1,""],hewma2:[1,1,1,""],hewma2_plot:[1,1,1,""],hewma_extract_voxel:[1,1,1,""],hewma_from_raw_timeseries:[1,1,1,""],hewma_gui:[1,1,1,""],hewma_plot_bivariate:[1,1,1,""],hewma_plot_coord_btnupfcn:[1,1,1,""],hewma_plot_cpmap:[1,1,1,""],hewma_plot_runlen:[1,1,1,""],hewma_save_timeseries:[1,1,1,""],linear_detrending:[1,1,1,""],timeseries_btwngroups_plot:[1,1,1,""],timeseries_mc_pvalue:[1,1,1,""],wb_hewma_shell:[1,1,1,""],weighted_reg:[1,1,1,""],weighted_reg_old2:[1,1,1,""],weighted_reg_oldglmfit_old:[1,1,1,""],whole_brain_ewma:[1,1,1,""],zero_crossing:[1,1,1,""]},peak_coordinates:{cluster_manova:[1,1,1,""],extract_ind_peak:[1,1,1,""],image2coordinates:[1,1,1,""],spatial_contrast:[1,1,1,""]}},objnames:{"0":["mat","module","MATLAB module"],"1":["mat","function","MATLAB function"]},objtypes:{"0":"mat:module","1":"mat:function"},terms:{"020515sp":[1,2],"020726ag":[1,2],"020827mk":[1,2],"020829jh":[1,2],"020903lb":[1,2],"02d":[1,2],"03d":1,"05_k10_neg":1,"05_k5_po":1,"060518mw":[1,2],"10th":1,"1iconw":[1,2],"1st":1,"1x1":1,"1x105":1,"1x2":1,"1x30":1,"1xm":1,"2007a":1,"2012a":1,"2014a":1,"2nd":[1,2],"2subject":[1,2],"2x30":1,"3dclustsim":1,"3dclustsim_dir":1,"3dfwhmx":1,"3dheadutil":1,"3rd":1,"4th":1,"4x4":1,"50x1000":1,"50x10000":1,"5th":1,"6_intel_64":1,"8bit":1,"91x109x91":1,"95ci":1,"_01aug2014":1,"_10k":1,"_column":1,"_dat":1,"_level":[1,2],"_p_":1,"_seg1":[1,2],"_seg3":[1,2],"_tmap_0002":1,"abstract":1,"boolean":1,"break":1,"byte":1,"case":[1,2],"catch":1,"char":[1,2],"class":1,"const":1,"default":[1,2],"export":1,"final":1,"float":1,"function":[0,1,2],"import":1,"int":1,"long":[1,2],"new":[],"null":1,"public":[],"return":[1,2],"super":[],"switch":1,"true":[1,2],"try":1,"var":[1,2],"while":1,aa_:1,aall:[1,2],ab_c:1,abbrev:1,abbrevi:1,abc:1,abil:1,abin:1,abl:1,about:1,abov:[1,2],abrupt:1,absent:1,absolut:[1,2],acc:1,acc_roi_mask:1,acc_x_dist:1,accept:1,access:1,accompani:1,accord:1,accordingli:1,account:[1,2],accumben:1,accur:1,accuraci:1,acl:1,acquisit:[1,2],across:[1,2],act:1,actcolor2:1,actcolor3:1,actcolor:1,action:1,activ:[1,2],activation_cutoff:1,activation_fwe_al:1,activation_map:1,activation_proport:1,activationdata:1,active_plus_corr_scatterplot_plugin:1,actual:[1,2],adapt:1,add2mask:1,add2movi:1,add:[1,2],add_nuisance_to_spmcfg:[1,2],addblob:1,addbrain:1,addbrainleft:1,addbrainright:1,addcolouredblob:1,addcon:[1,2],addintercept:[],addit:[1,2],additional_info:1,additional_input:1,additional_nuis:1,addmontag:1,addpoint:1,address:[1,2],addtext:1,addthreshblob:1,addvari:[],adequ:1,adjac:1,adjust:[1,2],adjusti:[],adjustmatrix:1,adress:1,advanc:1,advantag:1,affect:1,affin:1,afni:1,after:[1,2],afterward:1,again:1,against:[1,2],agglom:1,aggreg:1,agre:1,aic:1,akin:1,alarm:1,alfja:[],algo:1,algorithm:[1,2],algorithm_nam:1,all4_union_bg_surf:1,all:[1,2],all_chi2_imag:1,all_data:1,all_surf_handl:1,all_surf_handles2:1,allcverr:1,alld:1,allinfo:1,allinput:[1,2],allmodel:[1,2],allow:[1,2],allownan:1,allw:1,allyhat:1,alon:[0,1,2],along:[1,2],alph:1,alpha:[1,2],alphanumer:1,alphasim:1,alreadi:[1,2],also:[0,1,2],alt:1,altern:[1,2],altho:[1,2],alwai:1,ambar_carvalho:1,ambient:1,ambigu:1,american:1,ami:1,among:[1,2],amount:1,amp:1,amplitud:[1,2],amygdala:1,an_metafwe_rad10:1,analys:[1,2],analysi:[1,2],analysis_dir:[1,2],analysisnam:1,analyz:[1,2],analyze_cluster_roi:1,anat:1,anat_lbpa_th:1,anat_subclust:1,anatmeannam:1,anatom:[1,2],anatomc:[1,2],anatomi:[1,2],anatomynscalped_ft1:[],anatp:1,ancova:1,andreas_nguyen:1,anew:1,angela_val:1,angl:1,ani:[0,1,2],anjali:[],anneal:[1,2],anneal_logit:[1,2],annot:1,anonym:1,anoth:[1,2],anova:1,answer:1,ant:1,anterior:1,antialias:1,antic:1,anticip:1,anxieti:1,anybad:1,anyth:[1,2],anywai:1,anywher:[],aout:1,apart:1,appar:1,appear:1,append:[1,2],appli:[1,2],applic:1,apply_clust:1,apply_derivative_boost:1,apply_mask:1,apply_np:1,applycolormap:1,apprais:1,approach:[1,2],appropri:[1,2],approv:1,approxim:[1,2],april:[],aproach:[1,2],arbitrari:1,archiv:[],area:1,aren:[1,2],arg:1,argument:[1,2],aris:[],arma:1,armi:1,arord:1,around:[1,2],arrai:[1,2],arrang:1,arrow:1,arrowhead:1,artifact:[1,2],asc:[1,2],ascend:[1,2],ascii:1,ashar:[],ask:1,aslfd:[],aspect:1,aspectlib:[],assess:1,assign:1,associ:1,assum:[1,2],assumpt:[1,2],ast:1,ast_adj_x:1,ast_adj_y_neg:1,ast_adj_y_po:1,asterisk:1,asymmetr:1,asymmetri:[1,2],asymptot:1,atan:1,atla:1,atlas:1,atlas_labels_combin:1,atleast:1,atleastn:1,att:1,attach:1,attempt:1,atti:1,attribut:[1,2],auc:1,auc_by_modul:1,auc_mean_tri:1,auditori:[1,2],auditory_oddbal:[1,2],aug:1,augment:1,august:1,author:1,auto:1,autocorrel:1,automat:[1,2],automodul:[],autoregress:1,aux_fil:1,avail:1,averag:[1,2],average_ov:1,average_resp:1,avg152t1:[1,2],avg:[1,2],avgd:1,avgstat:1,avgvs3:1,avi:1,avoid:[1,2],awai:1,awri:1,axh:1,axi:[1,2],axial:1,axis_handl:1,axishandl:1,axisnum:1,axtyp:1,azimuth:1,azoffset:1,b2_e2:1,b_star:1,b_subset:1,back:[1,2],background:[1,2],backspac:1,backup:1,backward:1,bad:[1,2],badvox:1,balanc:1,balanced_ridg:[],bandpass:1,bandwidth:1,bar:[1,2],bar_edgecol:1,bar_edgewidth:1,bar_handl:1,bar_wani:1,bar_width:1,bare:[],bargraph:1,barhandl:1,barplot:1,barplot_color:1,barplot_column:1,barplot_columns2:1,barplot_columns3:1,barplot_get_within_st:1,barplot_group:1,barplott:1,barttest:1,barwidth:1,basal:1,base:[1,2],base_timept:1,baseangl:1,basecolor:1,basedir:1,baseimg:1,baselin:1,basenam:1,baseperiod:1,basept:1,basi:[1,2],basic:[1,2],basisset:1,batch:[1,2],batch_effici:[1,2],batch_t_histogram:[1,2],bay:1,bayes_get_prob:1,bayes_get_probabilities_2010:1,bayes_meta_feature_abstract:1,bayes_model:1,bayes_model_region:1,bcov:1,bear:[1,2],becaus:[1,2],becom:1,been:[1,2],beff:1,befor:[1,2],begin:1,beh1:1,behav:[],behavior:1,behdat:1,behind:1,belong:1,below:1,benefici:[],benefit:1,benjamini:1,bernoulli:1,besid:1,best:[1,2],best_log:1,best_param:1,bestc:1,bestcoord:1,bestcorr:1,bestg:1,bestk:1,bestmyclass:1,bestnam:1,bestpval:1,bestshift:1,bestx:1,beta1_event1:1,beta1_event2:1,beta2_event1:1,beta:[1,2],beta_0001:[1,2],beta_0010:[1,2],beta_:1,beta_nam:1,betaorcontrast:1,better:[1,2],between:[1,2],beyond:1,bfr:1,bgcolor:1,bgl:1,bia:[1,2],bias:1,biasmean:1,biaspowerloss:[1,2],big:[1,2],bilat:1,bilater:1,bimod:1,bin:[1,2],binar:1,binari:[1,2],binary_outcom:1,binomi:1,binotest:1,binotest_depend:1,bint:1,biomark:1,biplot:1,bisempti:1,biseri:1,bit:1,biubiub:[],biubuib:[],bival:1,bivari:1,black2whit:1,black:1,blalock:1,blank:1,blank_struct:1,blank_val:1,blkdiag:[1,2],blob:1,blobhan:1,block:[1,2],blue:[1,2],blueon:[],bmrk3:1,bnew:1,bold:1,bonf:1,bonferroni:1,book:1,bool:1,boost:1,bootstrap:1,boot1:1,boot:1,bootsampl:1,bootsrap:[],bootstrap:1,bootstrp:[],bootweight:1,borderscal:1,both:[1,2],bottom:1,bound:1,boundari:1,bout:1,box:1,boxcar:1,boxplot:1,bpf:1,brad_wilson:1,brain:[1,2],brain_avg152t1:[1,2],brain_render_t1:1,brainbottom:1,brainmask:[1,2],brainoni:1,brainstem:1,branch:1,breakpoint:1,bring:1,brownhil:1,brows:1,bspline:1,btwline:1,btwn:1,btwnname:1,bucker:1,buckner:1,bucknerlab:1,bug:1,bui:[],buib:[],buibiub:[],build:1,build_single_tri:1,built:1,bull:1,bump:[1,2],bunch:[],bwexist:1,c2m:1,c_bia:1,c_compar:1,calc:1,calcstr:1,calcul:[1,2],calculate_stat:1,calhoun:1,call:[1,2],camlight:1,can:[1,2],cancor:1,canlab:[0,1,2],canlab_canonical_brain:[],canlab_connectivity_predict:1,canlab_connectivity_preproc:1,canlab_create_wm_ventricle_mask:1,canlab_databas:[],canlab_dataset:[],canlab_extract_ventricle_wm_timeseri:1,canlab_force_directed_graph:1,canlab_glm_:[1,2],canlab_glm_getinfo:[1,2],canlab_glm_group_level:[1,2],canlab_glm_group_levels_run1input:[1,2],canlab_glm_maskstat:[1,2],canlab_glm_publish:[1,2],canlab_glm_readm:[1,2],canlab_glm_roistat:[1,2],canlab_glm_subject_level:[1,2],canlab_glm_subject_levels_run1subject:[1,2],canlab_maskstat:[1,2],canlab_preproc:[1,2],canlab_preproc_norm_check:[1,2],canlab_qc_metrics1:[1,2],canlab_results_fmridisplai:1,canlab_spm_contrast_job:[1,2],canlab_spm_contrast_job_luka:[1,2],canlab_spm_fmri_model_job:[1,2],cannot:1,canon:[1,2],canoncorr:1,canonical_brain:1,caonic:1,capabl:1,capit:1,captur:1,care:1,caret:1,carlo:1,carmack:1,carmack_get_label:[],cast:1,cat:[1,2],categor:1,categori:1,caudat:1,caus:[1,2],caution:1,caxi:1,ccor:1,cdf:1,ceil:1,cell:[1,2],cellarrai:[1,2],cellarri:1,cellstr:1,cen:1,center:[1,2],center_of_mass:1,centered_dot_product:1,centerimag:1,centervoxel:1,centr:1,central:1,centroid:1,centromedian:1,cerebellum:1,cert:1,certain:1,certread:1,chanc:1,chance_95_ci:1,chang:[1,2],change_point:1,changepoint:1,charact:[1,2],characterist:1,charg:[],chart:1,chebi:1,chebyshev:1,check:[1,2],check_cluster_data:[1,2],check_extracted_data:1,check_image_filenam:1,check_spm_mat:1,check_spm_matfil:1,check_valid_imagenam:1,checkmatlabvers:1,chemometr:1,chi2:[1,2],chi:1,child:[1,2],choic:[1,2],choos:[1,2],choose_ndim:1,chosen:1,chptmap:1,chrf:1,christensen:1,chronolog:1,chunck:1,chunk:1,chwo9116:1,circa:1,circl:1,circular:1,circumst:1,cis95:1,cl1:1,cl2:1,cl3:1,cl_ami:1,cl_b_fdr05_002_01_k3_1_1_prune:1,cl_ext:1,cl_ext_3dclustsim:1,cl_ext_clustsim:1,cl_ext_make_resid:1,cl_ext_spm:1,cl_ext_spm_grf:1,cl_ext_spm_spm:1,cl_extent:1,cl_glo1:1,cl_glo2:1,cl_in:1,cl_line_plot:1,cl_match:1,cl_match_to:1,cl_out:1,cl_overlap:1,cl_putamen:1,cl_roimean:1,cl_roipattern:1,cl_size:1,claim:[],clarifi:[],class_clust:1,class_est:1,class_threshold:1,classif:1,classifi:1,classify_bay:1,classify_choose_most_lik:1,classify_naive_bay:1,classify_naive_bayes_2010:1,classify_naive_bayes_objfun:1,classify_search_script3:1,classify_viz_region:1,classs:1,clcol:1,clean:1,clear:1,click:1,clim:1,clin:1,clindx:1,clinpsywoo:1,clneg:1,clneg_data:1,clockwis:1,close:[1,2],close_enough:1,close_non_spm_graphics_figur:1,closeenough:1,closemovi:1,closer:1,closest:1,closest_clust:[],clout:1,clpattern:1,clpo:1,clpos_data2:1,clpos_data:1,clroimean:1,cls1:1,cls2:1,cls3:1,clsize:1,clsuter:1,clu:1,clust:1,cluster2region:1,cluster2subclust:1,cluster:[1,2],cluster_barplot:1,cluster_close_enough:1,cluster_contig_region_tool:[],cluster_cutawai:1,cluster_export_png:1,cluster_find_index:1,cluster_image_shap:1,cluster_image_spher:1,cluster_interp:1,cluster_intersect:1,cluster_kmeans_parcel:1,cluster_local_maxima:1,cluster_manova:1,cluster_nam:1,cluster_nmd:1,cluster_nmdsfig:1,cluster_nmdsfig_glassbrain:1,cluster_orthview:1,cluster_orthviews_class:1,cluster_orthviews_montag:1,cluster_orthviews_overlap2:1,cluster_orthviews_overlap:1,cluster_orthviews_overlap_3color:1,cluster_orthviews_showcent:1,cluster_princomp:1,cluster_set_intersect:1,cluster_solut:1,cluster_surf:1,cluster_surf_batch2:1,cluster_surf_batch:1,cluster_surf_movi:1,cluster_t:1,cluster_table_old:[],cluster_table_successive_threshold:1,cluster_tmask:1,cluster_tool:1,clusterdata:1,clusters1:1,clusters2:1,clusters2clu:1,clusters2databas:1,clusters2mask2011:1,clusters2mask:1,clusters2roimask:1,clusters:[1,2],clusters_to_match:1,clustersizemask:1,clustersolut:1,clusterxyz:1,clustnam:1,clustqual:1,clustsim_dir:1,clz:1,cmaprang:1,cmd:1,cmdscale:1,cnt:1,cnt_run:1,cntmap:1,cntmat:1,cochran:1,code:[1,2],coeff:1,coeffici:1,coeffieint:1,cognit:1,cohen:[1,2],coher:[1,2],col1:1,col2:1,col:[1,2],colin:1,colinear:[1,2],collect:1,color:1,color_lowerboundpercentil:1,color_upperboundpercentil:1,colorado:[1,2],colorbar:1,colorchang:1,colorchangestr:1,colorcond:1,colormap:1,colormap_tor:1,colors2:1,colorscal:1,colorspec:1,colorspecstr:1,colum:1,column1:1,column2:1,column3:1,column4:1,column:[1,2],columnwis:1,com:1,combin:[1,2],combine_struct:1,combo:1,come:[1,2],comma:1,command:[0,1,2],comment:1,common:1,comp:1,compact2:1,compact:1,compar:[1,2],compare_filtered_t:1,compare_slic:1,compare_spac:1,compare_subject:[1,2],compare_subjects256:[1,2],comparegroup:1,comparison:1,compat:[1,2],complementari:1,complet:1,complex:1,complic:1,compoen:1,compon:[1,2],composit:1,compress:1,compris:1,compscor:[1,2],comput:[1,2],computation:1,con:[1,2],con_0002:[1,2],con_0003:1,con_0004:1,con_:[1,2],con_fil:1,con_pval:1,con_t:1,concaten:1,concis:1,conda:[],condf2ind:1,condf:1,condit:[1,2],condition:1,condition_num:1,condition_numb:1,conditionnam:1,conf:1,conf_region:1,confid:[1,2],configur:[],conflict:[],conform:[],confound:1,confus:1,confusion_mtx:1,confval:1,conimg:1,conjunct:1,conn:1,conn_filt:1,connam:[1,2],connect3d:1,connect:1,connectmetr:1,connot:1,connum:[1,2],consecut:1,conserv:1,consid:[1,2],consider:[1,2],consist:1,constant:1,constanttran:1,constrain:1,constraint:1,construct:[1,2],constructor:1,contain:[0,1,2],content:[],context:1,contig:[],contigu:1,contiguous_region:1,continu:1,continuousaccuraci:1,contour:1,contourslic:1,contract:[],contrast:[1,2],contrast_cod:1,contrast_mtx:1,contrast_t:1,contrastimag:[1,2],contrastnam:1,contrastxweight:1,contribut:[1,2],control:[1,2],control_dat:1,conv:[1,2],conv_hrf:[],conval:1,convent:1,converg:1,convers:1,converst:[],convert2mask:1,convert:1,convolut:[1,2],convolv:1,conw:[1,2],cool:1,coord:1,coordiat:1,coordin:[1,2],cophenet:1,copi:1,copy_image_fil:1,copyright:1,cor:1,cordir:1,core:[0,1],core_funct:[],corel:1,coron:1,corr:[1,2],corr_rep:1,corr_temp:1,corrc_mean:1,corrclass:1,corrclass_nullhyp:1,corrcoef:1,corrdat:1,correct:[1,2],corrected_p:1,correctli:1,correl:[1,2],correl_compare_dep:1,correl_compare_dep_permtest:1,correl_compare_dep_search:1,correl_compare_indep:1,correl_compare_indep_inputr:1,correl_compare_permut:1,correl_seed1_sig:1,correlation_fast_seri:1,correlation_to_text:1,correspond:[1,2],corrval:1,cortic:1,corval:1,cosin:[],cosine_similar:1,could:[1,2],count:[1,2],counterbalanc:[1,2],coupl:1,cours:[1,2],coursework_and_teach:[1,2],cov:[1,2],covari:[1,2],cover:[1,2],covfil:[1,2],covnam:[1,2],covt:1,covti:1,covxcon:[1,2],cp2:1,cp_ind:1,cpmap:1,crash:[],creat:[1,2],create_figur:1,create_fmri_mask:1,create_orthogonal_contrast_set:1,creation:1,creelman:1,crimin:1,crit_t:1,criterion:1,critic:1,cronbach:1,cross:1,crossdir:1,crosshair:1,crossov:1,crossval:1,crossvalid:1,cscale:1,cse:1,csf:[1,2],csfname:[],csfp2:[],csfpath:[],csv:[1,2],ctmp:1,cubic:1,cue:1,curr:1,current:[1,2],current_data:[],currentexperi:[1,2],currentmap:1,cursor:1,curv:[1,2],custom:[1,2],custom_coord:1,custom_hrf:[],customneur:1,cut:[1,2],cutawai:1,cutoff:[1,2],cv_assign:1,cv_lassopcr:1,cv_lassopcrmatlab:1,cv_multilevel_glm:1,cv_multregress:1,cv_pcr:1,cv_regress:1,cv_svm:1,cv_svr:1,cv_univregress:1,cverr:1,cvpartit:1,cwd:[1,2],cyan:1,cycl:1,cyclecorrect:1,cyclecorrection2:1,d_by_mod:1,d_mean:1,dacc_hw_pattern_sl6mm:1,dacc_rf_pattern_sl6mm:1,damag:[],dark:1,dash:1,dat1:1,dat2:1,dat:[1,2],dat_comb:1,dat_ext:1,dat_intersect:1,dat_mask:1,dat_matrix:1,dat_out:1,dat_union:1,data:[1,2],data_and_tool:1,data_comb:1,data_extract:[],data_matrix12:1,data_matrix1:1,data_matrix22:1,data_matrix2:1,data_obj:1,data_processing_tool:[],databas:[1,2],databasexyz:1,datafil:1,datanam:1,dataset:1,datatyp:1,datavalueset:1,datcel:1,datdir:1,date:1,datenum:1,datestr:1,datout:1,datsig:1,dattyp:1,datv:1,david:1,davidson:1,dbmethod:[1,2],dcm:1,dcon:1,deactiv:1,deal:1,deblank:[1,2],debug:1,dec:1,decil:1,decim:1,declar:1,decompos:1,decomposit:1,deconv:1,deconvolut:1,deconvolv:1,decor:[],decreas:1,dedetrend:1,deep:1,def:1,defin:[1,2],define_sampling_spac:1,definit:1,degre:[1,2],delai:1,delayeq:1,delet:[1,2],delete_ana_img:1,delim:1,delimit:1,deliv:1,delta:[1,2],delta_hir:1,deltadist:1,deltadon:1,deltadon_avg:1,deltatend:1,demand:[],demo2:1,demo:1,denan:1,dendrogram:1,denois:1,denoised_canlab:[1,2],denot:[1,2],densiti:1,dep:1,depend:[1,2],depfun_aggreg:1,depict:1,deprec:[1,2],depth:1,deriv:[1,2],descend:1,descent:[],describ:[1,2],descrip:1,descript:[1,2],design:[0,1,2],design_matrix:1,designfil:1,designx:[1,2],desir:1,det:1,det_logit:[1,2],det_logit_allstim:[1,2],detail:1,detect:[1,2],determin:[1,2],determinist:[1,2],detransit:1,detrend:1,dev:1,develop:1,devianc:1,deviat:[1,2],devinnei:1,df_error:1,df_model:1,dfb:1,dfe:1,dfm:1,dfwithin:1,dhr:1,diag:1,diaglinear:1,diagnost:[],diagon:1,diagquadrat:1,dice:1,dice_coeff:1,dice_coeff_imag:1,dichotom:1,dicom:1,dicom_tarzip:1,did:1,didn:[1,2],diff:1,differ:[1,2],difficult:1,difstat:1,dim4:1,dim:[1,2],dimens:[1,2],dimension:1,dip:[1,2],dir2cel:1,dir:[1,2],dir_wcard:[1,2],dire:[1,2],direct:1,direct_mtx:1,directli:1,directori:[1,2],directory_specif:[1,2],discard:1,discoveri:1,discret:1,discrimin:1,discuss:1,disdaq:1,disk:1,disord:1,disp:1,dispers:[1,2],displai:[1,2],display_plot:1,display_slic:1,displaym:[1,2],disptyp:1,dissim:1,dissimilar:[1,2],dist:[1,2],dist_from_hyperplane_xv:1,dist_hi:1,dist_i:1,dist_n:1,dist_thresh:1,distanc:[1,2],distance_euclid:1,distinguish:1,distribut:[1,2],ditto:1,divid:[1,2],dm1:[],dm2:[],dmpfc:1,doasym:1,dobrain:1,doc:1,docent:1,dodetrend:1,doe:[1,2],doesn:[1,2],dofig:1,dohead:1,dohp:1,doind:1,doindiff:1,doindiv:1,doku:1,dolegend:1,dolin:1,dolp:1,domask:1,dominic_ricci:1,domontag:1,don:[1,2],done:[1,2],dool:1,doonerow:1,doortho:[1,2],doplot2:1,doplot:[1,2],doquad:1,doqual:1,dorandom:1,dorob:1,dorobust:1,dosav:1,doshad:1,dosmooth:1,dot:[1,2],dot_product:1,dotfig:1,doubl:1,doubt:1,doug:1,douniqu:1,dowithinst:1,download:[0,1],downsampl:1,downsample_canlab:1,downsample_delta:1,downsample_scnlab:1,downweight:1,dpsp002:1,dpsp002_spm:1,dpsp003:1,dpsp003_spm:1,drag:1,drastic:1,draw:1,draw_anatomical_roi_2008:1,drawlin:1,drawn:1,drawnow:1,drawslic:1,drawsyml:1,drawsymr:1,dream:[1,2],dreamio:1,drift:[1,2],drive:[],driven:1,drop:1,dsgn:[1,2],dsgnarg:[1,2],dsgninfo:[1,2],dslen:1,dsrate:1,dthresh:1,due:[1,2],dull:1,dummi:[1,2],dummyscan:1,duplic:[],dur:1,durat:1,dure:1,durectli:1,dwcard:[1,2],dx_beta:1,dynam:1,each:[1,2],earlier:1,easi:1,easili:1,ebay:1,econ:1,econflag:1,econometr:1,edat2:1,edat:1,edat_cel:1,edat_struct:1,eddi:1,edg:1,edgecolor:1,edit:[1,2],edu:[1,2],eeg:1,effect:[1,2],effect_size_map:[1,2],effici:[1,2],ehter:[],eidf:1,eig:1,eigenvalu:[1,2],eigenvari:[1,2],eigenvector:[1,2],eigenvetor:1,eigv:[1,2],eigval:[1,2],either:[1,2],elaps:[],elast:1,element:[1,2],elev:1,elimin:1,ellips:[1,2],ellipt:[1,2],eloffset:1,els:[1,2],elsewher:1,email:[1,2],embed:[1,2],emot:1,emotion_2s_z_val_fdr_05:1,empir:1,empti:[1,2],emul:1,enabl:[1,2],encapsul:1,end:[1,2],endian:[1,2],endval:1,enforc:1,engin:[1,2],engram:1,enlarg:1,enough:[],ensu:1,ensur:1,entail:1,enter:[1,2],entir:[1,2],entiti:1,entri:[1,2],epi:[1,2],epi_nam:[1,2],epoch:1,eprim:1,equal:[1,2],equat:1,equival:1,erase_and_displai:1,erase_str:1,eraseblob:1,erdf:1,err:1,errbar_width:1,error:[1,2],error_r:1,error_typ:1,errorbar:1,errorbar_horizont:1,errorbar_width:1,errorbarseri:1,errordata:1,errormatrix:1,errorwidth:1,errval:1,escapedstr:1,escapeforshel:1,esim:1,ess:1,essenti:[1,2],est:1,establish:1,estim:[1,2],estimateparam:1,etc:[1,2],euclidean:1,eval:1,evalu:1,even:[1,2],evenli:1,event:[1,2],event_level:1,event_pain_onli:1,eventdesign:1,eventmean:1,eventnam:1,events_onli:[1,2],ever:1,everi:[1,2],everyth:[1,2],everywher:1,evtonset:1,ewma3:1,ewma5:1,ewma:1,ewma_var:1,ewma_z:1,exact:1,exactli:1,examin:1,exampl:[1,2],example1:1,example2:1,example3:1,example4:1,example_barwani:1,example_pi:1,example_plot:1,examplev:1,exce:1,excel:1,excelfilenam:1,except:1,exclud:[1,2],exclus:1,execut:1,exist:[1,2],existing_ax:1,existingfig:1,exit:1,exp0:1,exp1:1,exp2:1,exp3:1,exp:[1,2],exp_dat:1,exp_tim:1,exp_vs_percept:1,expand:1,expand_4d_filenam:1,expect:[1,2],experi:[1,2],experimentfilenam:1,experment:[1,2],expfun:1,explain:[1,2],explan:1,explicit:1,explicitli:1,explod:1,expon:1,exponenti:1,expr:1,express:[1,2],expt:[1,2],exptm:[1,2],ext:1,extend:1,extended_output_flag:1,extens:[1,2],extent:1,extent_thresh:1,extern:1,extr:1,extra:1,extract:[1,2],extract_contrast_data:1,extract_data:1,extract_dxbeta_data:1,extract_from_roi:1,extract_gray_white_csf:1,extract_image_data:1,extract_ind_peak:1,extract_indiv_peak_data:1,extract_mask:1,extract_raw_data:1,extract_roi:1,extract_roi_averag:1,extrem:1,f_cols_of_interest:1,f_ix0:1,f_test_full_vs_r:1,f_test_no_intercept:1,face:1,facealpha:[1,2],facecolor:1,facevertexcdata:1,facilit:1,fact:[1,2],factor:[1,2],factoran:1,fail:1,fairli:1,fake:1,fall:1,fals:[1,2],fashion:1,fast:[1,2],fast_conv_fft:1,faster:1,fastest:1,fastmontag:1,fault:1,fda:1,fdr:1,fdrp:1,fdrsig:1,fdrthresh:1,featur:1,feb:1,few:1,fewer:[1,2],fft:[1,2],fft_calc:[1,2],fft_plot_scnlab:1,fgh:1,fhan:1,fhandl:1,fhwm:1,fid:1,field:[1,2],field_skip:1,fieldnam:1,fieldpath:1,fifth:1,fig:1,fig_han:1,fig_handl:1,figh:1,figur:[1,2],figure_galleri:1,figuresa:[1,2],file:[1,2],file_arrai:1,file_list:1,file_wcard:[1,2],filenam:[1,2],filename_get_new_root_dir:1,filename_tool:[],filenames_or_v:1,files_exist:1,filesep:1,fill:[1,2],fill_area_around_point:1,fill_handl:1,fillh:1,filt:1,filter:[1,2],filteradjust:1,filtertyp:1,find:[1,2],findobj:1,fine:1,finish:[1,2],fir2htw2:1,fir:[1,2],fir_fil:1,fircondit:1,firnam:1,first:[1,2],first_lev_var:1,first_vol:1,firstimg:1,fisher:1,fisherp:1,fisherz:1,fit:[1,2],fit_and_averag:1,fit_canonical_hrf:[1,2],fit_gl:1,fit_gls_brain:1,fit_logit2:[1,2],fit_logit:[1,2],fit_sfir:[1,2],fitlin:1,fitting_fun:1,fitx:1,fix:1,fixed_input:1,fixed_inputs1:1,fixed_tsu:1,fixin:1,fklsf:[],flag:[1,2],flat:1,flatdat:1,flatten:1,fleiss:1,flexibl:1,flip:1,flip_endian:1,flipi:1,float32:1,float64:1,fly:1,fmri:[1,2],fmri_dat:1,fmri_data:[],fmri_data_obj:1,fmri_data_object:1,fmri_fil:[1,2],fmri_imag:1,fmri_mask_imag:[],fmri_mask_thresh:[],fmri_mask_thresh_canlab:[1,2],fmri_model:[],fmri_model_obj:1,fmri_obj_imag:1,fmri_spline_basi:1,fmri_timeseri:[],fmridat:1,fmridat_obj:1,fmridisp:1,fmridisplai:[],fmridisplay_helper_funct:[],fmristat:[],fname:1,fob:1,fold:1,folder:1,follow:[1,2],font:1,fontsiz:1,foo:1,forc:1,force_delta:1,forcenam:1,forcesup:1,form:1,format:[1,2],formula:[1,2],forward:1,found:[1,2],found_path:1,foundat:[],four:1,fourier:1,fouriernotch:1,foursurfac:1,fout:[1,2],fout_1:[1,2],fov:1,fpr:1,fprintf:1,frackowiak:1,fraction:[1,2],frame:1,fread:1,free:1,freedom:[1,2],freehand:1,freq2:1,freq:[1,2],frequenc:[1,2],friedman:[],friston:1,frith:1,from:[1,2],from_multireg:[1,2],frontal:1,frustrat:1,fsl:[1,2],fsl_output_typ:1,fsloutputtyp:1,fter:[],full:[1,2],full_model_gv_p_v_np:1,full_path_of_movie_output_fil:1,fullfil:[1,2],fulli:1,fullpath:1,function_cal:1,function_handl:1,function_nam:1,functional_mask:1,functionnam:1,funhan:[],funhandl:1,funki:1,funnam:1,funtion:1,furnish:[],further:1,futur:1,fval:1,fwe:1,fwhm:[1,2],ga_example_script:[1,2],galleri:1,gambl:1,gamma:1,gamrnd:1,ganglia:1,garson:1,gauss:1,gaussian:[1,2],gaussian_mix:1,gca:1,gcf:1,geisser:1,genconverg:1,gener:[1,2],generalis:1,genet:1,genetic_algorithm_readm:[1,2],genfun:1,gensiz:1,geom2d:1,get:[1,2],get_ax_slic:1,get_cluster_volum:1,get_condition_assign:1,get_filenam:[1,2],get_filename2:[1,2],get_first_help_lin:1,get_from:1,get_htw_image_nam:1,get_logit:[1,2],get_mask_vol:1,get_max_t:1,get_parameters2:[1,2],get_session_x:1,get_snr:1,get_var:1,get_wh_imag:1,getappdata:1,getclust:1,getdata:1,getfigclust:1,getfrom:1,getfullpath:1,getfunctnames2:1,getmeanqu:1,getpredictor:1,getrandom:1,getvertexcolor:1,getvif:[],ghost:[1,2],gianaro:1,gindx:1,git:[],github:[],give:[1,2],given:[1,2],glass:1,glassbrain_avi:1,glm:[1,2],glm_batch_tool:[],glm_multilevel:1,glmax:1,glmfit:1,glmfit_gener:1,glmfit_multilevel:1,glmfit_multilevel_varexplain:1,glmin:1,global:[1,2],global_t1:[1,2],globu:1,gm_mask:1,gnu:[],goal:1,goe:1,gone:1,good:[1,2],got:1,gouraud:1,gov:1,gradient:[1,2],grai:[1,2],grand:[1,2],grant:[],graph:1,graphic:1,graymask:1,graymatt:1,grayscal:1,great:1,greater:1,greatest:1,green:1,greenhous:1,grei:1,grid:[1,2],gridlinestyl:1,grname:[],gross:[1,2],group:[1,2],group_analys:1,group_anxiety_n35:[1,2],group_avg:1,group_avg_ref_lin:1,group_n35:[1,2],group_sadness_n35:[1,2],group_st:1,groupbi:1,groupmean:[1,2],groupspac:1,grow:1,grp:[1,2],grpcontrast:1,grpmean:1,grpmodeldir:[1,2],grpste:1,gtrim:[1,2],guess:1,gui:1,guid:1,guilt:1,guilti:1,h25_aerger:1,h_by_mod:1,h_mean:1,hair:1,half:[1,2],halfh:1,han:1,handl:[1,2],handle_numb:1,happen:1,hard:[1,2],hardcopi:1,harvei:1,has_header_row:1,hasti:[],hat:1,have:[0,1,2],haxaxi:1,haxfront:1,haxi:1,haxis3d:1,haxsagl:1,haxsagr:1,hchoic:1,hcmp:1,hconstraint:1,hdr:1,hdrf:[1,2],hdvabakjsbdakjsbdkajsdbakjskl:[],head3d:1,head:[1,2],header:[1,2],header_col:1,headernam:1,headhandl:1,heart:[1,2],heat:1,heat_trial:1,heatmap:1,heavili:[1,2],height:[1,2],height_mask:1,heighteq:1,heightp:1,heightthresh:1,help:[1,2],helper:1,helptext:1,hem:1,hemispher:[1,2],hemodynam:[1,2],henc:1,here:[1,2],herebi:[],hernandez:1,hewma2:1,hewma2_plot:1,hewma:1,hewma_cp:1,hewma_extract_voxel:1,hewma_from_raw_timeseri:1,hewma_gui:1,hewma_plot_bivari:1,hewma_plot_coord_btnupfcn:1,hewma_plot_cpmap:1,hewma_plot_runlen:1,hewma_runlen:1,hewma_save_timeseri:1,hewma_timeseri:1,hewma_timeseries_plot:1,hewma_util:[],hfig3d:1,hfigleg:1,hfigmain:1,hh1:1,hh2:1,hh3:1,hh_mm:1,hicolor:1,hidese:1,hierarch:1,high:[1,2],high_r:1,higher:[1,2],highest:[1,2],highli:[1,2],highlow:1,hightim:1,hill:1,hipp:1,hippocampu:1,hire:1,hist2:[1,2],hist:1,hist_un0:1,histogram:[1,2],histori:1,history_descrip:1,hit:1,hlight:1,hlm:1,hmhrfest:[1,2],hoc:1,hochberg:1,hold:[1,2],holder:[],holdout:1,holdout_set:1,hole:1,hole_s:1,holm:1,hope:[],hopefulli:[],horiz:1,horizont:[1,2],horribl:1,horzcat:1,hot:1,hotel:1,hotopen:1,how:[1,2],howev:[1,2],howto:1,hp_length:1,hparam:1,hpatch:1,hpf:1,hpfilter:1,hplen:1,hplength:1,hr_intercept:1,hrf:[1,2],hrf_est_toolbox2:[],hrf_fit:1,hrf_fit_one_voxel:[1,2],hrf_obj:1,hrf_satur:1,hrf_timecourse_cond0001:1,hrf_timecourse_cond0002:1,ht00_inst:1,hthreshold:1,html:[1,2],html_output:[1,2],html_save_dir:[1,2],http:1,htw:1,htw_from_fit:1,hubert:1,huge:1,human:1,hump:1,hvblock:1,hyndsight:1,hyper:[],hyperellipsoid:1,hyperparamet:1,hyperplan:1,hypothalamu:1,hypothesi:1,ica:1,icadat:1,icasig:1,icbm:1,icbm_area74:1,icbm_brainonly_1mm_seg1:1,icbm_loc:1,icc:1,iccvalu:1,id_numb:1,idata:1,idd:1,idea:1,ideal:1,ideal_deconv5:1,ideal_deconv6:1,ident:1,identifi:[1,2],idx:1,igl:1,igls_multicond:1,ignor:[1,2],ignore_miss:1,ihb_axes3dmenuclusteronli:1,ihb_axes3dmenuwholebrain:1,ihb_axestalspace3d:1,ihb_changetalvoxs:1,ihb_clr_axi:1,ihb_clr_front:1,ihb_clr_orig:1,ihb_clr_saggit:1,ihb_clr_surfac:1,ihb_clr_symm:1,ihb_clusterlevelprob:1,ihb_clusterpopup:1,ihb_cntaxi:1,ihb_cntfront:1,ihb_cntsagittal:1,ihb_cntsagittalr:1,ihb_cursorcoord:1,ihb_getclust:1,ihb_getclusterset:1,ihb_lighttalspace3d:1,ihb_lineorigin:1,ihb_linesymmetr:1,ihb_linewidthmenunorm:1,ihb_linewidthmenuthick:1,ihb_linewidthmenuthin:1,ihb_loadslic:1,ihb_renderermenuopengl:1,ihb_renderermenuzbuff:1,ihb_resetdefault:1,ihb_surfaceclust:1,ihb_talspac:1,ihb_talspace3d_fig:1,ihb_talspacedfl:1,ihb_talspaceleg_fig:1,ihb_talspacemain_fig:1,ihb_transparencymenu:1,ihb_transparencymenuhigh:1,ihb_transparencymenulow:1,ihb_transparencymenumedium:1,ihb_transparencymenuopaqu:1,ihb_volumeinvox:1,ihb_voxellevelprob:1,ihb_voxsizemenu111:1,ihb_voxsizemenu222:1,ihb_voxsizemenu444:1,ihbdfl_ax_info:1,ihbdfl_baxesisclusteronli:1,ihbdfl_color_clorig:1,ihbdfl_color_clsymm:1,ihbdfl_color_cntax:1,ihbdfl_color_cntfr:1,ihbdfl_color_cntsag:1,ihbdfl_color_surfac:1,ihbdfl_fr_info:1,ihbdfl_line_width:1,ihbdfl_main_gap:1,ihbdfl_main_height:1,ihbdfl_main_i:1,ihbdfl_main_info_h:1,ihbdfl_main_width:1,ihbdfl_main_x:1,ihbdfl_main_z:1,ihbdfl_min_size_to_draw:1,ihbdfl_render:1,ihbdfl_sl_info:1,ihbdfl_spm_fig_conman:1,ihbdfl_spm_fig_interact:1,ihbdfl_spm_fig_selfilewin:1,ihbdfl_sr_info:1,ihbdfl_tal_x_vox:1,ihbdfl_tal_y_vox:1,ihbdfl_tal_z_vox:1,ihbdfl_transpar:1,ihbdfl_xlimd:1,ihbdfl_xlimi:1,ihbdfl_ylimd:1,ihbdfl_ylimi:1,ihbdfl_zlimd:1,ihbdfl_zlimi:1,iimg_check_indx:1,iimg_check_volinfo:1,iimg_cluster_ext:1,iimg_cluster_index:1,iimg_cluster_intersect:1,iimg_cluster_prun:1,iimg_clusters2indx:1,iimg_data:1,iimg_get_data:1,iimg_indx2clust:[1,2],iimg_indx2contiguousxyz:1,iimg_intersect:1,iimg_make_sure_indx:1,iimg_mask:1,iimg_multi_threshold:1,iimg_nam:1,iimg_princomp:1,iimg_princomp_displai:1,iimg_read_img:1,iimg_read_vol:1,iimg_reconstruct_3dvol:1,iimg_reconstruct_vol:1,iimg_reslic:1,iimg_smooth_3d:1,iimg_sphere_timeseri:1,iimg_stouff:1,iimg_threshold:1,iimg_weighted_ttest:1,iimg_write_imag:1,iimg_xxx:1,iimg_xyz2indx:1,iimg_xyz2spher:1,illustr:[],ilogit:[1,2],im_fil:1,ima:[1,2],imag:[1,2],image2clust:1,image2coordin:1,image_computation_tool:[],image_eval_funct:1,image_eval_function_multisubj:1,image_histogram1d:1,image_histogram:1,image_indx:1,image_intensity_histogram:[1,2],image_list:1,image_math:1,image_nam:1,image_obj:1,image_object:1,image_scatterplot:1,image_similarity_plot:1,image_similarity_plot_bucknermap:1,image_skip_interv:1,image_space_tool:[],image_threshold:[],image_vector:[],imageclust:1,imagecluster_block:1,imagelist:1,imagenam:1,images_per_sess:1,imagesc:[1,2],imcalc:1,imdat:1,imfilenam:[1,2],img1:1,img2:1,img2surf:1,img2voxel:1,img:[1,2],img_fil:1,img_hist2:[1,2],img_hist:[1,2],img_nam:1,imgdat:1,imgdata:1,imgfil:[1,2],imginfo:1,imgnam:[1,2],imgs2:1,imgs_to_extract_from:1,imgtyp:1,imgvec:1,immedi:[1,2],imnam:[1,2],imp:1,impact:1,implement:[1,2],impli:1,implicit:[1,2],implicit_mask:[1,2],implicit_masking_method:[1,2],implicitli:1,implict:[1,2],implied_dissim:1,implod:1,importantli:[1,2],importdata:1,impos:1,improv:[1,2],impuls:1,imput:1,imraw_data:1,imtr:1,in1:1,in2:1,in_mask_logical_vector:[1,2],inc:1,incis:1,includ:[1,2],includezero:[1,2],inclus:[1,2],incompat:1,inconsist:1,incorpor:1,incorrect:[],increas:1,increment:1,ind2:1,ind2sub:[1,2],ind:1,indclustertoview:1,indeo5:1,indepen:[1,2],independ:1,indepnd:1,index:[0,1],index_image_manip_tool:[],indiv:1,indiv_timeseri:1,individu:[1,2],indlin:1,indscal:1,indscalf:1,indx:1,ineffici:1,inequ:1,inf:1,infer:[1,2],inference_opt:1,inferenti:1,inferior:1,infin:1,infinit:1,inflat:[1,2],influenc:[1,2],info:[1,2],inform:[1,2],infostr:1,inhib2_cluster_barplot:1,inhib:1,inhomogen:[1,2],ini:[],init:1,initi:[1,2],inlin:1,inmask:[1,2],inmaskvox:[1,2],innaccur:1,innam:1,inner:1,inpoint:1,inpress_2007_emotion_handbook_2006:1,input:[1,2],input_activ:1,input_threshold:1,input_v:1,input_valu:1,inputarg:1,inputhrf:1,inputimg:[1,2],inputmean:1,inputopt:1,insert:1,insid:1,instabl:[],instal:[],instanc:1,instead:[1,2],insula_from_part1:1,int16:1,int32:1,int_dat:1,intcpt:1,integ:[1,2],integr:[1,2],intellig:1,intend:1,intens:[1,2],intensity_threshold:1,intepret:1,inter:1,interact:1,interacti:1,intercept:[1,2],intercept_model:1,interconnect:1,intercorrel:1,interest:[1,2],intermedi:1,intern:[1,2],interp3:1,interp:1,interp_imag:1,interp_method:1,interpol:1,interpret:[1,2],interquartil:1,interrog:1,intersct:1,intersect001:1,intersect:1,intersect_cl:1,interv:1,intext2:[1,2],intext_countloc:[1,2],intraclass:1,intrins:1,introduc:1,introductori:1,inv:1,invalid:[1,2],invar:1,invers:[1,2],invert:1,invis:1,invok:1,involv:1,invp:[1,2],invpview:[1,2],ipython:[],iqrmult:1,irl:1,irrelev:1,isconverg:1,isdiff:1,isdir:1,isfield:1,ishot:1,isi:1,isn:1,isnan:1,isnul:1,isocap:1,isocapshandl:1,isok:[],isosurfac:1,isosurfacehandl:1,ispain:1,isspmclust:1,issu:1,item:1,iter:1,ith:1,itself:1,iub:[],ivec:1,ivecobj:1,ivoldat3d:1,ix0:1,iyfj:[],jackson:1,jamil:1,jare:[],jet:1,job:[1,2],john:1,johnson:1,join:1,joint:[1,2],joint_hist:[1,2],jolliff:1,journal:1,judg:1,juli:[],jump:1,june:1,just:[1,2],kcl:1,kdensiti:1,keep:1,keep_exist:[1,2],keepdt:1,keepit:1,keepzero:1,keepzerosmask:1,kei:[1,2],keith:1,kendal:1,kendalla:1,kendallb:1,kern_siz:1,kernel:[1,2],kernels:1,kevin:1,keyword:[1,2],kind:1,knot:1,knotrat:1,know:1,known:1,kragel:1,kragelemot:1,kramer:1,kreyszig:1,kruskal:1,krzanowski:1,ksdensiti:1,ktotalv:[1,2],kurtosi:[1,2],kxi:1,l2_covt:1,l2m:1,lab:1,labar:1,labdata:1,label:[1,2],label_group:1,label_mask:1,labl:1,laboratori:1,lag:1,lam:1,lambda:1,larg:1,larger:1,largest:1,largest_region:1,lasso:1,lasso_cv:[],lasso_num:1,lasso_rocha:[],lassoglm:1,lassopcr:1,lasspcrmatlab:[],last:[1,2],latenc:1,latent:1,later:1,latest:1,layout:1,lazar:1,lbpa40:1,lchoic:1,lcl:1,lead:1,leaf:1,learn:[],least:1,leav:[1,2],lebesgu:1,left:[1,2],legaci:1,legend:1,legland:1,legmat:1,len:1,length:[1,2],lengthlegend:1,lenmat:1,less:1,let:1,letter:[1,2],lev:1,level:[1,2],levonp:1,lew:1,liabil:[],liabl:[],liber:1,librari:1,licens:[],life:1,light:1,lightangl:1,lightfollowview:1,lightrestoresingl:1,like:[1,2],likelihood:1,likeratio:1,limbic:1,limit:[1,2],lindetrend:1,lindquist:[1,2],line:[0,1,2],line_handl:1,line_plot_multisubject:1,linear:[1,2],linear_detrend:1,linear_trend:1,linearli:1,linearpain:1,linebar:1,linecolor:1,lineh:1,linehx:1,linemat:1,lineplot:1,lineplot_column:1,linespec:1,linestyl:1,linethick:1,linewidth:1,link:[1,2],linkag:1,linkage_t:1,linkagetyp:1,linkfun:1,linktyp:1,list:[1,2],littl:[1,2],live:[1,2],load:[1,2],loadimg:1,local:1,locat:[1,2],locflag:1,loess:1,loess_multilevel:1,loess_parti:1,loess_xi:1,loessord:1,loftu:1,log:1,log_joint:1,logic:1,logist:[1,2],logit:[1,2],loh:[1,2],london:1,longer:1,longest:1,look:[1,2],loop:1,lose:[],loss:[1,2],lot:1,lotim:1,low:1,lowcolor:1,lower:[1,2],lowest:1,lparam:1,lpf:1,lsqisoton:1,lui:1,luisfilt:1,luk:[],luka:[],luke:1,luna:1,m_pval:1,mac:1,machin:1,macmillan:1,macosx_10:1,mad:[1,2],made:1,madlimit:1,mag:1,magenta:1,magic:1,magnitud:[1,2],magnu:1,mahalanobi:[1,2],mai:[1,2],main:1,mainli:1,major:1,make3davi:1,make3davi_uncompress:1,make:[1,2],make_conv_mtx:[1,2],make_figure_into_orthview:1,make_htw_contrast_imag:1,makebinari:1,makefig:1,makelegend:1,malanobi:[1,2],malform:1,man:1,mandatori:1,mani:[0,1,2],manual:[],map:[1,2],map_data_to_colormap:1,map_to_image_spac:1,map_to_world_spac:1,mapnam:1,march:1,mark:1,marker:1,markercol:1,markerfacecolor:1,markers:1,markerstyl:1,markertyp:1,markov:1,martin:[],mask1:1,mask2:1,mask2clust:1,mask2struct:1,mask2surfac:1,mask2voxel:[1,2],mask3:1,mask:[1,2],mask_all_valid:1,mask_char_nam:1,mask_cl:1,mask_clust:1,mask_create_from_image_set:1,mask_create_results_mask:1,mask_fish:1,mask_imag:1,mask_intersect:1,mask_intersection2:1,mask_nam:[1,2],mask_princomp:1,mask_stouff:1,mask_thresh:[1,2],mask_union:1,mask_vol:1,mask_xyzlist:1,maskclu:1,maskdim:1,maskdir:[1,2],masked_dat:1,masked_indx:1,masked_indx_data:1,masked_t:1,masked_vol:1,maskfil:[1,2],maskfilenam:[1,2],maskimag:[1,2],maskimg:1,maskindx:1,maskinfo:1,masknam:[1,2],maskobj:1,maskstat:[1,2],maskvec:1,maskz:1,mass:1,masson:1,mat1:1,mat2:1,mat:[1,2],match:[1,2],matchto:1,materi:1,mathemat:1,matlab2010a:[],matlab:[0,1,2],matlabr12toolboxmatlabdatatypessqueez:1,matric:[1,2],matrix:[1,2],matrix_direct_effect:1,matrix_direct_effects_ridg:1,matrix_eval_funct:1,matrixm:1,matter:[1,2],matthew:1,max95est:1,max:[1,2],max_network:1,max_shift:1,maxalpha:1,maxclust:1,maxcolor:1,maxim:1,maxima:1,maximg:1,maximum:[1,2],maximumum:1,maxiter:1,maxlik:1,maxlin:1,maxmask:1,maxmem:1,maxr:1,maxrow:[1,2],maxslic:1,maxt:1,maxtim:1,mc_setup:1,mcd:1,mcgraw:1,mclellan:1,mcol:1,mcr:1,mdsfig:1,mdsfig_3d:1,mea_visualis:1,mean:[1,2],mean_func_fil:[1,2],mean_gray_matter_mask:1,mean_imag:1,mean_ravol:1,mean_snr:[1,2],mean_spikes_per_imag:[1,2],meanabserr:1,meandat:1,meanest:1,meaning:1,means_for_unique_i:1,meantim:[],measur:[1,2],med:1,medc:1,media:1,medial:1,median:1,mediap:1,mediat:1,mediated_mtx:1,mediation_brain_result:1,mediation_brain_surface_fig:1,mediation_setup:1,mediation_xprepvsb_mbrain_yhr:1,mediodors:1,medium:1,meet:1,member:1,membership:1,memori:[1,2],meng:[],menu:1,merchant:[],merg:1,merge_clust:1,merge_nearby_clust:1,mesg:1,mesh:1,meshgrid:1,mess:1,messag:1,met:1,meta:1,meta_cluster_tool:1,meta_stochastic_activation_blob:1,meth:1,method:[1,2],method_nam:1,metric:[1,2],mia:1,michigan:[],microsoft:1,midbrain:1,midcolor1:1,midcolor2:1,midcolor:1,middl:1,might:1,milimet:1,millimet:1,mimic:1,min95est:1,min:1,min_cluster_s:1,min_dist:1,mincolor:1,mind:1,mind_res_net_fmri_course_2008:[1,2],minh:1,minim:[1,2],minimg:1,minimum:1,minimum_cluster_s:[1,2],minmask:1,minor:[],minsiz:1,minu:1,minut:[],mirror:1,misc_util:[],miscellan:[],misclass:1,misclassif:1,misclassifi:1,mismodel:[1,2],miss:[1,2],missing_imag:[1,2],missing_valu:[1,2],missing_vox:[1,2],mistak:[],mix:1,mixedsig:1,mixtur:1,mm2voxel:1,mm_center:1,mm_distanc:1,mmdeep:1,mni2tal:1,mni:1,mni_tsu:1,mod:1,modal:1,moddf:[1,2],mode:[1,2],model1:[1,2],model3:[1,2],model:[1,2],model_building_tool:[],modeldir:[1,2],modfit:[1,2],modif:[],modifi:1,modifiedconv:1,modr:[1,2],modul:[0,1],modulator_cent:1,moment:[1,2],monkei:[],monotonic_regress:1,mont:1,montag:1,montage_clust:1,montage_clusters_maxslic:1,montage_clusters_medi:1,montage_clusters_point:1,montage_clusters_text2:1,montage_clusters_text:1,montage_image_worslei:1,montagetyp:1,more:[1,2],most:[1,2],motion:[1,2],mous:1,mov:1,move:1,movement:[1,2],movement_param:[1,2],moveslic:1,movi:1,movie_of_slice_timeseri:1,movie_output_fil:1,movie_stillfram:1,movienam:1,moving_averag:1,mri1:1,mri_data:1,ms_cond:1,ms_subject:1,ms_total:1,msb:1,msdb:1,msdstd:1,mse:1,msk:1,mspec:1,mtotalv:[1,2],mtx:1,much:[1,2],muck:[],mueller:1,multcomp_group:1,multcomp_spati:1,multcompar:1,multi:[1,2],multi_threshold:1,multiclass:1,multicolinear:[1,2],multicollinear:[],multidimension:1,multilev_medi:1,multilevel:1,multipl:[1,2],multipli:[1,2],multireg:[1,2],multivar_dist:[1,2],multivari:[1,2],multval:1,must:[1,2],mutipl:1,mutual:[1,2],mv_distanc:[1,2],mvarnam:1,mvmt:[1,2],mvmt_baseline_rsquar:1,mvmt_rsquar:1,mvmtrsq:1,mvnrnd:1,mvroi:1,mvroi_mdsfig_plot2:1,mvroi_mdsfig_plot_sepst:1,mvroi_mdsfig_plugin2:1,mvroi_mdsfig_plugint2:1,mvroi_plot_fir:1,mx1:1,mxc:1,my_function_nam:1,my_image_nam:1,my_image_vector:1,my_mean_imag:1,my_mm_coord:1,my_model:1,my_on:1,my_rgb_color:1,my_st:1,mya:1,myalpha:1,mycol:1,mycolor:1,mycon:1,mycov:1,mydelimit:1,mydir:[1,2],myfft2:1,myfft:[1,2],myfield1:1,myfield2:1,myfield:1,myfil:1,myimag:1,myimg:1,mylight:1,mymontag:1,myoutnam:1,myradiu:1,mysavedir:1,myset:1,mystd:[1,2],mytext:1,myview:1,myz:[1,2],n15_avgpet:1,n15_avgpet_brain:1,n_bin:1,n_condit:1,n_in_column:1,n_in_sampl:1,n_in_set:1,n_inmask:1,naiv:1,name1:1,name2:1,name:[1,2],names_t1:[1,2],namesfield:1,nan:[1,2],nancorr:[],naninsert:1,nanmean:1,nanremov:1,nanstd:1,nanvec:1,natur:1,nbasi:[1,2],nbin:[1,2],nboot:1,ncl:1,nclass:1,ncond:1,ncondit:1,ndim:1,nearest:1,nearest_dist:[],necessari:[1,2],necessarili:1,need:[1,2],needless:1,neg:1,neg_colormap:1,negcl:1,negcm:1,negcolor:1,negneg:1,negpo:1,neighbor:1,neighbour:1,neither:[1,2],nest:1,net:1,nets:[],network:1,neural:1,neuroimag:1,neurolog:1,neurosynth:[],nevent:1,new_fil:1,new_sampr:1,new_str:1,new_struct:1,new_var:1,new_voxs:1,newax:1,newcl:1,newcolormap:1,newdat:1,newfig:1,newroot:1,newvx:[],next:[1,2],nfold:1,nheaderrow:1,nibabel:[],nice:1,nichol:1,nifit:1,nifti:[1,2],nigra:1,nih:1,nii:[1,2],nimag:1,nimg:1,nimh:1,niter:1,nkx:1,nlcon:1,nlevel:1,nmb:1,nmd:1,nmdsfig1d:1,nmdsfig:1,nmdsfig_fil:1,nmdsfig_legend:1,nmdsfig_output:1,nmdsfig_tool:1,nneed:1,nnhe:[1,2],nnmfscore:[1,2],no_preproc:1,no_surfac:1,noampscal:1,nobin:1,noblob:1,noboot:1,nodb:1,node:1,nodelet:[1,2],nodisplai:1,nodraw:1,nofig:1,nofigur:1,nofil:1,nofuzzi:1,nograph:1,nohead:[1,2],nohtw:1,noind:1,noint:1,nointercept:1,nois:[1,2],noise_arp:1,noisemodel:1,noisevar:1,noisevector:1,nolin:1,nolink:[1,2],noll:1,nomin:1,nomontag:1,non:[1,2],none:1,nonempti:1,noninfring:[],nonlin_fit:1,nonlin_param_mod_brain:1,nonlin_param_modul:1,nonlin_parammod_predfun:1,nonlinear:1,nonneg:1,nonnoc_v6_109subjmap_mean:1,nonorm:1,nonormfit:1,nonparametr:1,nonrobust:1,nonstationari:1,nonzero:1,noopt:1,noorthview:1,nooutlin:1,nooutput:1,nooverlap:1,nopcr:1,noplot:[1,2],nopoint:1,nopreproc:1,noprint:1,nor:[1,2],norder:[1,2],noremov:1,noreshap:1,noresidu:1,noresult:[1,2],noreview:[1,2],norm:[1,2],norm_check:[1,2],norm_mask:1,norm_vs_templ:[1,2],normal:[1,2],normaldir:1,normalizedrank:[],norminv:1,normrnd:1,nosep:1,noslic:1,nosmooth:1,nostar:1,notabl:1,notch:1,note:[1,2],notebook:[],notext:1,notfil:1,noth:[1,2],notic:[],notif:[1,2],notx_p05:1,noundershoot:1,nout:1,nov:[],novel_stimuli_run1:[1,2],novel_stimuli_run2:[1,2],noverbos:[1,2],noviolin:1,now:[1,2],nperm:1,nps_by_studi:1,nps_thresh:1,nps_thresh_smooth:1,nrep:1,nresampl:1,nrm:1,nrun:1,nscalped_f:[1,2],nscalped_ft1:[1,2],nscan:1,nsess:[1,2],nsf2:[],nsf:[1,2],nsub:1,nsubj:1,nsubject:1,nterm:1,ntest:1,nth:[1,2],ntotalprocess:1,ntotalvox:1,ntrial:1,ntrim:1,nuclei:1,nucleu:1,nuisanc:[1,2],nuisance_cov:[1,2],nuisance_cov_estim:1,nuisancex:[1,2],nullmax:1,nullmaxt:1,num2str:[1,2],num:1,num_disdaq_vol:1,num_imag:[1,2],num_outli:1,num_vols_per_run:1,num_vox:1,number:[1,2],numc:1,numclust:1,numcompon:1,numer:1,numfram:1,numgen:1,numpi:[],numpiec:1,nums_from_text:1,numsecond:1,numvox:1,nvar:1,nvol:1,nvols_per_run:1,nvox:1,nvoxel:[1,2],nx1:1,nxvxt:1,obj1:1,obj2:1,obj:[1,2],obj_out:1,object:[],object_nam:1,objecthandl:1,objfun:1,objfun_ga:1,objhan:1,obji:1,objtyp:1,obs_dist:1,observ:[1,2],obsk:1,obsolet:1,obtain:1,obviat:[],obvious:[],occas:[1,2],occur:[1,2],oct:[1,2],odd:1,oddbal:[1,2],off:[1,2],offic:1,offset:1,ofilenames_or_v:1,often:[1,2],ofun:1,ohi:[],ohni:[],old:1,old_str:1,old_struct:1,old_var:1,older:1,oliv:1,ols_z_0001:1,omax:1,omin:1,omit:[1,2],ommit:1,omnibu:1,onc:[1,2],one_sample_t_test:[1,2],onecolor:1,oneinsert:1,onerow:1,onli:[1,2],onlin:[],onlycon:[1,2],onlyresult:[1,2],ono:[],onset:[1,2],onsets2:1,onsets2delta:[1,2],onsets2dx:1,onsets2fmridesign:1,onsets2parametric_mod_x:1,onsettim:[],onsp:1,onto:1,ooc:1,ooc_indic:1,ooc_vector:1,opaqu:1,open:1,opengl:1,oper:[1,2],opi:1,oppos:1,opt:1,optim:[1,2],optimize_rand_search:[1,2],optimizedesign11:[],optimizega:[1,2],optimizega_epoch:[1,2],option:[1,2],optional_input:1,optional_output:1,options_structur:1,optout:1,optstr:1,orang:1,orcutt:1,order:[1,2],ordinari:1,org:1,organ:1,orient:[],orig_cluster_indx:[],orig_sampr:1,orighz:1,origin:[1,2],ortho:[1,2],orthogon:[1,2],orthview:[1,2],orthviews_multiple_obj:1,osvd:1,osx:1,other:[0,1,2],other_output:1,other_output_cv:1,other_output_cv_descrip:1,other_output_descrip:1,otherwis:1,ouput:1,our:1,out:[1,2],out_nam:1,outcel:1,outcom:1,outcome_dat:1,outcome_method:1,outdata:1,outimagelabel:1,outlier:[1,2],outliers_rmssd:1,outlin:1,outlinecol:1,outlinecolor:1,outlinewidth:1,outnam:1,outp:1,outpoint:1,output:[1,2],output_basedir:[1,2],output_directori:[1,2],output_nam:1,outputdir:1,outputfil:1,outputnam:[1,2],outsid:[1,2],outside_rang:[],outtyp:[],ov_mat:1,over:[1,2],overal:[1,2],overall_sw:1,overlai:1,overlaid:[1,2],overlap:1,overlap_29_aug:1,overlapdat:1,overlayimagenam:1,overrid:1,overview:[1,2],overwrit:[1,2],overwritten:1,ovl:1,ovlcolor:1,ovlp:1,own:1,oxford:1,oxn:[1,2],p_cols_of_interest:1,p_obs_act_given_class:1,p_omnibu:1,p_sig:1,p_vs_c_heat:1,pa0_given_t:1,pa1_given_not_t:1,pa1_given_t:1,packag:[0,1],pad1:1,pad2:1,pad3:1,pad4:1,pad5:1,pad6:1,pad:1,padwithnan:1,page:[0,1,2],pagesetup:1,pain:1,pain_meta_fmridisplay_example_sagitt:1,pair:[1,2],pairwis:1,pairwise_diff:1,pakhomov:1,pallidu:1,panda:[],pane:1,panel:1,paper:1,paragraph:[],parallel:[1,2],param:[1,2],paramet:[1,2],parametr:1,parametric_singleregressor:1,parametric_standard:1,params_obj:1,parasaggit:1,parasagitt:1,parcel:1,parcel_cl:1,parcel_cl_avg:1,parcel_cl_nmd:1,parcel_cl_nmds_plot:1,parcel_clust:1,parcel_complete_set:1,parcel_imag:1,parcel_images_output:1,parcellation_info:1,parcellation_info_tor_mask_try1:1,parcellation_tool:[],parfor:1,park:1,parmet:1,parpool:1,pars:1,parse_char_to_cel:1,parse_edat_txt:1,part:[1,2],partial:1,partialr:1,particip:1,particular:1,particularli:1,partit:1,partition_variables_indevel:1,pass:[1,2],patch:1,patch_handl:1,path:[0,1,2],pathtomaskfil:[1,2],patient_id:1,patt:1,patter:[1,2],pattern:[1,2],pattern_exp_valu:1,pattern_express:1,paus:[1,2],pbn:1,pca:[1,2],pca_imag:1,pcacov:1,pcare:1,pci:1,pcitarget:1,pcl:1,pclustlev:1,pcr:1,pdf:[1,2],pdist1:1,pdist:1,peak:[1,2],peak_coordin:[],peakeq:1,pearson:1,peform:1,pemut:1,penal:1,penalti:1,per:[1,2],perc:[1,2],percent:1,percent_sig_imag:1,percentag:1,percentchang:1,percentil:1,percvarf:1,percvarp:1,perform:[1,2],period:[1,2],perm:1,permindx:1,permiss:[1,2],permit:[],permsign:1,permtest:1,permut:1,permute_setupperm:1,permute_signtest:1,person:[],perspect:1,pet:1,peter:1,pexp1:1,pexp:1,pfile:1,phase:1,phi:1,phil:1,php:1,physical_pain:1,physio:[1,2],physiolog:[1,2],pick:[1,2],pick_atlas_pal_larg:1,pid:1,pie:1,piec:1,piecewis:1,pimg1:1,pimg:1,pine:1,pinputnam:1,pinv:1,pip:[],pixel:1,pkx:1,place:[1,2],placebo:1,plai:1,plane:1,platt:1,platt_scal:1,plausibl:1,player:1,pleas:[1,2],plegend:1,plot3:1,plot3d:1,plot:[1,2],plot_correl:1,plot_correlation_samefig:1,plot_current_orthviews_coord:1,plot_dx_hrf:1,plot_dx_hrfs_indiff:1,plot_ellips:1,plot_error:1,plot_horizontal_lin:1,plot_hrf_model_fit:1,plot_ideal_deconv5:1,plot_joint_hist_contour:[1,2],plot_matrix_col:1,plot_model_fit:1,plot_points_on_slic:1,plot_var:1,plot_vertical_lin:1,plotal:1,plotdesign:1,plotfig:[1,2],plotflag:1,plothistogram:1,plotlinehor:1,plotmat:1,plotmethod:1,plotout:1,plotst:1,plotstr:1,plotsummari:1,plottitl:1,plssquash:1,plu:1,plugin:1,ply:[],pm_val:1,pmean:1,pmod:1,png:[1,2],point:[1,2],pointcolor:1,pointloc:1,pointsiz:1,polar:1,poli:1,polin:1,polygon:1,polyphas:1,pool:1,poorli:1,pop:1,popul:1,popular:1,portion:[],pos_colormap:1,poscl:1,poscm:1,poscolor:1,posit:[1,2],posneg:1,posneg_separ:1,pospo:1,possibl:1,post:1,posterior:1,potenti:[1,2],pout:[1,2],pow0:1,pow2:1,pow3:1,pow:1,power:[1,2],power_from_vari:[1,2],power_loss:[1,2],powerloss:[1,2],powerpoint:1,powloss:[1,2],pows1:1,pows2:1,ppm:1,ppv:1,practic:[1,2],prctile:1,pre:1,prealloc:[],precis:1,preclud:[1,2],pred:1,pred_outcome_r:1,predfun:1,predict:1,predict_test_suit:1,predictor:[1,2],prednam:1,predrang:1,prefer:[1,2],prefix:[1,2],preliminari:1,prep:[],prepar:1,prepend:[1,2],preproc:[1,2],preprocess:[1,2],preprocessed_dat:1,preprochandl:1,preproci:1,preprocx:1,prescrib:1,present:1,preserv:1,press:1,presum:[1,2],pretti:[1,2],prevent:1,previou:1,previous:1,prim_p:1,primari:1,primarili:[1,2],primary_p:1,princeton:1,princip:[1,2],principl:1,princomp:1,princomp_largedata:1,print:[1,2],print_matrix:1,print_summari:1,printfil:[1,2],printout:[1,2],prior:1,priori:1,priors_pt:1,privat:1,prob:1,probabl:[1,2],probe:[1,2],problem:[1,2],procedur:1,process:[1,2],produc:[1,2],product:1,profil:1,program:[1,2],programm:1,progress:1,progressbar:1,project:1,prompt:1,promt:1,prop1:1,prop:1,prop_correct:1,prop_correct_by_class:1,propcol:1,proper:1,properli:1,properti:1,property1:1,property2:1,propertynam:1,propertyvalu:1,propnam:1,proport:[1,2],propval1:1,propval2:1,prospect:1,prospect_optimize_design:1,prospect_organ:1,protect:[1,2],provid:1,prplot:1,prplot_multilevel:1,prune:1,pruneclust:1,prunese:1,psdx:1,pseudo:[1,2],pseudocolor:1,pseudoinvers:1,pso:1,pspm:1,psyc7215:[1,2],psyc_7215_fall_2010:[],psychol:1,pt_given_act0:1,pt_given_act1:1,ptask:1,ptaskcutoff:1,pthandl:1,pthresh:[1,2],ptsd:1,pub:1,publish:[1,2],publish_scn_session_spike_id:[1,2],publishedproject:1,purpl:1,purpos:[0,1,2],push:[1,2],pushbutton:1,put:[0,1,2],putamen:1,pval:[1,2],pvalthreshold:1,pvalu:[1,2],pvoxellev:1,pwd:[1,2],pxred:1,pypi:[],python:[],qc_imag:1,qc_yaml_repositori:[],qchist:[1,2],quadrat:1,qualiti:[1,2],quantifi:[],queri:[],question:1,quick:1,quickest:[],quickstart:1,quit:1,quot:1,r2009a:[1,2],r2012a:1,r2z:1,r_corr:1,racin:1,radial:1,radian:1,radiu:1,raid1:1,rais:[1,2],rand:1,randn:[1,2],random:[1,2],randomli:[1,2],randperm:1,randsampl:1,rang:[1,2],rank:1,rankdata:1,rankvoxel:1,rapca:1,raph:1,rapid:1,rarun:[1,2],rate:[1,2],rater:1,rather:1,ratio:1,ravol:[1,2],raw:[1,2],raw_data:1,rawvarf:1,rawvarp:1,rbf:1,rci:1,rcrit:1,rdiff:1,rdiff_p:1,rdiff_zscor:1,reach:1,read:[1,2],read_databas:1,read_database2:1,read_edat_output_2008:1,read_excel:1,read_from_excel:1,read_from_fil:1,read_hdr:[1,2],read_physio_data:1,read_t:[],readi:1,readim2:1,reading_data:1,readm:[1,2],real:[1,2],realclass:1,realign:[1,2],realign_fil:[1,2],realli:[1,2],reason:1,rebuild:1,rebuild_volinfo_from_dat:1,recalcul:1,receiv:1,recommend:1,recomput:1,recon:1,reconstruct:1,reconstruct_imag:1,record:[1,2],rect:1,rectangular:1,recurs:1,red:[1,2],redistribut:[],redon:[],reduc:[1,2],reduced_dimension:1,reducedi:1,reduct:1,redund:[],ref:[1,2],refactor:[],refer:[1,2],reflect:[1,2],refz:1,reg:[1,2],regardless:1,regex:1,regexprep:1,region2imagevec2tmp:1,region2imagevec:1,region2struct:1,region:[],region_idx:1,region_obj:1,regionmask:1,regist:[1,2],regress:[1,2],regress_best_subsets_ga:1,regression_output:1,regressor:[1,2],regs_per_sess:[1,2],regsofinterest:1,regular:[1,2],regularli:1,reject:1,rel:[1,2],relat:[1,2],relationship:1,releas:1,relev:1,reliabl:1,reload:1,remain:1,remap:1,remcomput:1,remi:1,remi_mean_t2:1,reml:1,remov:[1,2],remove_disdaq_vol:1,remove_empti:1,remove_mean_flag:1,removeblob:1,removed_imag:1,removed_voxel:1,removeintercept:[],removelin:1,removepoint:1,removevari:[],renam:1,rename_lowercas:1,rename_uppercas:1,render:1,render_blob:1,rendercluster_ui4:1,rendercluster_ui:1,reorder:1,repars:[],reparse_contigu:1,reparse_contingu:1,repeat:1,repeated_ancova:1,repetit:[1,2],repitit:1,replac:[1,2],replace_basis_set:1,replace_empti:1,replic:1,repmat:1,report:[1,2],report_predictor:1,reportmod_model:1,repositori:1,repres:[1,2],represent:1,request:1,requir:[1,2],res1:1,res2:1,res3:1,res4:1,res4d:1,res5:1,resampl:[1,2],resample_scnlab:1,resample_spac:1,resample_tim:1,resample_to_image_spac:1,resampled_dat:1,rescal:1,resel:1,reserv:1,reset:[1,2],reset_spmcfg:[1,2],reshap:1,resi_:1,resid:1,resid_full_model:1,residscan:[1,2],residu:[1,2],residual_imag:1,reslic:[1,2],reslice_img:[1,2],resliced_mask:1,reslicedimg:1,reslicethi:1,resm:1,resolut:[1,2],resort:1,resp:1,respect:[1,2],respir:[1,2],respons:[1,2],resss:1,rest:[1,2],restim:[],restrict:1,result:[1,2],results_imag:1,results_obj:1,results_searchlight_1_p_dat11:1,results_searchlight_1_r_dat11:1,results_searchlight_2_acc_dat11:1,results_searchlight_2_p_dat11:1,results_searchlight_2_se_dat11:1,results_searchlight_2_thr_dat11:1,results_searchlight_:1,resum:1,retain:1,retriev:1,return_beta:1,revers:1,reverse_mask:1,revis:[],revisit:1,revx:1,rewrot:[],rfx0009:1,rfx0011:1,rfx0013:1,rfx0015:1,rfx0017:1,rfx:1,rgb:1,rgblist:1,rgex:1,rho:[1,2],rid:1,ridg:1,right:[1,2],rightsurfac:1,rint:1,risk:1,rmanova2:1,rms_successive_diff:[1,2],rms_successive_diffs_inhomogen:[1,2],rmsd:1,rmse:1,rng:[],rngarrai:1,rnnhet1spgr_seg1:[],rnnhet1spgr_seg3:[],rob:1,rob_p_0001:1,rob_pmap_ful:1,rob_tmap_0001:1,rob_tmap_0001_filt_t_3:1,rob_tmap_0002:1,rob_tmap_0002_filt_t_3:1,rob_tmap_0003:1,rob_tmap_filtered_0001:1,rob_tmap_filtered_0002:1,robfit:[1,2],robfit_group_level_directori:[1,2],robfit_results_batch:[1,2],robfitdir:[1,2],robjhyndman:1,robust0001:[1,2],robust0001_poscl:1,robust0002_poscl:1,robust0003_poscl:1,robust:[1,2],robust_opt:1,robust_reg_pool:1,robust_results_act_plus_corr:1,robust_results_batch:[1,2],robust_results_batch_script:1,robust_results_threshold:1,robustcsvread:1,robustfit:1,roc:1,roc_boot:1,roc_calc:1,roc_plot:1,rocha:1,rocout:1,roi:[1,2],roi_contour_map:1,roi_drawing_tool:[],roi_group1:1,roi_imag:1,roi_mask:1,roi_method:1,roi_midbrain:1,roi_prob:1,roi_stn:1,roi_val:1,roimean:1,roipattern:1,roll:1,root:[1,2],rotat:[1,2],rotate_to_pca:1,rotatefactor:1,roughli:[1,2],round:1,rousseeuw:1,routin:1,row1:1,row2:1,row3:1,row:[1,2],rows_to_skip:1,rpv:1,rs2_8vs2_placebocp:1,rs2meta:1,rscalped_avg152t1_graymatter_smooth:1,rscoreplu:1,rset:1,rsj:1,rsquar:1,rsquare_calc:1,rsquare_multiple_regions_multilevel:1,rsync:[],rt_fit_brain:1,rtcenter:1,rtf:[1,2],rule:1,run03:1,run1:1,run2:1,run:[1,2],run_01:[1,2],run_col:1,runc:[1,2],ruzic:[1,2],ruzicl:[1,2],rvm:1,rvrv:1,s01:[1,2],s2between_ol:1,s2full:1,s2red:1,s_fdata:1,s_i:1,sad:1,sag:1,sagg:1,sagg_slice_movi:1,saggit:1,sagitt:1,sai:1,salientmap:1,same:[1,2],samefig:1,sampl:[1,2],sample_canlab_dataset_experiment_level:1,sample_canlab_dataset_subject:1,sample_data_nsf_studi:[],sampleto:1,sampr:[1,2],samprat:1,satterthwait:1,sattherwait:1,satur:1,save:[1,2],save_dir:1,save_plot:1,save_weight:1,savea:1,savebootweight:1,savedir:1,savedotfig:1,savefil:1,savefilenam:1,saveflag:1,savenam:1,saveplot:1,savestr:1,sc1:1,sc2:1,sca:1,scalar:[1,2],scale:[1,2],scale_imgs_by_csf:[1,2],scaledtranspar:1,scalefactor:1,scall:[],scalp:1,scalped_avg152t1_graymatt:[1,2],scalped_avg152t1_graymatter_smooth:1,scan:[1,2],scan_get_fil:1,scanadjust:1,scanlab:1,scanner:1,scannum:1,scans_per_sess:1,scansperrun:1,scanspersess:1,scatter:[1,2],scattermatrix:1,scatterplot:1,schafer:[],schema:1,schulznewcorn_regressor_demograph:1,scienc:1,scikit:[],scipi:[],scl_slope:1,scn:1,scn_component_rsquar:[1,2],scn_core_support:1,scn_export_papersetup:1,scn_get_datetim:1,scn_map_imag:1,scn_mat_conform:1,scn_resample_voxel_s:1,scn_session_spike_id:[1,2],scn_spm_choose_hpfilt:[1,2],scn_spm_design_check:[1,2],scn_spm_get_events_of_interest:[1,2],scn_standard_color:1,scn_stats_helper_funct:1,scn_write_plan:1,scnalpha:1,scnlab_filter_fmri_data:1,scnlab_norm_check3:[1,2],scnlab_norm_check:[1,2],scnlab_outlier_id:1,scnlab_pca_check1:[1,2],scnmontag:1,scolor:1,score:[1,2],scott:[],scree:1,screen:[1,2],script:[1,2],sdat:1,sdt:1,sdt_a:1,sdx:1,se_within:1,search:[0,1,2],search_struct:1,search_struct_field:1,searchlight:1,searchlight_applymask:1,searchlight_applymask_col:1,searchlight_correl:1,searchlight_disti:1,searchlight_dream:1,searchlight_dream_test:1,searchlight_results_:1,searchlight_saveresult:1,seber:1,sec2sec:[],sec2tr:[],sec:1,second:[1,2],second_level:[1,2],secondli:1,section:[1,2],see:[1,2],seed1:1,seed2:1,seed:1,seeddat:1,seedoth:1,seedself:1,seem:[1,2],seg3:[1,2],seg:1,segment:1,select:[1,2],select_one_imag:1,selective_averag:1,selective_average_group:1,selective_average_interactive_view_init:1,selectivity_cutoff:1,self:1,sell:[],sen:1,send:[1,2],sensibl:1,sensit:1,sep:1,separ:[1,2],sepplot:1,sept:1,sepval:1,sequenc:1,sergei:1,seri:[1,2],serial:1,seriesnam:1,serv:0,sesq:1,sess:1,sess_imag:[1,2],session:[1,2],session_global_percent_chang:1,session_global_z:1,session_multipl:1,session_outli:1,set:[0,1,2],setappdata:1,setcolor:1,setnam:1,sets_by_var:1,setstr:1,setup:[1,2],setupion:1,sever:1,sfir:1,sfwhm:1,shade:1,shall:[],shan:1,shape:1,share:1,sheet:[1,2],sheetnam:1,shell:1,shepardplot:1,shift:1,shift_bi:1,shift_correl:1,shift_sign:1,shift_step:1,shiftbi:1,shiftedi:1,shiftstep:1,shiftval:1,shim:[1,2],shorten:[],shorter:1,shorttitl:1,should:[0,1,2],show:[1,2],shown:1,shrankag:1,shrink:1,shrinkag:1,shrout:1,shtml:1,shuffl:[],si1:1,si2:1,sid:[],side:1,sig2:1,sig2b:[1,2],sig2wi:[1,2],sig2within:[1,2],sig:1,sigm:1,sigma2:1,sigma:1,sigmat2:1,sigmat:1,sigmat_uncorrect:1,sigmatavg:1,sigmatdif:1,sigmatneg:1,sigmoid:1,sign:[1,2],signal:[1,2],signal_hemispheric_asymmetri:[1,2],signal_rms_asymmetri:[1,2],signatur:1,signfic:1,signifi:1,signific:[1,2],significantli:1,signperm:1,signtest:1,signtest_matrix:1,sigonli:1,sigt:1,sihouett:1,sii:1,silhouett:1,silke_senders_xyz_coordin:1,silli:[],sim:[1,2],similar:[1,2],simpi:[],simpl:[1,2],simpler:1,simplest:1,simpli:[1,2],simplifi:1,simul:[1,2],sin:1,sinc:1,singl:[1,2],single_subj_t1:1,single_trial_estim:1,singleinterv:1,sinica:[1,2],size:[1,2],sizecutoff:1,sizeof_hdr:1,sizescal:1,sizethr:1,sizethresh:1,skew:[1,2],skill:1,skip:[1,2],sl_size:1,slack:1,slant:1,slate:1,slice10_timeseri:1,slice:1,slice_data:1,slice_mm:1,slice_mm_coord:1,slice_num:1,slice_rang:1,slice_vox_coord:1,slicedist:1,slicei:1,sliceindex:1,sliceinfo:1,sliceno:1,slicenumb:1,sliceord:1,slices_fig_h:1,slices_per_row:1,slicespac:1,slightli:1,slope:1,slope_p:1,slope_t:1,slow:[1,2],slower:[1,2],small:1,smaller:[1,2],smap:1,smapth:1,smartstart:1,smax:1,smin:1,smooth:[1,2],smooth_3d:1,smooth_mm:1,smooth_timeseri:1,smoothest:1,smoothlen:1,snpm0002_varsm_cov_clust:1,snpm:[1,2],snpmt_filter:1,snr:[1,2],snr_hemispheric_asymmetri:[1,2],snr_inhomogen:[1,2],snr_inhomogeneity95:[1,2],snr_rms_asymmetri:[1,2],soak:[1,2],sobol:1,social:1,soften:1,softer:1,softmax:1,softwar:[1,2],soldier:1,sole:1,solid:1,solut:[1,2],soluton:1,some:[1,2],someon:[],someth:1,sometim:1,somewhat:1,somresult:1,sorri:1,sort:[1,2],sort_by_vif:[1,2],sort_image_filenam:1,sort_nat:1,sourc:1,source_imag:1,source_time_interv:1,source_tr:1,space:[1,2],spaceto:1,span:1,spars:[1,2],spatial:[1,2],spatial_contrast:1,spatial_smooth_fwhm:1,spatio:1,spatiotemp_biomark:1,spearman:1,spec:1,special:1,specif:[1,2],specifi:[1,2],specularexpon:1,specularstrength:1,speechtask:1,speed:1,speedi:1,spersess:[1,2],spey:1,spgr:1,sphere:1,sphere_mask:1,sphere_roi_tool:1,spheric:1,spider:1,spike:[1,2],spikecorrect:1,spikesperimg:[1,2],spiral:1,spline:[1,2],spline_hrf_basi:1,splinedetrend:1,splinetrim:1,split:1,splitcolor:1,spm2:1,spm2_ami:1,spm2_hy:1,spm2canlab_dataset:1,spm5:[1,2],spm8:[1,2],spm8_colin27t1_seg:1,spm99:1,spm99b:1,spm:[1,2],spm_analysi:1,spm_check_registr:1,spm_cluster:1,spm_create_vol:1,spm_default:1,spm_desmtx:1,spm_est_smooth:1,spm_fcutil:1,spm_filter:1,spm_general_hist:[1,2],spm_get:[1,2],spm_get_bf:1,spm_get_data:1,spm_getspm:1,spm_hplength:1,spm_hrf:[1,2],spm_imag:1,spm_imcalc:1,spm_imcalc_ui:1,spm_img:1,spm_list_fil:1,spm_mat2batchinput:1,spm_max:[],spm_mireg:[1,2],spm_orthview:1,spm_orthviews_change_colormap:1,spm_orthviews_hotcool_colormap:1,spm_orthviews_name_axi:1,spm_orthviews_showposit:1,spm_orthviews_white_background:1,spm_ov_black2whit:1,spm_randfx:1,spm_read_vol:1,spm_reml:1,spm_results_dir:[1,2],spm_rfx_hist:[1,2],spm_select:1,spm_sp:1,spm_spm:1,spm_spm_bay:1,spm_spm_ui:1,spm_subject_level_directori:[1,2],spm_t2z:1,spm_vol:1,spm_write_plan:1,spm_write_vol:1,spmcfg:[1,2],spmp:[1,2],spmt:[1,2],spmt_0004:1,spmt_:[1,2],spmt_filtered_0002:1,spot:1,springer:1,sprintf:[1,2],sqrt:1,squar:[1,2],squareform:1,squeez:1,sre:[1,2],sres_n:[1,2],sse:1,stabl:1,stack:1,stage:[1,2],stand:[0,1,2],standard:[1,2],standard_stimuli_run1:[1,2],standard_stimuli_run2:[1,2],standardis:1,standardmrilight:1,star:1,start:[1,2],start_field:1,startend:1,startp:1,startslic:1,startval:1,stat:[1,2],stat_subset:1,state:1,statimg:1,stationari:1,statist:[1,2],statistic_imag:[],statistica:[1,2],statistics_imag:1,statistics_tool:[],stats1:1,stats2:1,stats_imag:1,stats_image_obj:1,stats_img:1,stats_md:1,stats_other_output_cv:1,stats_plot:1,stats_regress:1,stats_scatterplot:[1,2],stats_within:1,statsg:1,statsimg:1,std:[1,2],std_t1:[1,2],stderr:1,stdev:1,ste:1,stebeta:1,stedat:1,steiger:1,step:[1,2],stepbi:1,stephan:[],stepsiz:1,stepwis:1,stepwise_tor:1,sterr:1,stick:[1,2],still:1,stim:1,stimlength:1,stimlist:1,stimul:1,stimuli:1,stimulu:1,stmarker1:1,stn:1,stochast:[1,2],stop:1,store:1,stotalv:[1,2],stouffer:1,str2mat:[1,2],str:1,straightforward:[],strang:[1,2],stratifi:1,strcat:1,strength:1,stress:1,strfind:1,strict:1,strictli:1,string:[1,2],stringent:1,strip_git_dir:[],strip_path_dir:1,strip_svn_dir:1,strmatch:[],strongli:1,strrep_recurs:1,strtok:1,struct2yaml:[1,2],struct:[1,2],struct_strrep:1,structur:[1,2],strucur:1,strutur:1,studi:[1,2],study1:1,study_img:1,studybyroi:1,studybyset:1,studyroot:[1,2],stuff:1,style:1,styliz:1,sub:[1,2],subcl:1,subclust:1,subcluster_montag:1,subclusters_from_local_max:1,subclusters_to_chang:1,subcol:1,subcort:1,subdir:[1,2],subdirectori:[1,2],subdivid:1,subdivide_by_atla:1,subdivide_by_local_max:1,subfield:1,subfigur:1,subfold:1,subfunct:[1,2],subgroup:1,subj1:1,subj:[1,2],subj_level:1,subjdata:[1,2],subjdir:1,subjec:[],subject:[1,2],subject_avg:1,subject_dir:[1,2],subject_group:1,subject_level:1,subject_list:[1,2],subject_st:1,subjectdata:[1,2],subjectfil:1,subjectfilelist:1,subjectnumb:1,subjid:1,subjk:[1,2],subjlabel:[1,2],subjm:[1,2],subjnam:[1,2],subjtyp:1,subjw:[1,2],sublicens:[],submit:[1,2],submodul:[],subplot:[1,2],subplotcol:1,subplotrow:1,subregion:1,subsequ:[1,2],subset:[1,2],subset_indicator_matrix:1,subspac:1,substanti:[1,2],substantia:1,substructur:1,subthalam:1,subtract:1,success:1,suchman:1,suface_handl:1,suffici:1,suffix:1,sum:[1,2],sum_valid_ant:1,summar:1,summari:1,summaris:1,summer:1,sun:[1,2],superced:1,superior:1,support:[1,2],suppress:[1,2],supra:1,suprathreshold:1,supress:1,sure:1,surf:1,surf_handl:1,surf_plot_tor:1,surf_single_subj_t1_grai:1,surfac:1,surface_cutawai:1,surface_handl:1,surround:1,surv:1,survei:1,suspect:1,svd:[],svm:1,svn:1,svr:1,swap:1,swd:1,sweenei:1,switchnext:1,sxyz:1,sxzy:1,symbol:1,symmetr:1,synchron:1,syntax:1,synthesi:[],system:1,systemat:1,t1_face_exemplar:1,t_diff:1,t_intercept:1,t_test2:1,tab:1,table_group:1,table_spati:1,tag:1,tagnam:1,tail:[1,2],take:[1,2],taken:1,tal2mni:1,tal2vox:1,tal:1,tal_info:1,talairach:1,talairach_clust:1,talairach_info:1,talaraich_info:[],talariach:1,talarich:1,taldata:1,tanh:1,tar:1,target:1,target_space_imag:[1,2],target_stimuli_run1:[1,2],target_stimuli_run2:[1,2],target_time_interv:1,target_tr:1,targethz:1,targetsp:1,targetu:1,task:[1,2],taskbeta:[1,2],taskclass:1,taskimag:[1,2],taskprob:1,tau:1,taua:1,taub:1,tcl:1,tcrit:1,tdim:1,techniqu:1,teidx:1,tell:1,temp:1,templat:[1,2],tempor:[1,2],temporari:1,tend:[1,2],term:1,test:[],test_qc:[1,2],test_result:1,test_run1_pca2:1,test_run1_pca:1,test_statist:1,testclustnew:1,testvec:1,text:[1,2],textcod:1,textcol:1,textfield:1,textlab:[1,2],textlabel:1,textprefix:1,textual:1,tfontsiz:1,tha:1,thal:1,thalamu:1,than:[1,2],thei:[1,2],them:[0,1,2],theoret:1,theori:1,therefor:1,theta0:[1,2],theta:[1,2],theworkspac:1,thi:[],thick:1,thing:[1,2],think:1,third:1,thoroughli:1,those:[1,2],though:[1,2],thr:1,three:1,thresh:1,thresh_t:1,thresh_typ:1,threshold:[1,2],threshold_img:1,threshold_spm_t:1,threshold_typ:1,threshtyp:1,through:1,thu:1,tibrishani:[],tic:1,tick:1,tickdir:1,tiff:[1,2],time:[1,2],time_varying_estim:1,timebin:1,timecours:1,timecourse_plot:1,timedispers:1,timeeseri:1,timeonli:1,timepoint:1,timer:1,timeseri:[1,2],timeseries2:[1,2],timeseries3:[1,2],timeseries:[1,2],timeseries_btwngroups_plot:1,timeseries_extract_slic:1,timeseries_mc_pvalu:1,timeseries_prplot:1,timg:1,timseri:1,tinv:1,tip:1,tipangl:1,tissu:1,titl:[],titlestr:1,tlab2:[1,2],tmod:1,tmp2:1,tmp:1,tmp_file:1,tname:1,to_dir:1,toc:1,toeplitz:1,togeth:[1,2],toggl:1,toi:1,tom:[],too:1,tool:[],toolbox:[],top:[1,2],topmm:1,tor:[1,2],tor_3d:1,tor_docu:[1,2],tor_documentscurrentexperimentsintext2mp:[],tor_documentscurrentexperimentsintext2resultsmodel1:[],tor_extract_roi:1,tor_fig:1,tor_fill_steplot:1,tor_ga:1,tor_get_physio:[1,2],tor_ihb_getclust:1,tor_ihb_getclusterset:1,tor_ihb_talspac:1,tor_ihb_updateclustertalvoxs:1,tor_make_deconv_mtx3:1,tor_make_deconv_mtx:1,tor_polar_plot:1,tor_script:1,tor_scriptsvoistatutilitynanmean:1,tor_spm_mean_ui:1,torlab:1,tort:[],tot:1,total:[1,2],totmat:1,tour:1,toward:[1,2],tpr:1,tr2sec:[],tr2tr:[],trace:1,track:[1,2],tractabl:1,trail:1,train:1,tran:1,transform:[1,2],transform_coordin:1,transit:1,translat:[1,2],transpar:1,transparency_chang:1,transparent_surfac:1,transpos:[],transse:1,transvalu:1,travers:1,treat:[1,2],treatment:1,tree:1,trend:1,tri:1,trial:1,trial_amp_img:1,trial_height:1,trialdat:1,trials_col:1,tridx:1,tril:1,trilinear:1,trim:[1,2],trim_mask:1,trimt:[1,2],trinar:1,tripl:1,triplet:1,troubl:1,trrv:1,trrvrv:1,true_class:1,true_p:1,true_weight:1,truep:1,truer:1,trueval:1,truncat:1,trust:1,try4:1,tscv:1,tscvexampl:1,tsq:1,tsquar:1,tsquaretest:1,tstat:1,tsu:1,tsufigur:1,ttest2:1,ttest2_printout:1,ttest3d:1,ttest:1,tthr:1,tthresh:1,ttopeakeq:1,ttst:1,ttype:1,tukei:1,tune:[1,2],turn:[1,2],tutori:[],tval:1,twice:[1,2],twidmap:1,two:[1,2],twochoic:1,twotail:1,txt1:1,txt2:1,txt3:1,txt:[1,2],txtlab:[1,2],typ:1,type:[1,2],typic:[1,2],ucl:1,ufp:1,ugiu:[],uhio:[],uib:[],uibiu:[],uibu:[],uibui:[],uibuibui:[],uicontrol:1,uimenu:1,uint8:1,um_face_hous:[1,2],unc:1,uncorrecetd:1,uncorrect:1,under:1,underlai:1,underlyl:1,underscor:1,undershoot:1,understand:[],unequ:1,unfilt:1,uni:1,uniformli:1,unimod:1,union:1,uniqu:[1,2],unique_id:[1,2],unique_mask_valu:1,unit:[1,2],univari:1,univers:1,unix:1,unknown:1,unless:[1,2],unlik:[1,2],unprocess:1,unrel:[1,2],unspecifi:1,unthreshold:1,until:1,unus:1,unweight:1,unweighted_study_data:1,uonseteq:1,updat:[1,2],upload:[1,2],upon:1,upper:1,upsampl:1,upsamplefactor:1,url:[],usabl:[1,2],usag:[],use_rob_stat:1,use_same_rang:1,use_spm_filt:1,useexist:1,useful:1,useparallel:1,user:[1,2],usfactor:1,usual:[1,2],util:1,uva:1,uvb:1,val:1,valdiat:1,valid:[1,2],validatori:1,valu:[1,2],valuestoevalu:1,var_prc:1,var_prctil:1,varargin:[1,2],varargout:1,vardecomp:1,varexp:1,vari:1,variabl:[1,2],variable_input:1,varianbl:1,varianc:[1,2],variant:1,variat:[1,2],variou:1,varnam:1,varname1:1,varname2:1,varz:1,varzm:1,vascular_group_sum:1,vascular_mask_:1,vasquez:1,vbeta:1,vcon:1,vec:1,vector:[1,2],vectorized_voldata:1,vectorlen:1,veloc:1,vent_thr:1,ventricl:[1,2],verbos:[1,2],verboven:1,verbstr:1,veri:[1,2],verid:1,verlag:1,versa:1,version:[1,2],versu:1,vert:1,vertcat:[],vertex:1,vertic:1,vertici:1,vetor:1,via:[1,2],vice:1,video:1,view:[1,2],viewabl:[1,2],viewer:[],vif:[1,2],vif_thresh:[1,2],vimg:1,vinc:1,violin:1,violinplot:1,virtu:[1,2],visibl:[1,2],visit:1,visual:1,visualis:1,visualization_funct:[],vmpfc:1,vmpfc_mask_neurosynth:1,voinfo:1,voistat:[],vol0:[1,2],vol:1,voldat3d:1,voldata:1,volinfo2:1,volinfo:1,volinfo_mapto:1,vols_ad:1,vols_run0001:1,vols_run0002:1,volum:[1,2],vout:1,vox:1,voxel2mask:1,voxel2mm:1,voxel:[1,2],voxel_data_seri:[],voxels2mask:1,voxelsize_mm:1,voxelwise_pthresh:[1,2],voxsiz:1,vresm:1,vspm:1,vtal:1,vto:1,w1map:1,w2map:1,w3map:1,w_time:1,wager:[1,2],wager_jneuro2011_placebo_mask:[],wagerlab:1,wai:[1,2],waitbar:1,wanat_fil:[1,2],wani:[],wani_pi:1,want:[1,2],warm:1,warn:[1,2],warp:[1,2],warranti:[],wasbad:1,wb_hewma_shel:1,wb_multisubject_correl_hr_correct:1,wb_multisubject_ewma:1,wc1:1,wc2:1,wcard:[1,2],web:1,websit:1,weight:[1,2],weight_obj:1,weight_opt:1,weighted_corrcoef:1,weighted_glmfit:1,weighted_reg:1,weighted_reg_old2:1,weighted_reg_oldglmfit_old:1,weights_nsf_grouppred_cvpcr:1,weights_nsf_grouppred_cvpcr_fdr05:1,weights_nsf_grouppred_cvpcr_fdr05_smoothed_fwhm05:1,weird:1,welcom:[],well:[1,2],wellcom:1,were:1,wh_cluster:1,wh_col:[1,2],wh_inmask:1,wh_keep1:1,wh_keep2:1,wh_keep:1,wh_level:1,wh_merg:1,wh_montag:1,wh_ob:1,wh_of_interest:1,wh_predictor:1,wh_slice:1,wh_subj:1,wh_surfac:1,wh_var:1,what:1,whatev:1,whcl:1,when:[0,1,2],whenev:1,where:[1,2],wherea:1,wherein:[1,2],wherev:[1,2],whether:[1,2],whfold:1,which:[1,2],which_cl:1,which_montag:1,whichc:1,whichcon:[1,2],whichcut:1,whichorth:1,whichslic:1,white:1,white_matt:1,whiten:1,whnum:1,who:1,whole:[1,2],whole_brain_ewma:1,whole_brain_filt:1,whole_brain_fir:1,whom:[],whose:1,whout:1,whpvals_for_boot:1,whsave:1,why:[1,2],wichern:1,wicon:1,wide:1,width:[1,2],wiki:1,wildcard:[1,2],wilei:1,william:1,winam:1,window:1,windowbuttonupfcn:1,windsor:1,windsorizevoxel:1,wise:[1,2],wish:1,within:[1,2],without:[1,2],wm_mask:1,wm_thr:1,won:[1,2],woo:[],word:[1,2],work:[1,2],worker:[],workspac:[1,2],world:1,worslei:1,worstcat:1,worth:1,would:[1,2],wouldn:1,wrapper:[1,2],write:[1,2],write_residu:1,write_text:1,writefil:1,writerscoreplu:1,written:1,wrong:1,wt1:[1,2],wtotalv:[1,2],wvol:1,www:1,wyzx:1,x1o:1,x_in_sec:1,x_resid:1,xaxi:1,xbar:1,xbf:1,xbf_hire:1,xbin:[1,2],xcon:1,xcoord:1,xcorr:1,xcorr_multisubject:1,xcorr_xy_multisubject:1,xcx:1,xdata:[1,2],xdim:1,xfontsiz:1,xhair:1,xhairson:1,xinm:1,xkx:1,xlabel:1,xlabelsl:1,xlevel:1,xlim:[1,2],xlsx:1,xmax:[1,2],xmin:1,xmm:1,xname:1,xposit:1,xred:1,xsde:1,xsdm:1,xsize:1,xspm:1,xtal:1,xtest:1,xtick:1,xticklabel:1,xtrain:1,xtxi:1,xval:1,xval_cross_classifi:1,xval_lasso_brain:1,xval_lasso_brain_permutation_histogram:1,xval_regression_multisubject:1,xvals2:1,xvarnam:1,xvec:1,xvi:1,xvol:1,xxx:1,xycatplot:1,xyplot:1,xytspanelplot:1,xyz1:1,xyz2:1,xyz2clust:1,xyz3:1,xyz:1,xyz_coord:1,xyz_coord_struct:1,xyz_mm_po:1,xyzlist:1,xyzmm:1,xyzmmcent:1,xyzmmspher:1,xyzpt:1,xyztyp:1,xyzvoxspher:1,xyzw:1,y1avg:1,y2avg:1,y_axi:1,y_g1:1,y_g2:1,y_i:1,y_name:1,y_pval:1,y_pvals_thresh:1,y_resid:1,y_star:1,y_total_pv:1,yadj:1,yaml:[1,2],yaml_tmp:[1,2],yamlfilemethod:[1,2],yamlfilenam:[1,2],yaxi:1,ybase:1,ybin:[1,2],ycoord:1,ycut_mm:1,ydata:[1,2],ydim:1,yellow:1,yeo:1,yesno:1,yess:1,yet:[1,2],yfit:1,yfla:1,yfontsiz:1,yhat:1,yhi:1,yield:1,ylabel:1,ylim:1,ymax:[1,2],ymd:1,ymean:1,ymin:1,yminortick:1,ymm:1,yname:1,yoffset:1,yoni:[],you:[1,2],your:[1,2],yourself:1,yout:1,yperc:1,ypop:1,ypred:1,yrgb:1,ysize:1,ytal:1,ytick:1,yticklabel:1,ytmp:1,ytrain:1,yval:1,yvals2:1,yvarnam:1,yvec:1,yyyy_mm_dd:1,yzx:1,z_i:1,zbuffer:1,zcoord:1,zcor:1,zdiff:1,zdim:1,zdt:1,zero:[1,2],zero_cross:1,zeroinsert:1,zhang:1,zil:1,zip:1,ziu:1,zmax:1,zmax_act:1,zmax_negact:1,zmin:1,zmin_act:1,zmin_negact:1,zmm:1,zname:1,zoom:1,zpop:1,zscore:1,zscoreimag:1,zscorevoxel:1,zsize:1,ztal:1},titles:["CanlabCore documentation home","Object Oriented Tools","Toolboxes"],titleterms:{"new":[],aspectlib:[],canlab_canonical_brain:[],canlab_dataset:1,canlabcor:0,cluster_contig_region_tool:1,configur:[],content:[],data_extract:1,data_processing_tool:1,diagnost:[1,2],document:0,filename_tool:1,fmri_data:1,fmri_mask_imag:1,fmri_model:1,fmri_timeseri:[],fmridisplai:1,fmridisplay_helper_funct:1,glm_batch_tool:[1,2],hewma_util:1,home:0,hrf_est_toolbox2:[1,2],image_computation_tool:1,image_space_tool:1,image_threshold:1,image_vector:1,index_image_manip_tool:1,indic:0,instal:[],manual:[],misc_util:1,miscellan:1,model_building_tool:1,object:1,optimizedesign11:[1,2],orient:1,parcellation_tool:1,peak_coordin:1,python:[],region:1,roi_drawing_tool:1,statistic_imag:1,statistics_tool:1,tabl:0,test:[],thi:[],titl:[],tool:1,toolbox:[1,2],usag:[],visualization_funct:1,wager_jneuro2011_placebo_mask:[],welcom:[]}}) \ No newline at end of file From aa2a34b44f1577bb206e7905973bfc923913cff0 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 15:56:54 -0500 Subject: [PATCH 7/9] [DATALAD RUNCMD] Boostrap typo === Do not change lines below === { "chain": [], "cmd": "git-sedi Boostrap Bootstrap", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- CanlabCore/Statistics_tools/roc_plot.m | 2 +- .../scn_stats_helper_functions.m | 2 +- .../test_pattern_on_kragel_2018_n270_data.m | 2 +- .../_build/doctrees/misc_tools.doctree | Bin 4585123 -> 4585127 bytes .../_build/doctrees/moduleslist.doctree | Bin 6558858 -> 6558862 bytes .../SPHINX_DOCS/_build/html/misc_tools.html | 2 +- .../SPHINX_DOCS/_build/html/moduleslist.html | 2 +- docs_sphinx_old/misc_tools.html | 2 +- docs_sphinx_old/moduleslist.html | 2 +- 9 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CanlabCore/Statistics_tools/roc_plot.m b/CanlabCore/Statistics_tools/roc_plot.m index 08a2001f..4d0cc090 100644 --- a/CanlabCore/Statistics_tools/roc_plot.m +++ b/CanlabCore/Statistics_tools/roc_plot.m @@ -595,7 +595,7 @@ ROC.line_handle = han; end -% Boostrap, if asked for +% Bootstrap, if asked for % ------------------------------------------------------------------------- if doboot diff --git a/CanlabCore/Statistics_tools/scn_stats_helper_functions.m b/CanlabCore/Statistics_tools/scn_stats_helper_functions.m index e032d410..6762bd6f 100644 --- a/CanlabCore/Statistics_tools/scn_stats_helper_functions.m +++ b/CanlabCore/Statistics_tools/scn_stats_helper_functions.m @@ -16,7 +16,7 @@ % unweighted; with AR model if specified as last input % % **'boot':** -% Boostrapping of GLS +% Bootstrapping of GLS % % **'signperm':** % Sign permutation test for intercept of GLS diff --git a/CanlabCore/web_repository_tools/test_pattern_on_kragel_2018_n270_data.m b/CanlabCore/web_repository_tools/test_pattern_on_kragel_2018_n270_data.m index 937b44d7..862b9de4 100644 --- a/CanlabCore/web_repository_tools/test_pattern_on_kragel_2018_n270_data.m +++ b/CanlabCore/web_repository_tools/test_pattern_on_kragel_2018_n270_data.m @@ -163,7 +163,7 @@ iscog=iscog(~wh_isnan); isemo=isemo(~wh_isnan); -% Boostrap confidence intervals for effect size +% Bootstrap confidence intervals for effect size fprintf('Bootstrapping CIs\n') bci_pain = bootci(5000, @cohens_d_2sample, vector_data, ispain); diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/misc_tools.doctree index eb805daa7c08940aae1bcb8a664478a3c50b9d85..d8a79e8c840043e082e22d05508916226a711936 100644 GIT binary patch delta 234 zcmWN?IZgs$0EXer2#9PhAcBH|g9^X0gR-~*av1w*Nv3!c6Ei&ru;2nD)6QM2xdUJE z#8@NFItez|B*_-rq)4;FE*bX7vd;mB z0ES`4SfjD`-h1r5Mx8(Q-n-F-xQGND5C;SoF9*u@gO`owy!bdVGq>@HD8TiR0ivZc=kV_u<6i`SJ#gtG=8Rb+^Nfp)9P)i;4 zG|)&B&9u-;8|`$^NsunO>7kcC`Wax5A%+=YlrhGcV3H}O2{FSgbJ$-d5w#pI5j6q7 z-??}0BC*)b?REUuH9_z1!Tea36aRiRPnPpyyGFx0uM4`UOS-Hpx~glst{b|kTe__~ ex~qG-uLpXlM|!L$da7r7t`{27OV4(%!XN()LUjTF delta 292 zcmWN=$4&xa0EN-WU<1cC3ijRsd++TZ#|Bstds(wKl9;&o5)&83ory1??v3*fK9%<* z=k@!|deJ8e2w)MUkRpmHp_C9|%CIS?f=a5W#-WB7~@PZ$rRJfFv}eCEU?HD%dD`<8tXsiGv|Nhj2-fS?~N09 z|9dcx&tBfBs~hU+rf%uB?&z*2HKl3Y(|tYALp{=C&FG0{^;FOFTrc!euk>1P^w#(C HckahOY^H2& diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html index fcc3e36f..58c4e938 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/misc_tools.html @@ -13668,7 +13668,7 @@

    Statistics_toolsBoostrapping of GLS

    +

    Bootstrapping of GLS

    ‘signperm’:

    Sign permutation test for intercept of GLS

    diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html index a1f8e689..0c32077c 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html @@ -23572,7 +23572,7 @@

    Statistics_toolsBoostrapping of GLS

    +

    Bootstrapping of GLS

    ‘signperm’:

    Sign permutation test for intercept of GLS

    diff --git a/docs_sphinx_old/misc_tools.html b/docs_sphinx_old/misc_tools.html index fcc3e36f..58c4e938 100644 --- a/docs_sphinx_old/misc_tools.html +++ b/docs_sphinx_old/misc_tools.html @@ -13668,7 +13668,7 @@

    Statistics_toolsBoostrapping of GLS

    +

    Bootstrapping of GLS

    ‘signperm’:

    Sign permutation test for intercept of GLS

    diff --git a/docs_sphinx_old/moduleslist.html b/docs_sphinx_old/moduleslist.html index a1f8e689..0c32077c 100644 --- a/docs_sphinx_old/moduleslist.html +++ b/docs_sphinx_old/moduleslist.html @@ -23572,7 +23572,7 @@

    Statistics_toolsBoostrapping of GLS

    +

    Bootstrapping of GLS

    ‘signperm’:

    Sign permutation test for intercept of GLS

    From 85c1828d1030a0970e8e1bc0a03baeb42df2888e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 16:00:13 -0500 Subject: [PATCH 8/9] [DATALAD RUNCMD] decription typo === Do not change lines below === { "chain": [], "cmd": "git-sedi decription description", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- .../Visualization_functions/riverplot/riverplot_draw_layer.m | 2 +- .../Visualization_functions/riverplot/riverplot_draw_ribbon.m | 2 +- .../Visualization_functions/riverplot/riverplot_layer_names.m | 2 +- CanlabCore/Visualization_functions/riverplot/riverplot_ribbon.m | 2 +- .../Visualization_functions/riverplot/riverplot_ribbon_matrix.m | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CanlabCore/Visualization_functions/riverplot/riverplot_draw_layer.m b/CanlabCore/Visualization_functions/riverplot/riverplot_draw_layer.m index 70192bf4..f328199e 100644 --- a/CanlabCore/Visualization_functions/riverplot/riverplot_draw_layer.m +++ b/CanlabCore/Visualization_functions/riverplot/riverplot_draw_layer.m @@ -33,7 +33,7 @@ % :Inputs: % % **rect1:** -% Structure with handles and decription of imrect class object, +% Structure with handles and description of imrect class object, % created with riverplot_rect.m. This is always the LEFTMOST % rect of the pair. % diff --git a/CanlabCore/Visualization_functions/riverplot/riverplot_draw_ribbon.m b/CanlabCore/Visualization_functions/riverplot/riverplot_draw_ribbon.m index a0e8a7f5..f7c4724c 100644 --- a/CanlabCore/Visualization_functions/riverplot/riverplot_draw_ribbon.m +++ b/CanlabCore/Visualization_functions/riverplot/riverplot_draw_ribbon.m @@ -33,7 +33,7 @@ % :Inputs: % % **rect1:** -% Structure with handles and decription of imrect class object, +% Structure with handles and description of imrect class object, % created with riverplot_rect.m. This is always the LEFTMOST % rect of the pair. % diff --git a/CanlabCore/Visualization_functions/riverplot/riverplot_layer_names.m b/CanlabCore/Visualization_functions/riverplot/riverplot_layer_names.m index 32e04a44..0e221778 100644 --- a/CanlabCore/Visualization_functions/riverplot/riverplot_layer_names.m +++ b/CanlabCore/Visualization_functions/riverplot/riverplot_layer_names.m @@ -32,7 +32,7 @@ % :Inputs: % % **layerstruct:** -% Structure with handles and decription of imrect class objects for +% Structure with handles and description of imrect class objects for % a layer. Layerstruct is created with riverplot_draw_layer. % % **layernames:** diff --git a/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon.m b/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon.m index 32e5577d..28e1ebcb 100644 --- a/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon.m +++ b/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon.m @@ -33,7 +33,7 @@ % :Inputs: % % **rect1:** -% Structure with handles and decription of imrect class object, +% Structure with handles and description of imrect class object, % created with riverplot_rect.m. This is always the LEFTMOST % rect of the pair. % diff --git a/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon_matrix.m b/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon_matrix.m index a566ff44..a99aac2b 100644 --- a/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon_matrix.m +++ b/CanlabCore/Visualization_functions/riverplot/riverplot_ribbon_matrix.m @@ -34,7 +34,7 @@ % :Inputs: % % **layer1:** -% Cell array of structures with handles and decription of imrect class objects, +% Cell array of structures with handles and description of imrect class objects, % created with riverplot_draw_layer.m. Each object is a rectangular % graphic that denotes a spatial brain pattern or mask created with riverplot_rect.m. % layer1 is the LEFTMOST layer in the plot. From 02aa46c051ed3017f3abb0159521a509e1f2df54 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2023 16:00:41 -0500 Subject: [PATCH 9/9] [DATALAD RUNCMD] indepenent typo === Do not change lines below === { "chain": [], "cmd": "git-sedi indepenent independent", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- CanlabCore/diagnostics/displayme.m | 2 +- .../_build/doctrees/moduleslist.doctree | Bin 6558862 -> 6558864 bytes .../_build/doctrees/toolboxes.doctree | Bin 585483 -> 585485 bytes .../SPHINX_DOCS/_build/html/moduleslist.html | 2 +- .../SPHINX_DOCS/_build/html/toolboxes.html | 2 +- docs_sphinx_old/moduleslist.html | 2 +- docs_sphinx_old/toolboxes.html | 2 +- 7 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CanlabCore/diagnostics/displayme.m b/CanlabCore/diagnostics/displayme.m index 1dd4156e..2ea88d7e 100644 --- a/CanlabCore/diagnostics/displayme.m +++ b/CanlabCore/diagnostics/displayme.m @@ -1,6 +1,6 @@ function [subjM,Mtotalv] = displayme(mm,txtlab,tlab2) % Used in img_hist2 - included as internal function there. -% this function is for indepenent re-display after img_hist2 is finished. +% this function is for independent re-display after img_hist2 is finished. % % :Usage: % :: diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree b/docs_sphinx_old/SPHINX_DOCS/_build/doctrees/moduleslist.doctree index 4323597bee8299a8c46efcd90272802f20fb4537..c64a012bca2a19678f0532ff15aa8c0c90ee252f 100644 GIT binary patch delta 388 zcmWm6M@|9(07l^qBZ`VRj5=0qU_~ro?;XVsDk_4Ca}MI-Pu!W=c?R|*T#N(wTzq-E z_fz#u4_`9mlc^^8)vOi;)T%bME2s{I)G140+3HfadTLI?GTeH@a!Q8b{?fVcitV5m zedxyk1~G&PhB1OsjA0y6#4v$LOko-`m_;1_?*!(tfJH1Ji4>Nxf>o?x9UIuh7Phg2 zUF=~W2ROtLj&Xuhq;ZCGWN?8?T;UowxWyf^$l)Fjctjpgc*Y9~ctsHd(0Eh8YDUrBcT$Fh%q)^H{&l(MhMCC#5;(ty%r=4f8cTO+H-e>XqmS5|u z<@$gvhn#Y$LvDH0DX+TJEuVViSFieHC?He)8qnak^<%Vu4Xf(-q{~g)v@nEWj39^* zMlptQOkfgIn8pldF^739AdCnWv4sD36f1}!j#aE-9SJ0{ffUl%#1^)(gI(-l9|t(Z z5sqVm?vY(bT2PPo$XGZj2w)NDeXWG5HkTWGZ3=?F)I+W0Wte_FE5UR FO8`k?60QIM delta 56 zcmeCZr`&x{xnT>VnCEmKFGij1&Yp}MjO{=s5HkTWGZ3=?F)I+W0Wte_A1{uBO8^p5 B5%&N9 diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html index 0c32077c..55bc44cb 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/moduleslist.html @@ -7277,7 +7277,7 @@

    Cluster_contig_region_tools diagnostics.displayme(mm, txtlab, tlab2)

    Used in img_hist2 - included as internal function there. -this function is for indepenent re-display after img_hist2 is finished.

    +this function is for independent re-display after img_hist2 is finished.

    diff --git a/docs_sphinx_old/SPHINX_DOCS/_build/html/toolboxes.html b/docs_sphinx_old/SPHINX_DOCS/_build/html/toolboxes.html index 574a6637..c7576cd4 100644 --- a/docs_sphinx_old/SPHINX_DOCS/_build/html/toolboxes.html +++ b/docs_sphinx_old/SPHINX_DOCS/_build/html/toolboxes.html @@ -616,7 +616,7 @@

    Toolboxes diagnostics.displayme(mm, txtlab, tlab2)

    Used in img_hist2 - included as internal function there. -this function is for indepenent re-display after img_hist2 is finished.

    +this function is for independent re-display after img_hist2 is finished.

    diff --git a/docs_sphinx_old/moduleslist.html b/docs_sphinx_old/moduleslist.html index 0c32077c..55bc44cb 100644 --- a/docs_sphinx_old/moduleslist.html +++ b/docs_sphinx_old/moduleslist.html @@ -7277,7 +7277,7 @@

    Cluster_contig_region_tools diagnostics.displayme(mm, txtlab, tlab2)

    Used in img_hist2 - included as internal function there. -this function is for indepenent re-display after img_hist2 is finished.

    +this function is for independent re-display after img_hist2 is finished.

    diff --git a/docs_sphinx_old/toolboxes.html b/docs_sphinx_old/toolboxes.html index 574a6637..c7576cd4 100644 --- a/docs_sphinx_old/toolboxes.html +++ b/docs_sphinx_old/toolboxes.html @@ -616,7 +616,7 @@

    Toolboxes diagnostics.displayme(mm, txtlab, tlab2)

    Used in img_hist2 - included as internal function there. -this function is for indepenent re-display after img_hist2 is finished.

    +this function is for independent re-display after img_hist2 is finished.