├── .gitattributes ├── .gitignore ├── LICENSE ├── LeGUI ├── @file_array │ ├── Contents.m │ ├── cat.m │ ├── ctranspose.m │ ├── disp.m │ ├── display.m │ ├── double.m │ ├── end.m │ ├── fieldnames.m │ ├── file_array.m │ ├── full.m │ ├── horzcat.m │ ├── initialise.m │ ├── isnan.m │ ├── length.m │ ├── loadobj.m │ ├── ndims.m │ ├── numel.m │ ├── numeric.m │ ├── permute.m │ ├── private │ │ ├── datatypes.m │ │ ├── dim.m │ │ ├── dtype.m │ │ ├── file2mat.m │ │ ├── file2mat.mexa64 │ │ ├── file2mat.mexmaci64 │ │ ├── file2mat.mexw32 │ │ ├── file2mat.mexw64 │ │ ├── fname.m │ │ ├── init.m │ │ ├── init.mexa64 │ │ ├── init.mexmaci64 │ │ ├── init.mexw32 │ │ ├── init.mexw64 │ │ ├── mat2file.m │ │ ├── mat2file.mexa64 │ │ ├── mat2file.mexmaci64 │ │ ├── mat2file.mexw32 │ │ ├── mat2file.mexw64 │ │ ├── mystruct.m │ │ ├── offset.m │ │ ├── permission.m │ │ ├── resize_scales.m │ │ ├── scl_inter.m │ │ └── scl_slope.m │ ├── reshape.m │ ├── size.m │ ├── subsasgn.m │ ├── subsref.m │ ├── transpose.m │ └── vertcat.m ├── @gifti │ ├── Contents.m │ ├── display.m │ ├── export.m │ ├── fieldnames.m │ ├── gifti.m │ ├── isfield.m │ ├── plot.m │ ├── private │ │ ├── base64decode.m │ │ ├── base64encode.m │ │ ├── getdict.m │ │ ├── isintent.m │ │ ├── mvtk_read.m │ │ ├── mvtk_write.m │ │ ├── mz3_read.m │ │ ├── mz3_write.m │ │ ├── obj_read.m │ │ ├── off_read.m │ │ ├── ply_read.m │ │ ├── read_freesurfer_file.m │ │ ├── read_gifti_file.m │ │ ├── stl_read.m │ │ ├── zstream.m │ │ ├── zstream.mexa64 │ │ ├── zstream.mexmaci64 │ │ └── zstream.mexw64 │ ├── save.m │ ├── saveas.m │ ├── struct.m │ ├── subsasgn.m │ └── subsref.m ├── @meeg │ ├── Contents.m │ ├── badchannels.m │ ├── badsamples.m │ ├── badtrials.m │ ├── blank.m │ ├── chanlabels.m │ ├── chantype.m │ ├── check.m │ ├── clone.m │ ├── conditions.m │ ├── condlist.m │ ├── coor2D.m │ ├── copy.m │ ├── delete.m │ ├── display.m │ ├── events.m │ ├── fiducials.m │ ├── fieldnames.m │ ├── fname.m │ ├── fnamedat.m │ ├── frequencies.m │ ├── fsample.m │ ├── ftraw.m │ ├── fttimelock.m │ ├── fullfile.m │ ├── getfield.m │ ├── history.m │ ├── indchannel.m │ ├── indchantype.m │ ├── indfrequency.m │ ├── indsample.m │ ├── indtrial.m │ ├── isempty.m │ ├── isequal.m │ ├── isfield.m │ ├── islinked.m │ ├── link.m │ ├── meeg.m │ ├── modality.m │ ├── montage.m │ ├── move.m │ ├── nchannels.m │ ├── nconditions.m │ ├── nfrequencies.m │ ├── nsamples.m │ ├── ntrials.m │ ├── path.m │ ├── private │ │ ├── checkmeeg.m │ │ ├── fixpnt.m │ │ ├── getset.m │ │ ├── match_str.m │ │ └── warning_flexible.m │ ├── reload.m │ ├── repl.m │ ├── rmdata.m │ ├── rmfield.m │ ├── save.m │ ├── sconfounds.m │ ├── selectchannels.m │ ├── selectdata.m │ ├── sensors.m │ ├── size.m │ ├── subsasgn.m │ ├── subsref.m │ ├── time.m │ ├── timeonset.m │ ├── transformtype.m │ ├── trialonset.m │ ├── trialtag.m │ ├── type.m │ ├── units.m │ └── unlink.m ├── @nifti │ ├── Contents.m │ ├── cifti.m │ ├── create.m │ ├── disp.m │ ├── display.m │ ├── fieldnames.m │ ├── nifti.m │ ├── private │ │ ├── M2Q.m │ │ ├── Q2M.m │ │ ├── decode_qform0.m │ │ ├── empty_hdr.m │ │ ├── encode_qform0.m │ │ ├── findindict.m │ │ ├── getdict.m │ │ ├── mayo2nifti1.m │ │ ├── mayostruc.m │ │ ├── nifti1struc.m │ │ ├── nifti2struc.m │ │ ├── nifti_stats.m │ │ ├── niftistruc.m │ │ ├── read_extras.m │ │ ├── read_hdr.m │ │ ├── read_hdr_raw.m │ │ ├── write_extras.m │ │ └── write_hdr_raw.m │ ├── structn.m │ ├── subsasgn.m │ └── subsref.m ├── @slover │ ├── add_blobs.m │ ├── add_matrix.m │ ├── add_spm.m │ ├── display.m │ ├── fill_defaults.m │ ├── get_pos.m │ ├── paint.m │ ├── point_vals.m │ ├── print_fig.m │ ├── private │ │ ├── mars_struct.m │ │ ├── pr_basic_ui.m │ │ ├── pr_blobs2vol.m │ │ ├── pr_get_spm_results.m │ │ ├── pr_getcmap.m │ │ ├── pr_matrix2vol.m │ │ ├── pr_scaletocmap.m │ │ └── pr_volmaxmin.m │ ├── slover.m │ ├── subsasgn.m │ └── subsref.m ├── @xmltree │ ├── Contents.m │ ├── add.m │ ├── attributes.m │ ├── branch.m │ ├── char.m │ ├── children.m │ ├── convert.m │ ├── copy.m │ ├── delete.m │ ├── display.m │ ├── editor.m │ ├── find.m │ ├── flush.m │ ├── get.m │ ├── getfilename.m │ ├── isfield.m │ ├── length.m │ ├── move.m │ ├── parent.m │ ├── private │ │ ├── xml_findstr.m │ │ ├── xml_findstr.mexa64 │ │ ├── xml_findstr.mexmaci64 │ │ ├── xml_findstr.mexw32 │ │ ├── xml_findstr.mexw64 │ │ └── xml_parser.m │ ├── root.m │ ├── save.m │ ├── set.m │ ├── setfilename.m │ ├── view.m │ └── xmltree.m ├── Contents.m ├── Contents.txt ├── LeGUI.mlapp ├── LeGUI_Linux_Build.m ├── LeGUI_Mac_Build.m ├── LeGUI_Win_Build.m ├── LeG_ACPCGUI.mlapp ├── LeG_AssignElectrodesGUI.mlapp ├── LeG_AtlasMenu.mlapp ├── LeG_CoregMenu.mlapp ├── LeG_DetectMenu.mlapp ├── LeG_GrayWhiteMenu.mlapp ├── LeG_ParseDICOMGUI.mlapp ├── LeG_ResizeMenu.mlapp ├── LeG_SegMenu.mlapp ├── LeG_alignElecs.m ├── LeG_autoElecs.m ├── LeG_calcGrayWhite.m ├── LeG_determine_griddim.m ├── LeG_dialogCellstrHelper.m ├── LeG_findSubFiles.m ├── LeG_genRotMat.m ├── LeG_genSurfaces.m ├── LeG_getnicedialoglocation.m ├── LeG_intriangulation.m ├── LeG_lastDir.m ├── LeG_lastPath.m ├── LeG_match_str.m ├── LeG_msgbox.m ├── LeG_parfor_wait.m ├── LeG_removeSubSurf.m ├── LeG_rotateImg2Standard.m ├── LeG_setdefaultbutton.m ├── LeG_vox2atlaslabel.m ├── LeG_warp_hermes2010.m ├── ReadMe.txt ├── atlases │ ├── Anat.nii │ ├── Anat.txt │ ├── AnatMacro.nii │ └── AnatMacro.txt ├── build │ └── atlases │ │ ├── Anat.nii │ │ ├── Anat.txt │ │ ├── AnatMacro.nii │ │ └── AnatMacro.txt ├── config │ ├── spm_cfg.m │ ├── spm_cfg_bbox.m │ ├── spm_cfg_bms_map.m │ ├── spm_cfg_cat.m │ ├── spm_cfg_cdir.m │ ├── spm_cfg_checkreg.m │ ├── spm_cfg_con.m │ ├── spm_cfg_coreg.m │ ├── spm_cfg_dcm_bms.m │ ├── spm_cfg_dcm_est.m │ ├── spm_cfg_dcm_fmri.m │ ├── spm_cfg_dcm_meeg.m │ ├── spm_cfg_dcm_peb.m │ ├── spm_cfg_deface.m │ ├── spm_cfg_deformations.m │ ├── spm_cfg_dicom.m │ ├── spm_cfg_disp.m │ ├── spm_cfg_ecat.m │ ├── spm_cfg_eeg.m │ ├── spm_cfg_eeg_artefact.m │ ├── spm_cfg_eeg_average.m │ ├── spm_cfg_eeg_avgfreq.m │ ├── spm_cfg_eeg_avgtime.m │ ├── spm_cfg_eeg_bc.m │ ├── spm_cfg_eeg_cfc.m │ ├── spm_cfg_eeg_channel_selector.m │ ├── spm_cfg_eeg_collapse_timefreq.m │ ├── spm_cfg_eeg_combineplanar.m │ ├── spm_cfg_eeg_contrast.m │ ├── spm_cfg_eeg_convert.m │ ├── spm_cfg_eeg_convert2images.m │ ├── spm_cfg_eeg_copy.m │ ├── spm_cfg_eeg_correct_sensor_data.m │ ├── spm_cfg_eeg_crop.m │ ├── spm_cfg_eeg_delete.m │ ├── spm_cfg_eeg_dipfit.m │ ├── spm_cfg_eeg_downsample.m │ ├── spm_cfg_eeg_epochs.m │ ├── spm_cfg_eeg_filter.m │ ├── spm_cfg_eeg_firstlevel.m │ ├── spm_cfg_eeg_fuse.m │ ├── spm_cfg_eeg_grandmean.m │ ├── spm_cfg_eeg_inv_coregshift.m │ ├── spm_cfg_eeg_inv_extract.m │ ├── spm_cfg_eeg_inv_headmodel.m │ ├── spm_cfg_eeg_inv_headmodelhelmet.m │ ├── spm_cfg_eeg_inv_invert.m │ ├── spm_cfg_eeg_inv_invertiter.m │ ├── spm_cfg_eeg_inv_mix.m │ ├── spm_cfg_eeg_inv_results.m │ ├── spm_cfg_eeg_inv_sensorshift.m │ ├── spm_cfg_eeg_inv_simulate.m │ ├── spm_cfg_eeg_merge.m │ ├── spm_cfg_eeg_momentfit.m │ ├── spm_cfg_eeg_montage.m │ ├── spm_cfg_eeg_prepare.m │ ├── spm_cfg_eeg_reduce.m │ ├── spm_cfg_eeg_regressors.m │ ├── spm_cfg_eeg_remove_bad_trials.m │ ├── spm_cfg_eeg_review.m │ ├── spm_cfg_eeg_spatial_confounds.m │ ├── spm_cfg_eeg_tf.m │ ├── spm_cfg_eeg_tf_rescale.m │ ├── spm_cfg_exp_frames.m │ ├── spm_cfg_factorial_design.m │ ├── spm_cfg_fmri_data.m │ ├── spm_cfg_fmri_design.m │ ├── spm_cfg_fmri_est.m │ ├── spm_cfg_fmri_spec.m │ ├── spm_cfg_imcalc.m │ ├── spm_cfg_md.m │ ├── spm_cfg_mfx.m │ ├── spm_cfg_minc.m │ ├── spm_cfg_model_review.m │ ├── spm_cfg_norm.m │ ├── spm_cfg_opm_create.m │ ├── spm_cfg_opm_epoch_trigger.m │ ├── spm_cfg_opm_synth_gradiometer.m │ ├── spm_cfg_parrec.m │ ├── spm_cfg_ppi.m │ ├── spm_cfg_preproc8.m │ ├── spm_cfg_print.m │ ├── spm_cfg_realign.m │ ├── spm_cfg_realignunwarp.m │ ├── spm_cfg_render.m │ ├── spm_cfg_reorient.m │ ├── spm_cfg_results.m │ ├── spm_cfg_sendmail.m │ ├── spm_cfg_setlevel.m │ ├── spm_cfg_smooth.m │ ├── spm_cfg_split.m │ ├── spm_cfg_st.m │ ├── spm_cfg_static_tools.m │ ├── spm_cfg_tissue_volumes.m │ ├── spm_cfg_voi.m │ ├── spm_rewrite_job.m │ ├── spm_run_bms_map.m │ ├── spm_run_bms_vis.m │ ├── spm_run_con.m │ ├── spm_run_coreg.m │ ├── spm_run_dcm_bms.m │ ├── spm_run_dcm_bms_vis.m │ ├── spm_run_dicom.m │ ├── spm_run_factorial_design.m │ ├── spm_run_fmri_data.m │ ├── spm_run_fmri_est.m │ ├── spm_run_fmri_spec.m │ ├── spm_run_norm.m │ ├── spm_run_realign.m │ ├── spm_run_realignunwarp.m │ ├── spm_run_reorient.m │ ├── spm_run_results.m │ ├── spm_run_setlevel.m │ ├── spm_run_smooth.m │ ├── spm_run_st.m │ ├── spm_run_tissue_volumes.m │ └── spm_run_voi.m ├── icons │ ├── ACPCGUIExample.png │ ├── AssignElectrodesExample.png │ ├── export_dropdown_icon.png │ ├── export_icon.png │ ├── pan_icon.png │ ├── pointer_crosshairs.png │ ├── pointer_crosshairs2.png │ ├── pointer_hand.png │ ├── pointer_hand2.png │ ├── pointer_hand3.png │ ├── restoreview_icon.png │ ├── rotate_icon.png │ ├── zoomin_icon.png │ └── zoomout_icon.png ├── matlabbatch │ ├── @cfg_branch │ │ ├── all_leafs.m │ │ ├── all_set.m │ │ ├── all_set_item.m │ │ ├── cfg2jobsubs.m │ │ ├── cfg2struct.m │ │ ├── cfg_branch.m │ │ ├── checksubs_job.m │ │ ├── clearval.m │ │ ├── expand.m │ │ ├── fillvals.m │ │ ├── harvest.m │ │ ├── initialise.m │ │ ├── list.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── setval.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── showmydoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ ├── subsasgn_job.m │ │ ├── subsref.m │ │ ├── subsref_job.m │ │ ├── tag2cfgsubs.m │ │ ├── tagnames.m │ │ ├── treepart.m │ │ ├── update_deps.m │ │ └── val2def.m │ ├── @cfg_choice │ │ ├── all_leafs.m │ │ ├── all_set.m │ │ ├── all_set_item.m │ │ ├── cfg2jobsubs.m │ │ ├── cfg2struct.m │ │ ├── cfg_choice.m │ │ ├── checksubs_job.m │ │ ├── clearval.m │ │ ├── expand.m │ │ ├── fieldnames.m │ │ ├── fillvals.m │ │ ├── gencode_item.m │ │ ├── harvest.m │ │ ├── initialise.m │ │ ├── list.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── setval.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── showmydoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ ├── subsasgn_job.m │ │ ├── subsref.m │ │ ├── subsref_job.m │ │ ├── tag2cfgsubs.m │ │ ├── tagnames.m │ │ ├── treepart.m │ │ ├── update_deps.m │ │ └── val2def.m │ ├── @cfg_const │ │ ├── cfg2struct.m │ │ ├── cfg_const.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ └── subsref.m │ ├── @cfg_dep │ │ ├── add_to_source.m │ │ ├── cfg_dep.m │ │ ├── ctranspose.m │ │ ├── del_in_source.m │ │ ├── del_in_target.m │ │ ├── dep_add.m │ │ ├── disp.m │ │ ├── display.m │ │ ├── gencode.m │ │ ├── isequalsource.m │ │ ├── isequaltarget.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsref.m │ │ └── update_deps.m │ ├── @cfg_entry │ │ ├── cfg2struct.m │ │ ├── cfg_entry.m │ │ ├── fieldnames.m │ │ ├── gencode_item.m │ │ ├── match.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ └── subsref.m │ ├── @cfg_exbranch │ │ ├── cfg2struct.m │ │ ├── cfg_exbranch.m │ │ ├── disp.m │ │ ├── display.m │ │ ├── fieldnames.m │ │ ├── gencode_item.m │ │ ├── harvest.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── showdetail.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ ├── subsref.m │ │ └── update_deps.m │ ├── @cfg_files │ │ ├── cfg2struct.m │ │ ├── cfg_files.m │ │ ├── fieldnames.m │ │ ├── gencode_item.m │ │ ├── match.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── showdetail.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ └── subsref.m │ ├── @cfg_intree │ │ ├── cfg_intree.m │ │ ├── disp.m │ │ └── display.m │ ├── @cfg_inv_out │ │ └── cfg_inv_out.m │ ├── @cfg_item │ │ ├── all_leafs.m │ │ ├── all_set.m │ │ ├── all_set_item.m │ │ ├── cat.m │ │ ├── cfg2jobsubs.m │ │ ├── cfg2struct.m │ │ ├── cfg_item.m │ │ ├── clearval.m │ │ ├── disp.m │ │ ├── display.m │ │ ├── docheck.m │ │ ├── expand.m │ │ ├── fieldnames.m │ │ ├── fillvals.m │ │ ├── gencode.m │ │ ├── gencode_item.m │ │ ├── gettag.m │ │ ├── harvest.m │ │ ├── horzcat.m │ │ ├── initialise.m │ │ ├── list.m │ │ ├── match.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── resolve_deps.m │ │ ├── setval.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ ├── subsasgn_checkstr.m │ │ ├── subsasgn_job.m │ │ ├── subsref.m │ │ ├── subsref_job.m │ │ ├── tag2cfgsubs.m │ │ ├── update_deps.m │ │ ├── val2def.m │ │ └── vertcat.m │ ├── @cfg_leaf │ │ ├── cfg_leaf.m │ │ ├── disp.m │ │ └── display.m │ ├── @cfg_menu │ │ ├── cfg2struct.m │ │ ├── cfg_menu.m │ │ ├── fieldnames.m │ │ ├── gencode_item.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── setval.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ └── subsref.m │ ├── @cfg_repeat │ │ ├── all_leafs.m │ │ ├── all_set.m │ │ ├── all_set_item.m │ │ ├── cfg2jobsubs.m │ │ ├── cfg2struct.m │ │ ├── cfg_repeat.m │ │ ├── checksubs_job.m │ │ ├── clearval.m │ │ ├── expand.m │ │ ├── fieldnames.m │ │ ├── fillvals.m │ │ ├── gencode_item.m │ │ ├── gettag.m │ │ ├── harvest.m │ │ ├── initialise.m │ │ ├── list.m │ │ ├── private │ │ │ └── mysubs_fields.m │ │ ├── setval.m │ │ ├── showdetail.m │ │ ├── showdoc.m │ │ ├── showmydoc.m │ │ ├── subs_fields.m │ │ ├── subsasgn.m │ │ ├── subsasgn_check.m │ │ ├── subsasgn_job.m │ │ ├── subsref.m │ │ ├── subsref_job.m │ │ ├── tag2cfgsubs.m │ │ ├── tagnames.m │ │ ├── treepart.m │ │ ├── update_deps.m │ │ └── val2def.m │ ├── cfg_basicio │ │ ├── cfg_basicio_rewrite.m │ │ ├── cfg_cfg_basicio.m │ │ ├── cfg_cfg_basicio_def.m │ │ ├── cfg_check_assignin.m │ │ ├── cfg_load_vars.m │ │ ├── cfg_run_assignin.m │ │ ├── cfg_run_call_matlab.m │ │ ├── cfg_run_cd.m │ │ ├── cfg_run_dir_move.m │ │ ├── cfg_run_file_filter.m │ │ ├── cfg_run_file_fplist.m │ │ ├── cfg_run_file_move.m │ │ ├── cfg_run_file_split.m │ │ ├── cfg_run_fileparts.m │ │ ├── cfg_run_gunzip_files.m │ │ ├── cfg_run_gzip_files.m │ │ ├── cfg_run_mkdir.m │ │ ├── cfg_run_named_dir.m │ │ ├── cfg_run_named_file.m │ │ ├── cfg_run_named_input.m │ │ ├── cfg_run_runjobs.m │ │ ├── cfg_run_save_vars.m │ │ ├── cfg_run_subsrefvar.m │ │ ├── cfg_vout_dir_move.m │ │ ├── cfg_vout_file_filter.m │ │ ├── cfg_vout_file_fplist.m │ │ ├── cfg_vout_file_move.m │ │ ├── cfg_vout_file_split.m │ │ ├── cfg_vout_fileparts.m │ │ ├── cfg_vout_gunzip_files.m │ │ ├── cfg_vout_gzip_files.m │ │ ├── cfg_vout_mkdir.m │ │ ├── cfg_vout_named_dir.m │ │ ├── cfg_vout_named_file.m │ │ ├── cfg_vout_named_input.m │ │ ├── cfg_vout_runjobs.m │ │ └── cfg_vout_save_vars.m │ ├── cfg_callbuiltin.m │ ├── cfg_dbstop.m │ ├── cfg_findspec.m │ ├── cfg_get_defaults.m │ ├── cfg_getfile.m │ ├── cfg_load_jobs.m │ ├── cfg_message.m │ ├── cfg_struct2cfg.m │ ├── cfg_tropts.m │ ├── cfg_ui.fig │ ├── cfg_ui.m │ ├── cfg_ui_multibatch.fig │ ├── cfg_ui_multibatch.m │ ├── cfg_ui_util.m │ ├── cfg_util.m │ ├── gencode.m │ ├── gencode_rvalue.m │ ├── gencode_substruct.m │ ├── gencode_substructcode.m │ ├── private │ │ ├── cfg_disp_error.m │ │ ├── cfg_eval_valedit.m │ │ ├── cfg_justify.m │ │ ├── cfg_maxextent.m │ │ ├── cfg_mlbatch_appcfg_1.m │ │ ├── cfg_mlbatch_appcfg_2.m │ │ ├── cfg_mlbatch_appcfg_master.m │ │ ├── cfg_mlbatch_defaults.m │ │ ├── cfg_mlbatch_root.m │ │ ├── cfg_onscreen.m │ │ ├── cfg_run_cm.m │ │ ├── cfg_textfill.m │ │ ├── cfg_ui_disable.m │ │ ├── cfg_ui_getListboxTop.m │ │ ├── cfg_ui_restore.m │ │ ├── cfg_util_persistent.m │ │ ├── getnicedialoglocation.m │ │ ├── inputdlg.m │ │ ├── int2str.m │ │ ├── listdlg.m │ │ ├── num2str.m │ │ └── setdefaultbutton.m │ ├── subsasgn_check_funhandle.m │ ├── subsasgn_check_num.m │ └── subsasgn_check_valcfg.m ├── nmm │ ├── NMM.nii │ └── NMM.txt ├── spm.m ├── spm_BMS.m ├── spm_BMS_F.m ├── spm_BMS_F_smpl.m ├── spm_BMS_bor.m ├── spm_BMS_gibbs.m ├── spm_Bcdf.m ├── spm_Ce.m ├── spm_DEM.m ├── spm_DEM_M_set.m ├── spm_DEM_R.m ├── spm_DEM_embed.m ├── spm_DEM_eval.m ├── spm_DEM_eval_diff.m ├── spm_DEM_qH.m ├── spm_DEM_qP.m ├── spm_DEM_qU.m ├── spm_DEM_set.m ├── spm_DesMtx.m ├── spm_DesRep.m ├── spm_DisplayTimeSeries.m ├── spm_Dpdf.m ├── spm_ECdensity.m ├── spm_FcUtil.m ├── spm_Fcdf.m ├── spm_Gcdf.m ├── spm_Gpdf.m ├── spm_LAP.m ├── spm_LAP_eval.m ├── spm_Menu.fig ├── spm_Menu.m ├── spm_Ncdf.m ├── spm_Npdf.m ├── spm_P.m ├── spm_PEB.m ├── spm_P_Bonf.m ├── spm_P_FDR.m ├── spm_P_RF.m ├── spm_P_clusterFDR.m ├── spm_P_peakFDR.m ├── spm_Pcdf.m ├── spm_Q.m ├── spm_ROI.m ├── spm_SpUtil.m ├── spm_Tcdf.m ├── spm_VOI.m ├── spm_Volterra.m ├── spm_Welcome.m ├── spm_XYZreg.m ├── spm_XYZreg_Ex2.m ├── spm_Xcdf.m ├── spm_add.m ├── spm_add.mexa64 ├── spm_add.mexmaci64 ├── spm_add.mexw32 ├── spm_add.mexw64 ├── spm_affine_priors.m ├── spm_ancova.m ├── spm_api_bmc.m ├── spm_atlas.m ├── spm_authors.m ├── spm_axis.m ├── spm_bayes2_logbf.m ├── spm_beta_compare.m ├── spm_bireduce.m ├── spm_bms_compare_groups.m ├── spm_bms_display.m ├── spm_bms_display_ROI.m ├── spm_bms_display_vox.m ├── spm_bms_partition.m ├── spm_browser.m ├── spm_bsplinc.m ├── spm_bsplinc.mexa64 ├── spm_bsplinc.mexmaci64 ├── spm_bsplinc.mexw32 ├── spm_bsplinc.mexw64 ├── spm_bsplins.m ├── spm_bsplins.mexa64 ├── spm_bsplins.mexmaci64 ├── spm_bsplins.mexw32 ├── spm_bsplins.mexw64 ├── spm_bwlabel.m ├── spm_bwlabel.mexa64 ├── spm_bwlabel.mexmaci64 ├── spm_bwlabel.mexw32 ├── spm_bwlabel.mexw64 ├── spm_cat.m ├── spm_cat.mexa64 ├── spm_cat.mexmaci64 ├── spm_cat.mexw32 ├── spm_cat.mexw64 ├── spm_cat_struct.m ├── spm_cell_swap.m ├── spm_check_installation.m ├── spm_check_orientations.m ├── spm_check_registration.m ├── spm_check_results.m ├── spm_check_version.m ├── spm_clf.m ├── spm_clusters.m ├── spm_colourmap.m ├── spm_compare_families.m ├── spm_cond_units.m ├── spm_conman.m ├── spm_contrasts.m ├── spm_conv.m ├── spm_conv_vol.m ├── spm_conv_vol.mexa64 ├── spm_conv_vol.mexmaci64 ├── spm_conv_vol.mexw32 ├── spm_conv_vol.mexw64 ├── spm_coreg.m ├── spm_cov2corr.m ├── spm_create_vol.m ├── spm_csd_fmri_mtf.m ├── spm_cva.m ├── spm_dartel_integrate.m ├── spm_data_hdr_read.m ├── spm_data_hdr_write.m ├── spm_data_id.m ├── spm_data_read.m ├── spm_data_write.m ├── spm_dcm_U.m ├── spm_dcm_average.m ├── spm_dcm_bma.m ├── spm_dcm_bma_results.m ├── spm_dcm_bmr.m ├── spm_dcm_bmr_all.m ├── spm_dcm_connectivity_ui.m ├── spm_dcm_contrasts.m ├── spm_dcm_csd_Q.m ├── spm_dcm_display.m ├── spm_dcm_estimate.m ├── spm_dcm_evidence.m ├── spm_dcm_fit.m ├── spm_dcm_fmri_csd.m ├── spm_dcm_fmri_csd_data.m ├── spm_dcm_fmri_csd_results.m ├── spm_dcm_fmri_graph_gen.m ├── spm_dcm_fmri_image.m ├── spm_dcm_fmri_mode_gen.m ├── spm_dcm_fmri_priors.m ├── spm_dcm_graph.m ├── spm_dcm_identify.m ├── spm_dcm_load.m ├── spm_dcm_loo.m ├── spm_dcm_mdp.m ├── spm_dcm_mtf.m ├── spm_dcm_peb.m ├── spm_dcm_peb_bmc.m ├── spm_dcm_peb_fit.m ├── spm_dcm_peb_review.m ├── spm_dcm_post_hoc.m ├── spm_dcm_ppd.m ├── spm_dcm_reduce.m ├── spm_dcm_review.m ├── spm_dcm_search.m ├── spm_dcm_sparse.m ├── spm_dcm_specify.m ├── spm_dcm_specify_ui.m ├── spm_dcm_ui.m ├── spm_dcm_voi.m ├── spm_dctmtx.m ├── spm_deface.m ├── spm_defaults.m ├── spm_deformations.m ├── spm_dem2dcm.m ├── spm_design_contrasts.m ├── spm_design_factorial.m ├── spm_design_flexible.m ├── spm_design_within_subject.m ├── spm_detrend.m ├── spm_diag.m ├── spm_dicom_convert.m ├── spm_dicom_dict.mat ├── spm_dicom_dict.txt ├── spm_dicom_essentials.m ├── spm_dicom_header.m ├── spm_dicom_headers.m ├── spm_dicom_metadata.m ├── spm_diff.m ├── spm_diffeo.m ├── spm_diffeo.mexa64 ├── spm_diffeo.mexmaci64 ├── spm_diffeo.mexw32 ├── spm_diffeo.mexw64 ├── spm_dilate.m ├── spm_dilate_erode.mexa64 ├── spm_dilate_erode.mexmaci64 ├── spm_dilate_erode.mexw32 ├── spm_dilate_erode.mexw64 ├── spm_dirichlet_exceedance.m ├── spm_dx.m ├── spm_ecat2nifti.m ├── spm_eeg_artefact.m ├── spm_eeg_assemble_priors.m ├── spm_eeg_average.m ├── spm_eeg_average_TF.m ├── spm_eeg_avgfreq.m ├── spm_eeg_avgtime.m ├── spm_eeg_bc.m ├── spm_eeg_cfc.m ├── spm_eeg_collapse_timefreq.m ├── spm_eeg_combineplanar.m ├── spm_eeg_contrast.m ├── spm_eeg_convert.m ├── spm_eeg_convert2images.m ├── spm_eeg_copy.m ├── spm_eeg_correct_sensor_data.m ├── spm_eeg_crop.m ├── spm_eeg_definetrial.m ├── spm_eeg_displayECD.m ├── spm_eeg_downsample.m ├── spm_eeg_epochs.m ├── spm_eeg_filter.m ├── spm_eeg_firstlevel.m ├── spm_eeg_fixpnt.m ├── spm_eeg_ft2spm.m ├── spm_eeg_fuse.m ├── spm_eeg_grandmean.m ├── spm_eeg_history.m ├── spm_eeg_inv_Mesh2Voxels.m ├── spm_eeg_inv_check.m ├── spm_eeg_inv_checkdatareg.m ├── spm_eeg_inv_checkforward.m ├── spm_eeg_inv_checkmeshes.m ├── spm_eeg_inv_datareg.m ├── spm_eeg_inv_datareg_ui.m ├── spm_eeg_inv_extract.m ├── spm_eeg_inv_fmripriors.m ├── spm_eeg_inv_forward.m ├── spm_eeg_inv_forward_ui.m ├── spm_eeg_inv_get_vol_sens.m ├── spm_eeg_inv_icp.m ├── spm_eeg_inv_image_display.m ├── spm_eeg_inv_mesh.m ├── spm_eeg_inv_mesh_ui.m ├── spm_eeg_inv_results.m ├── spm_eeg_inv_results_display.m ├── spm_eeg_inv_rigidreg.m ├── spm_eeg_inv_spatnorm.m ├── spm_eeg_inv_transform_mesh.m ├── spm_eeg_inv_transform_points.m ├── spm_eeg_inv_vbecd.m ├── spm_eeg_inv_vbecd_disp.m ├── spm_eeg_inv_vbecd_mom.m ├── spm_eeg_invert.m ├── spm_eeg_invert_classic.m ├── spm_eeg_invert_classic_mix.m ├── spm_eeg_invert_display.m ├── spm_eeg_invert_setuppatches.m ├── spm_eeg_invertiter.m ├── spm_eeg_lgainmat.m ├── spm_eeg_load.m ├── spm_eeg_locate_channels.m ├── spm_eeg_merge.m ├── spm_eeg_modality_ui.m ├── spm_eeg_montage.m ├── spm_eeg_montage_ui.m ├── spm_eeg_planarchannelset.m ├── spm_eeg_plotScalpData.m ├── spm_eeg_prep.m ├── spm_eeg_prep_ui.m ├── spm_eeg_project3D.m ├── spm_eeg_read_bsa.m ├── spm_eeg_reduce.m ├── spm_eeg_regressors.m ├── spm_eeg_remove_bad_trials.m ├── spm_eeg_render.m ├── spm_eeg_review.m ├── spm_eeg_review_buttons.mat ├── spm_eeg_review_callbacks.m ├── spm_eeg_review_switchDisplay.m ├── spm_eeg_review_uis.m ├── spm_eeg_select_event_ui.m ├── spm_eeg_simulate.m ├── spm_eeg_simulate_frominv.m ├── spm_eeg_spatial_confounds.m ├── spm_eeg_tf.m ├── spm_eeg_tf_rescale.m ├── spm_eeg_wrap_dipfit_vbecd.m ├── spm_eeg_wrap_momfit_vbecd.m ├── spm_en.m ├── spm_erode.m ├── spm_est_non_sphericity.m ├── spm_est_smoothness.m ├── spm_existfile.m ├── spm_existfile.mexa64 ├── spm_existfile.mexmaci64 ├── spm_existfile.mexw32 ├── spm_existfile.mexw64 ├── spm_expm.m ├── spm_extrapolate_def.m ├── spm_fMRI_design.m ├── spm_field.m ├── spm_field.mexa64 ├── spm_field.mexmaci64 ├── spm_field.mexw32 ├── spm_field.mexw64 ├── spm_fieldindices.m ├── spm_figure.m ├── spm_file.m ├── spm_file_ext.m ├── spm_file_merge.m ├── spm_file_split.m ├── spm_file_template.m ├── spm_fileparts.m ├── spm_filter.m ├── spm_find_pC.m ├── spm_flip_analyze_images.m ├── spm_fmri_spm_ui.m ├── spm_funcheck.m ├── spm_fx_fmri.m ├── spm_gamrnd.m ├── spm_gamrnd.mexa64 ├── spm_gamrnd.mexmaci64 ├── spm_gamrnd.mexw32 ├── spm_gamrnd.mexw64 ├── spm_getSPM.m ├── spm_get_bbox.m ├── spm_get_bf.m ├── spm_get_closest_affine.m ├── spm_get_data.m ├── spm_get_def.m ├── spm_get_defaults.m ├── spm_get_image_def.m ├── spm_get_lm.m ├── spm_get_lm.mexa64 ├── spm_get_lm.mexmaci64 ├── spm_get_lm.mexw32 ├── spm_get_lm.mexw64 ├── spm_get_matdim.m ├── spm_get_ons.m ├── spm_get_space.m ├── spm_get_vc.m ├── spm_global.m ├── spm_global.mexa64 ├── spm_global.mexmaci64 ├── spm_global.mexw32 ├── spm_global.mexw64 ├── spm_gx_fmri.m ├── spm_hanning.m ├── spm_help.m ├── spm_hist.m ├── spm_hist.mexa64 ├── spm_hist.mexmaci64 ├── spm_hist.mexw32 ├── spm_hist.mexw64 ├── spm_hist2.m ├── spm_hist2.mexa64 ├── spm_hist2.mexmaci64 ├── spm_hist2.mexw32 ├── spm_hist2.mexw64 ├── spm_hrf.m ├── spm_image.m ├── spm_imatrix.m ├── spm_imcalc.m ├── spm_input.m ├── spm_inv.m ├── spm_invBcdf.m ├── spm_invFcdf.m ├── spm_invGcdf.m ├── spm_invNcdf.m ├── spm_invTcdf.m ├── spm_invXcdf.m ├── spm_jobman.m ├── spm_jsonread.m ├── spm_jsonread.mexw64 ├── spm_jsonwrite.m ├── spm_kernels.m ├── spm_kl_gamma.m ├── spm_kl_normal.m ├── spm_krutil.m ├── spm_krutil.mexa64 ├── spm_krutil.mexmaci64 ├── spm_krutil.mexw32 ├── spm_krutil.mexw64 ├── spm_length.m ├── spm_list.m ├── spm_load.m ├── spm_load_priors8.m ├── spm_log_evidence.m ├── spm_log_evidence_reduce.m ├── spm_logdet.m ├── spm_maff8.m ├── spm_make_contrasts.m ├── spm_match_str.m ├── spm_matrix.m ├── spm_max.m ├── spm_meanby.m ├── spm_mesh_adjacency.m ├── spm_mesh_area.m ├── spm_mesh_clusters.m ├── spm_mesh_curvature.m ├── spm_mesh_detect.m ├── spm_mesh_distmtx.m ├── spm_mesh_edges.m ├── spm_mesh_geodesic.m ├── spm_mesh_get_lm.m ├── spm_mesh_inflate.m ├── spm_mesh_join.m ├── spm_mesh_label.m ├── spm_mesh_max.m ├── spm_mesh_neighbours.m ├── spm_mesh_normals.m ├── spm_mesh_project.m ├── spm_mesh_render.m ├── spm_mesh_resels.m ├── spm_mesh_smooth.m ├── spm_mesh_to_grid.m ├── spm_mesh_utils.m ├── spm_mesh_utils.mexa64 ├── spm_mesh_utils.mexmaci64 ├── spm_mesh_utils.mexw32 ├── spm_mesh_utils.mexw64 ├── spm_mfx.m ├── spm_minmax.m ├── spm_mip.m ├── spm_mip_ui.m ├── spm_mnc2nifti.m ├── spm_mrf.m ├── spm_mrf.mexa64 ├── spm_mrf.mexmaci64 ├── spm_mrf.mexw32 ├── spm_mrf.mexw64 ├── spm_multrnd.m ├── spm_mvb.m ├── spm_mvb_G.m ├── spm_nlsi_GN.m ├── spm_nlsi_Newton.m ├── spm_normrnd.m ├── spm_orth.m ├── spm_orthviews.m ├── spm_parrec2nifti.m ├── spm_peb_ppi.m ├── spm_percentile.m ├── spm_perm_mtx.m ├── spm_phi.m ├── spm_pinv.m ├── spm_platform.m ├── spm_plot_ci.m ├── spm_plot_convergence.m ├── spm_powell.m ├── spm_preproc.m ├── spm_preproc8.m ├── spm_preproc_run.m ├── spm_preproc_write8.m ├── spm_print.m ├── spm_progress_bar.m ├── spm_project.m ├── spm_project.mexa64 ├── spm_project.mexmaci64 ├── spm_project.mexw32 ├── spm_project.mexw64 ├── spm_provenance.m ├── spm_read_netcdf.m ├── spm_read_vols.m ├── spm_realign.m ├── spm_regions.m ├── spm_reml.m ├── spm_reml_sc.m ├── spm_render.m ├── spm_render_vol.m ├── spm_render_vol.mexa64 ├── spm_render_vol.mexmaci64 ├── spm_render_vol.mexw32 ├── spm_render_vol.mexw64 ├── spm_resels.m ├── spm_resels_vol.m ├── spm_resels_vol.mexa64 ├── spm_resels_vol.mexmaci64 ├── spm_resels_vol.mexw32 ├── spm_resels_vol.mexw64 ├── spm_reslice.m ├── spm_results_nidm.m ├── spm_results_ui.m ├── spm_robust_average.m ├── spm_sample_priors8.m ├── spm_sample_vol.m ├── spm_sample_vol.mexa64 ├── spm_sample_vol.mexmaci64 ├── spm_sample_vol.mexw32 ├── spm_sample_vol.mexw64 ├── spm_select.m ├── spm_slice_timing.m ├── spm_slice_vol.m ├── spm_slice_vol.mexa64 ├── spm_slice_vol.mexmaci64 ├── spm_slice_vol.mexw32 ├── spm_slice_vol.mexw64 ├── spm_smohist.m ├── spm_smooth.m ├── spm_smoothkern.m ├── spm_smoothto8bit.m ├── spm_softmax.m ├── spm_sp.m ├── spm_sp_reml.m ├── spm_speye.m ├── spm_spm.m ├── spm_spm_Bayes.m ├── spm_spm_vb.m ├── spm_spy.m ├── spm_sqrtm.m ├── spm_squeeze.m ├── spm_str_manip.m ├── spm_summarise.m ├── spm_surf.m ├── spm_svd.m ├── spm_swarp.m ├── spm_toolbox.m ├── spm_trace.m ├── spm_type.m ├── spm_u.m ├── spm_uc.m ├── spm_uc_Bonf.m ├── spm_uc_FDR.m ├── spm_uc_RF.m ├── spm_uc_clusterFDR.m ├── spm_uc_peakFDR.m ├── spm_uitab.m ├── spm_uitable.m ├── spm_unlink.m ├── spm_unlink.mexa64 ├── spm_unlink.mexmaci64 ├── spm_unlink.mexw32 ├── spm_unlink.mexw64 ├── spm_unvec.m ├── spm_update.m ├── spm_uw_apply.m ├── spm_uw_estimate.m ├── spm_uw_show.m ├── spm_vb_F.m ├── spm_vb_Fn.m ├── spm_vb_a.m ├── spm_vb_adjacency.m ├── spm_vb_alpha.m ├── spm_vb_beta.m ├── spm_vb_contrasts.m ├── spm_vb_edgeweights.m ├── spm_vb_gamma.m ├── spm_vb_get_Ab.m ├── spm_vb_get_Gn.m ├── spm_vb_get_R.m ├── spm_vb_glmar.m ├── spm_vb_graphcut.m ├── spm_vb_incidence.m ├── spm_vb_init_block.m ├── spm_vb_init_volume.m ├── spm_vb_lambda.m ├── spm_vb_logbf.m ├── spm_vb_models.m ├── spm_vb_neighbors.m ├── spm_vb_ppm_anova.m ├── spm_vb_robust.m ├── spm_vb_set_priors.m ├── spm_vb_spatial_precision.m ├── spm_vb_taylor_R.m ├── spm_vb_w.m ├── spm_vec.m ├── spm_vol.m ├── spm_vol_nifti.m ├── spm_write_filtered.m ├── spm_write_plane.m ├── spm_write_residuals.m ├── spm_write_vol.m ├── spm_z2p.m ├── spm_zeros.m ├── toolbox │ ├── DARTEL │ │ ├── dartel3.m │ │ ├── optimNn.m │ │ ├── optim_compat.m │ │ ├── spm_dartel_dotprods.m │ │ ├── spm_dartel_import.m │ │ ├── spm_dartel_invnorm.m │ │ ├── spm_dartel_jacobian.m │ │ ├── spm_dartel_kernel.m │ │ ├── spm_dartel_norm.m │ │ ├── spm_dartel_norm_fun.m │ │ ├── spm_dartel_resids.m │ │ ├── spm_dartel_smooth.m │ │ ├── spm_dartel_template.m │ │ ├── spm_dartel_warp.m │ │ ├── spm_klaff.m │ │ ├── spm_norm_population.m │ │ └── tbx_cfg_dartel.m │ ├── DEM │ │ ├── spm_MDP_VB.m │ │ ├── spm_MDP_VB_game.m │ │ ├── spm_MDP_VB_trial.m │ │ └── spm_MDP_check.m │ ├── FieldMap │ │ ├── FieldMap.m │ │ ├── FieldMap_Run.m │ │ ├── FieldMap_applyvdm.m │ │ ├── FieldMap_create.m │ │ ├── pm_angvar.m │ │ ├── pm_brain_mask.m │ │ ├── pm_create_connectogram.m │ │ ├── pm_create_connectogram_dtj.mexa64 │ │ ├── pm_create_connectogram_dtj.mexmaci64 │ │ ├── pm_create_connectogram_dtj.mexw32 │ │ ├── pm_create_connectogram_dtj.mexw64 │ │ ├── pm_defaults.m │ │ ├── pm_diff.m │ │ ├── pm_estimate_ramp.m │ │ ├── pm_estimate_ramp.mexa64 │ │ ├── pm_estimate_ramp.mexmaci64 │ │ ├── pm_estimate_ramp.mexw32 │ │ ├── pm_estimate_ramp.mexw64 │ │ ├── pm_ff_unwrap.m │ │ ├── pm_ff_unwrap.mexa64 │ │ ├── pm_ff_unwrap.mexmaci64 │ │ ├── pm_ff_unwrap.mexw32 │ │ ├── pm_ff_unwrap.mexw64 │ │ ├── pm_get_defaults.m │ │ ├── pm_initial_regions.m │ │ ├── pm_invert_phasemap.m │ │ ├── pm_invert_phasemap_dtj.mexa64 │ │ ├── pm_invert_phasemap_dtj.mexmaci64 │ │ ├── pm_invert_phasemap_dtj.mexw32 │ │ ├── pm_invert_phasemap_dtj.mexw64 │ │ ├── pm_make_fieldmap.m │ │ ├── pm_mask.m │ │ ├── pm_merge_regions.m │ │ ├── pm_merge_regions.mexa64 │ │ ├── pm_merge_regions.mexmaci64 │ │ ├── pm_merge_regions.mexw32 │ │ ├── pm_merge_regions.mexw64 │ │ ├── pm_merge_regions_m.m │ │ ├── pm_pad.m │ │ ├── pm_pad.mexa64 │ │ ├── pm_pad.mexmaci64 │ │ ├── pm_pad.mexw32 │ │ ├── pm_pad.mexw64 │ │ ├── pm_restore_ramp.m │ │ ├── pm_restore_ramp.mexa64 │ │ ├── pm_restore_ramp.mexmaci64 │ │ ├── pm_restore_ramp.mexw32 │ │ ├── pm_restore_ramp.mexw64 │ │ ├── pm_seed.m │ │ ├── pm_segment.m │ │ ├── pm_smooth_phasemap.m │ │ ├── pm_smooth_phasemap_dtj.mexa64 │ │ ├── pm_smooth_phasemap_dtj.mexmaci64 │ │ ├── pm_smooth_phasemap_dtj.mexw32 │ │ ├── pm_smooth_phasemap_dtj.mexw64 │ │ ├── pm_unwrap.m │ │ └── tbx_cfg_fieldmap.m │ ├── Longitudinal │ │ ├── spm_compute_avg_mat.m │ │ ├── spm_dexpm.m │ │ ├── spm_groupwise_ls.m │ │ ├── spm_meanm.m │ │ ├── spm_noise_estimate.m │ │ ├── spm_pairwise.m │ │ ├── spm_rice_mixture.m │ │ ├── spm_series_align.m │ │ └── tbx_cfg_longitudinal.m │ ├── OldNorm │ │ ├── spm_affreg.m │ │ ├── spm_brainwarp.m │ │ ├── spm_brainwarp.mexa64 │ │ ├── spm_brainwarp.mexmaci64 │ │ ├── spm_brainwarp.mexw32 │ │ ├── spm_brainwarp.mexw64 │ │ ├── spm_cfg_normalise.m │ │ ├── spm_normalise.m │ │ ├── spm_normalise_disp.m │ │ ├── spm_run_normalise.m │ │ └── spm_write_sn.m │ ├── OldSeg │ │ ├── spm_cfg_preproc.m │ │ ├── spm_invdef.m │ │ ├── spm_load_priors.m │ │ ├── spm_maff.m │ │ ├── spm_prep2sn.m │ │ ├── spm_preproc_write.m │ │ ├── spm_run_preproc.m │ │ └── spm_sample_priors.m │ ├── SRender │ │ ├── spm_sextract.m │ │ ├── spm_srender.m │ │ └── tbx_cfg_render.m │ └── Shoot │ │ ├── spm_dotprods2.m │ │ ├── spm_shoot3d.m │ │ ├── spm_shoot_blur.m │ │ ├── spm_shoot_defaults.m │ │ ├── spm_shoot_greens.m │ │ ├── spm_shoot_kernel.m │ │ ├── spm_shoot_norm.m │ │ ├── spm_shoot_scalmom.m │ │ ├── spm_shoot_template.m │ │ ├── spm_shoot_update.m │ │ ├── spm_shoot_warp.m │ │ └── tbx_cfg_shoot.m ├── tpm │ ├── TPM.nii │ ├── labels_Neuromorphometrics.nii │ ├── labels_Neuromorphometrics.xml │ └── mask_ICV.nii └── userpath.m ├── LeGUI_InstallationGuide.pdf ├── LeGUI_UserManual.pdf └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /LeGUI/@file_array/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/Contents.m -------------------------------------------------------------------------------- /LeGUI/@file_array/cat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/cat.m -------------------------------------------------------------------------------- /LeGUI/@file_array/ctranspose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/ctranspose.m -------------------------------------------------------------------------------- /LeGUI/@file_array/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/disp.m -------------------------------------------------------------------------------- /LeGUI/@file_array/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/display.m -------------------------------------------------------------------------------- /LeGUI/@file_array/double.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/double.m -------------------------------------------------------------------------------- /LeGUI/@file_array/end.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/end.m -------------------------------------------------------------------------------- /LeGUI/@file_array/fieldnames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/fieldnames.m -------------------------------------------------------------------------------- /LeGUI/@file_array/file_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/file_array.m -------------------------------------------------------------------------------- /LeGUI/@file_array/full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/full.m -------------------------------------------------------------------------------- /LeGUI/@file_array/horzcat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/horzcat.m -------------------------------------------------------------------------------- /LeGUI/@file_array/initialise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/initialise.m -------------------------------------------------------------------------------- /LeGUI/@file_array/isnan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/isnan.m -------------------------------------------------------------------------------- /LeGUI/@file_array/length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/length.m -------------------------------------------------------------------------------- /LeGUI/@file_array/loadobj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/loadobj.m -------------------------------------------------------------------------------- /LeGUI/@file_array/ndims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/ndims.m -------------------------------------------------------------------------------- /LeGUI/@file_array/numel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/numel.m -------------------------------------------------------------------------------- /LeGUI/@file_array/numeric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/numeric.m -------------------------------------------------------------------------------- /LeGUI/@file_array/permute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/permute.m -------------------------------------------------------------------------------- /LeGUI/@file_array/private/dim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/private/dim.m -------------------------------------------------------------------------------- /LeGUI/@file_array/private/dtype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/private/dtype.m -------------------------------------------------------------------------------- /LeGUI/@file_array/private/fname.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/private/fname.m -------------------------------------------------------------------------------- /LeGUI/@file_array/private/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/private/init.m -------------------------------------------------------------------------------- /LeGUI/@file_array/private/offset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/private/offset.m -------------------------------------------------------------------------------- /LeGUI/@file_array/reshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/reshape.m -------------------------------------------------------------------------------- /LeGUI/@file_array/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/size.m -------------------------------------------------------------------------------- /LeGUI/@file_array/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/subsasgn.m -------------------------------------------------------------------------------- /LeGUI/@file_array/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/subsref.m -------------------------------------------------------------------------------- /LeGUI/@file_array/transpose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/transpose.m -------------------------------------------------------------------------------- /LeGUI/@file_array/vertcat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@file_array/vertcat.m -------------------------------------------------------------------------------- /LeGUI/@gifti/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/Contents.m -------------------------------------------------------------------------------- /LeGUI/@gifti/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/display.m -------------------------------------------------------------------------------- /LeGUI/@gifti/export.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/export.m -------------------------------------------------------------------------------- /LeGUI/@gifti/fieldnames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/fieldnames.m -------------------------------------------------------------------------------- /LeGUI/@gifti/gifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/gifti.m -------------------------------------------------------------------------------- /LeGUI/@gifti/isfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/isfield.m -------------------------------------------------------------------------------- /LeGUI/@gifti/plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/plot.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/base64decode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/base64decode.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/base64encode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/base64encode.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/getdict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/getdict.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/isintent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/isintent.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/mvtk_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/mvtk_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/mvtk_write.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/mvtk_write.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/mz3_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/mz3_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/mz3_write.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/mz3_write.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/obj_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/obj_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/off_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/off_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/ply_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/ply_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/stl_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/stl_read.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/zstream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/zstream.m -------------------------------------------------------------------------------- /LeGUI/@gifti/private/zstream.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/zstream.mexa64 -------------------------------------------------------------------------------- /LeGUI/@gifti/private/zstream.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/private/zstream.mexw64 -------------------------------------------------------------------------------- /LeGUI/@gifti/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/save.m -------------------------------------------------------------------------------- /LeGUI/@gifti/saveas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/saveas.m -------------------------------------------------------------------------------- /LeGUI/@gifti/struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/struct.m -------------------------------------------------------------------------------- /LeGUI/@gifti/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/subsasgn.m -------------------------------------------------------------------------------- /LeGUI/@gifti/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@gifti/subsref.m -------------------------------------------------------------------------------- /LeGUI/@meeg/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/Contents.m -------------------------------------------------------------------------------- /LeGUI/@meeg/badchannels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/badchannels.m -------------------------------------------------------------------------------- /LeGUI/@meeg/badsamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/badsamples.m -------------------------------------------------------------------------------- /LeGUI/@meeg/badtrials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/badtrials.m -------------------------------------------------------------------------------- /LeGUI/@meeg/blank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/blank.m -------------------------------------------------------------------------------- /LeGUI/@meeg/chanlabels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/chanlabels.m -------------------------------------------------------------------------------- /LeGUI/@meeg/chantype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/chantype.m -------------------------------------------------------------------------------- /LeGUI/@meeg/check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/check.m -------------------------------------------------------------------------------- /LeGUI/@meeg/clone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/clone.m -------------------------------------------------------------------------------- /LeGUI/@meeg/conditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/conditions.m -------------------------------------------------------------------------------- /LeGUI/@meeg/condlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/condlist.m -------------------------------------------------------------------------------- /LeGUI/@meeg/coor2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/coor2D.m -------------------------------------------------------------------------------- /LeGUI/@meeg/copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/copy.m -------------------------------------------------------------------------------- /LeGUI/@meeg/delete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/delete.m -------------------------------------------------------------------------------- /LeGUI/@meeg/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/display.m -------------------------------------------------------------------------------- /LeGUI/@meeg/events.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/events.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fiducials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fiducials.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fieldnames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fieldnames.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fname.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fname.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fnamedat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fnamedat.m -------------------------------------------------------------------------------- /LeGUI/@meeg/frequencies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/frequencies.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fsample.m -------------------------------------------------------------------------------- /LeGUI/@meeg/ftraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/ftraw.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fttimelock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fttimelock.m -------------------------------------------------------------------------------- /LeGUI/@meeg/fullfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/fullfile.m -------------------------------------------------------------------------------- /LeGUI/@meeg/getfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/getfield.m -------------------------------------------------------------------------------- /LeGUI/@meeg/history.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/history.m -------------------------------------------------------------------------------- /LeGUI/@meeg/indchannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/indchannel.m -------------------------------------------------------------------------------- /LeGUI/@meeg/indchantype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/indchantype.m -------------------------------------------------------------------------------- /LeGUI/@meeg/indfrequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/indfrequency.m -------------------------------------------------------------------------------- /LeGUI/@meeg/indsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/indsample.m -------------------------------------------------------------------------------- /LeGUI/@meeg/indtrial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/indtrial.m -------------------------------------------------------------------------------- /LeGUI/@meeg/isempty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/isempty.m -------------------------------------------------------------------------------- /LeGUI/@meeg/isequal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/isequal.m -------------------------------------------------------------------------------- /LeGUI/@meeg/isfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/isfield.m -------------------------------------------------------------------------------- /LeGUI/@meeg/islinked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/islinked.m -------------------------------------------------------------------------------- /LeGUI/@meeg/link.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/link.m -------------------------------------------------------------------------------- /LeGUI/@meeg/meeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/meeg.m -------------------------------------------------------------------------------- /LeGUI/@meeg/modality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/modality.m -------------------------------------------------------------------------------- /LeGUI/@meeg/montage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/montage.m -------------------------------------------------------------------------------- /LeGUI/@meeg/move.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/move.m -------------------------------------------------------------------------------- /LeGUI/@meeg/nchannels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/nchannels.m -------------------------------------------------------------------------------- /LeGUI/@meeg/nconditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/nconditions.m -------------------------------------------------------------------------------- /LeGUI/@meeg/nfrequencies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/nfrequencies.m -------------------------------------------------------------------------------- /LeGUI/@meeg/nsamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/nsamples.m -------------------------------------------------------------------------------- /LeGUI/@meeg/ntrials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/ntrials.m -------------------------------------------------------------------------------- /LeGUI/@meeg/path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/path.m -------------------------------------------------------------------------------- /LeGUI/@meeg/private/checkmeeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/private/checkmeeg.m -------------------------------------------------------------------------------- /LeGUI/@meeg/private/fixpnt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/private/fixpnt.m -------------------------------------------------------------------------------- /LeGUI/@meeg/private/getset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/private/getset.m -------------------------------------------------------------------------------- /LeGUI/@meeg/private/match_str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/private/match_str.m -------------------------------------------------------------------------------- /LeGUI/@meeg/reload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/reload.m -------------------------------------------------------------------------------- /LeGUI/@meeg/repl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/repl.m -------------------------------------------------------------------------------- /LeGUI/@meeg/rmdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/rmdata.m -------------------------------------------------------------------------------- /LeGUI/@meeg/rmfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/rmfield.m -------------------------------------------------------------------------------- /LeGUI/@meeg/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/save.m -------------------------------------------------------------------------------- /LeGUI/@meeg/sconfounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/sconfounds.m -------------------------------------------------------------------------------- /LeGUI/@meeg/selectchannels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/selectchannels.m -------------------------------------------------------------------------------- /LeGUI/@meeg/selectdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/selectdata.m -------------------------------------------------------------------------------- /LeGUI/@meeg/sensors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/sensors.m -------------------------------------------------------------------------------- /LeGUI/@meeg/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/size.m -------------------------------------------------------------------------------- /LeGUI/@meeg/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/subsasgn.m -------------------------------------------------------------------------------- /LeGUI/@meeg/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/subsref.m -------------------------------------------------------------------------------- /LeGUI/@meeg/time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/time.m -------------------------------------------------------------------------------- /LeGUI/@meeg/timeonset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/timeonset.m -------------------------------------------------------------------------------- /LeGUI/@meeg/transformtype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/transformtype.m -------------------------------------------------------------------------------- /LeGUI/@meeg/trialonset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/trialonset.m -------------------------------------------------------------------------------- /LeGUI/@meeg/trialtag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/trialtag.m -------------------------------------------------------------------------------- /LeGUI/@meeg/type.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/type.m -------------------------------------------------------------------------------- /LeGUI/@meeg/units.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/units.m -------------------------------------------------------------------------------- /LeGUI/@meeg/unlink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@meeg/unlink.m -------------------------------------------------------------------------------- /LeGUI/@nifti/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/Contents.m -------------------------------------------------------------------------------- /LeGUI/@nifti/cifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/cifti.m -------------------------------------------------------------------------------- /LeGUI/@nifti/create.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/create.m -------------------------------------------------------------------------------- /LeGUI/@nifti/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/disp.m -------------------------------------------------------------------------------- /LeGUI/@nifti/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/display.m -------------------------------------------------------------------------------- /LeGUI/@nifti/fieldnames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/fieldnames.m -------------------------------------------------------------------------------- /LeGUI/@nifti/nifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/nifti.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/M2Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/M2Q.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/Q2M.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/Q2M.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/empty_hdr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/empty_hdr.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/findindict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/findindict.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/getdict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/getdict.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/mayo2nifti1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/mayo2nifti1.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/mayostruc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/mayostruc.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/nifti1struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/nifti1struc.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/nifti2struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/nifti2struc.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/nifti_stats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/nifti_stats.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/niftistruc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/niftistruc.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/read_extras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/read_extras.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/read_hdr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/read_hdr.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/read_hdr_raw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/read_hdr_raw.m -------------------------------------------------------------------------------- /LeGUI/@nifti/private/write_extras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/private/write_extras.m -------------------------------------------------------------------------------- /LeGUI/@nifti/structn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/structn.m -------------------------------------------------------------------------------- /LeGUI/@nifti/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/subsasgn.m -------------------------------------------------------------------------------- /LeGUI/@nifti/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@nifti/subsref.m -------------------------------------------------------------------------------- /LeGUI/@slover/add_blobs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/add_blobs.m -------------------------------------------------------------------------------- /LeGUI/@slover/add_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/add_matrix.m -------------------------------------------------------------------------------- /LeGUI/@slover/add_spm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/add_spm.m -------------------------------------------------------------------------------- /LeGUI/@slover/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/display.m -------------------------------------------------------------------------------- /LeGUI/@slover/fill_defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/fill_defaults.m -------------------------------------------------------------------------------- /LeGUI/@slover/get_pos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/get_pos.m -------------------------------------------------------------------------------- /LeGUI/@slover/paint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/paint.m -------------------------------------------------------------------------------- /LeGUI/@slover/point_vals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/point_vals.m -------------------------------------------------------------------------------- /LeGUI/@slover/print_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/print_fig.m -------------------------------------------------------------------------------- /LeGUI/@slover/private/mars_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/private/mars_struct.m -------------------------------------------------------------------------------- /LeGUI/@slover/private/pr_basic_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/private/pr_basic_ui.m -------------------------------------------------------------------------------- /LeGUI/@slover/private/pr_getcmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/private/pr_getcmap.m -------------------------------------------------------------------------------- /LeGUI/@slover/slover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/slover.m -------------------------------------------------------------------------------- /LeGUI/@slover/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/subsasgn.m -------------------------------------------------------------------------------- /LeGUI/@slover/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@slover/subsref.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/Contents.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/add.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/attributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/attributes.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/branch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/branch.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/char.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/char.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/children.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/children.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/convert.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/copy.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/delete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/delete.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/display.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/editor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/editor.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/find.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/find.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/flush.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/flush.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/get.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/getfilename.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/getfilename.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/isfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/isfield.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/length.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/move.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/move.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/parent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/parent.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/private/xml_parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/private/xml_parser.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/root.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/root.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/save.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/set.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/setfilename.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/setfilename.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/view.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/view.m -------------------------------------------------------------------------------- /LeGUI/@xmltree/xmltree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/@xmltree/xmltree.m -------------------------------------------------------------------------------- /LeGUI/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/Contents.m -------------------------------------------------------------------------------- /LeGUI/Contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/Contents.txt -------------------------------------------------------------------------------- /LeGUI/LeGUI.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeGUI.mlapp -------------------------------------------------------------------------------- /LeGUI/LeGUI_Linux_Build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeGUI_Linux_Build.m -------------------------------------------------------------------------------- /LeGUI/LeGUI_Mac_Build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeGUI_Mac_Build.m -------------------------------------------------------------------------------- /LeGUI/LeGUI_Win_Build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeGUI_Win_Build.m -------------------------------------------------------------------------------- /LeGUI/LeG_ACPCGUI.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_ACPCGUI.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_AssignElectrodesGUI.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_AssignElectrodesGUI.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_AtlasMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_AtlasMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_CoregMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_CoregMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_DetectMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_DetectMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_GrayWhiteMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_GrayWhiteMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_ParseDICOMGUI.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_ParseDICOMGUI.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_ResizeMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_ResizeMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_SegMenu.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_SegMenu.mlapp -------------------------------------------------------------------------------- /LeGUI/LeG_alignElecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_alignElecs.m -------------------------------------------------------------------------------- /LeGUI/LeG_autoElecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_autoElecs.m -------------------------------------------------------------------------------- /LeGUI/LeG_calcGrayWhite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_calcGrayWhite.m -------------------------------------------------------------------------------- /LeGUI/LeG_determine_griddim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_determine_griddim.m -------------------------------------------------------------------------------- /LeGUI/LeG_dialogCellstrHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_dialogCellstrHelper.m -------------------------------------------------------------------------------- /LeGUI/LeG_findSubFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_findSubFiles.m -------------------------------------------------------------------------------- /LeGUI/LeG_genRotMat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_genRotMat.m -------------------------------------------------------------------------------- /LeGUI/LeG_genSurfaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_genSurfaces.m -------------------------------------------------------------------------------- /LeGUI/LeG_getnicedialoglocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_getnicedialoglocation.m -------------------------------------------------------------------------------- /LeGUI/LeG_intriangulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_intriangulation.m -------------------------------------------------------------------------------- /LeGUI/LeG_lastDir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_lastDir.m -------------------------------------------------------------------------------- /LeGUI/LeG_lastPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_lastPath.m -------------------------------------------------------------------------------- /LeGUI/LeG_match_str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_match_str.m -------------------------------------------------------------------------------- /LeGUI/LeG_msgbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_msgbox.m -------------------------------------------------------------------------------- /LeGUI/LeG_parfor_wait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_parfor_wait.m -------------------------------------------------------------------------------- /LeGUI/LeG_removeSubSurf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_removeSubSurf.m -------------------------------------------------------------------------------- /LeGUI/LeG_rotateImg2Standard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_rotateImg2Standard.m -------------------------------------------------------------------------------- /LeGUI/LeG_setdefaultbutton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_setdefaultbutton.m -------------------------------------------------------------------------------- /LeGUI/LeG_vox2atlaslabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_vox2atlaslabel.m -------------------------------------------------------------------------------- /LeGUI/LeG_warp_hermes2010.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/LeG_warp_hermes2010.m -------------------------------------------------------------------------------- /LeGUI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/ReadMe.txt -------------------------------------------------------------------------------- /LeGUI/atlases/Anat.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/atlases/Anat.nii -------------------------------------------------------------------------------- /LeGUI/atlases/Anat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/atlases/Anat.txt -------------------------------------------------------------------------------- /LeGUI/atlases/AnatMacro.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/atlases/AnatMacro.nii -------------------------------------------------------------------------------- /LeGUI/atlases/AnatMacro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/atlases/AnatMacro.txt -------------------------------------------------------------------------------- /LeGUI/build/atlases/Anat.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/build/atlases/Anat.nii -------------------------------------------------------------------------------- /LeGUI/build/atlases/Anat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/build/atlases/Anat.txt -------------------------------------------------------------------------------- /LeGUI/build/atlases/AnatMacro.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/build/atlases/AnatMacro.nii -------------------------------------------------------------------------------- /LeGUI/build/atlases/AnatMacro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/build/atlases/AnatMacro.txt -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_bbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_bbox.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_bms_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_bms_map.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_cat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_cat.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_cdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_cdir.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_checkreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_checkreg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_con.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_con.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_coreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_coreg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dcm_bms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dcm_bms.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dcm_est.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dcm_est.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dcm_fmri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dcm_fmri.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dcm_meeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dcm_meeg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dcm_peb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dcm_peb.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_deface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_deface.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_deformations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_deformations.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_dicom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_dicom.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_disp.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_ecat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_ecat.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_artefact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_artefact.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_average.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_average.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_avgfreq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_avgfreq.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_avgtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_avgtime.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_bc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_bc.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_cfc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_cfc.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_contrast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_contrast.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_convert.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_copy.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_crop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_crop.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_delete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_delete.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_dipfit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_dipfit.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_epochs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_epochs.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_filter.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_fuse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_fuse.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_inv_mix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_inv_mix.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_merge.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_montage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_montage.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_prepare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_prepare.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_reduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_reduce.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_eeg_tf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_eeg_tf.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_fmri_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_fmri_data.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_fmri_est.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_fmri_est.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_fmri_spec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_fmri_spec.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_imcalc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_imcalc.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_md.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_md.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_mfx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_mfx.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_minc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_minc.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_norm.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_parrec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_parrec.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_ppi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_ppi.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_preproc8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_preproc8.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_print.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_print.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_realign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_realign.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_render.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_render.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_reorient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_reorient.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_results.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_sendmail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_sendmail.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_setlevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_setlevel.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_smooth.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_split.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_st.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_st.m -------------------------------------------------------------------------------- /LeGUI/config/spm_cfg_voi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_cfg_voi.m -------------------------------------------------------------------------------- /LeGUI/config/spm_rewrite_job.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_rewrite_job.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_bms_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_bms_map.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_bms_vis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_bms_vis.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_con.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_con.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_coreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_coreg.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_dcm_bms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_dcm_bms.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_dicom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_dicom.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_fmri_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_fmri_data.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_fmri_est.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_fmri_est.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_fmri_spec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_fmri_spec.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_norm.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_realign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_realign.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_reorient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_reorient.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_results.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_setlevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_setlevel.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_smooth.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_st.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_st.m -------------------------------------------------------------------------------- /LeGUI/config/spm_run_voi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/config/spm_run_voi.m -------------------------------------------------------------------------------- /LeGUI/icons/ACPCGUIExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/ACPCGUIExample.png -------------------------------------------------------------------------------- /LeGUI/icons/export_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/export_icon.png -------------------------------------------------------------------------------- /LeGUI/icons/pan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/pan_icon.png -------------------------------------------------------------------------------- /LeGUI/icons/pointer_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/pointer_hand.png -------------------------------------------------------------------------------- /LeGUI/icons/pointer_hand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/pointer_hand2.png -------------------------------------------------------------------------------- /LeGUI/icons/pointer_hand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/pointer_hand3.png -------------------------------------------------------------------------------- /LeGUI/icons/restoreview_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/restoreview_icon.png -------------------------------------------------------------------------------- /LeGUI/icons/rotate_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/rotate_icon.png -------------------------------------------------------------------------------- /LeGUI/icons/zoomin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/zoomin_icon.png -------------------------------------------------------------------------------- /LeGUI/icons/zoomout_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/icons/zoomout_icon.png -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_dbstop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_dbstop.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_findspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_findspec.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_getfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_getfile.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_message.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_message.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_tropts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_tropts.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_ui.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_ui.fig -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_ui.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_ui_util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_ui_util.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/cfg_util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/cfg_util.m -------------------------------------------------------------------------------- /LeGUI/matlabbatch/gencode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/matlabbatch/gencode.m -------------------------------------------------------------------------------- /LeGUI/nmm/NMM.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/nmm/NMM.nii -------------------------------------------------------------------------------- /LeGUI/nmm/NMM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/nmm/NMM.txt -------------------------------------------------------------------------------- /LeGUI/spm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm.m -------------------------------------------------------------------------------- /LeGUI/spm_BMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_BMS.m -------------------------------------------------------------------------------- /LeGUI/spm_BMS_F.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_BMS_F.m -------------------------------------------------------------------------------- /LeGUI/spm_BMS_F_smpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_BMS_F_smpl.m -------------------------------------------------------------------------------- /LeGUI/spm_BMS_bor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_BMS_bor.m -------------------------------------------------------------------------------- /LeGUI/spm_BMS_gibbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_BMS_gibbs.m -------------------------------------------------------------------------------- /LeGUI/spm_Bcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Bcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_Ce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Ce.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_M_set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_M_set.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_R.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_R.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_embed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_embed.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_eval.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_eval_diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_eval_diff.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_qH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_qH.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_qP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_qP.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_qU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_qU.m -------------------------------------------------------------------------------- /LeGUI/spm_DEM_set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DEM_set.m -------------------------------------------------------------------------------- /LeGUI/spm_DesMtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DesMtx.m -------------------------------------------------------------------------------- /LeGUI/spm_DesRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DesRep.m -------------------------------------------------------------------------------- /LeGUI/spm_DisplayTimeSeries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_DisplayTimeSeries.m -------------------------------------------------------------------------------- /LeGUI/spm_Dpdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Dpdf.m -------------------------------------------------------------------------------- /LeGUI/spm_ECdensity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_ECdensity.m -------------------------------------------------------------------------------- /LeGUI/spm_FcUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_FcUtil.m -------------------------------------------------------------------------------- /LeGUI/spm_Fcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Fcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_Gcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Gcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_Gpdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Gpdf.m -------------------------------------------------------------------------------- /LeGUI/spm_LAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_LAP.m -------------------------------------------------------------------------------- /LeGUI/spm_LAP_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_LAP_eval.m -------------------------------------------------------------------------------- /LeGUI/spm_Menu.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Menu.fig -------------------------------------------------------------------------------- /LeGUI/spm_Menu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Menu.m -------------------------------------------------------------------------------- /LeGUI/spm_Ncdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Ncdf.m -------------------------------------------------------------------------------- /LeGUI/spm_Npdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Npdf.m -------------------------------------------------------------------------------- /LeGUI/spm_P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P.m -------------------------------------------------------------------------------- /LeGUI/spm_PEB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_PEB.m -------------------------------------------------------------------------------- /LeGUI/spm_P_Bonf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P_Bonf.m -------------------------------------------------------------------------------- /LeGUI/spm_P_FDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P_FDR.m -------------------------------------------------------------------------------- /LeGUI/spm_P_RF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P_RF.m -------------------------------------------------------------------------------- /LeGUI/spm_P_clusterFDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P_clusterFDR.m -------------------------------------------------------------------------------- /LeGUI/spm_P_peakFDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_P_peakFDR.m -------------------------------------------------------------------------------- /LeGUI/spm_Pcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Pcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Q.m -------------------------------------------------------------------------------- /LeGUI/spm_ROI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_ROI.m -------------------------------------------------------------------------------- /LeGUI/spm_SpUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_SpUtil.m -------------------------------------------------------------------------------- /LeGUI/spm_Tcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Tcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_VOI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_VOI.m -------------------------------------------------------------------------------- /LeGUI/spm_Volterra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Volterra.m -------------------------------------------------------------------------------- /LeGUI/spm_Welcome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Welcome.m -------------------------------------------------------------------------------- /LeGUI/spm_XYZreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_XYZreg.m -------------------------------------------------------------------------------- /LeGUI/spm_XYZreg_Ex2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_XYZreg_Ex2.m -------------------------------------------------------------------------------- /LeGUI/spm_Xcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_Xcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_add.m -------------------------------------------------------------------------------- /LeGUI/spm_add.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_add.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_add.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_add.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_add.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_add.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_add.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_add.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_affine_priors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_affine_priors.m -------------------------------------------------------------------------------- /LeGUI/spm_ancova.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_ancova.m -------------------------------------------------------------------------------- /LeGUI/spm_api_bmc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_api_bmc.m -------------------------------------------------------------------------------- /LeGUI/spm_atlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_atlas.m -------------------------------------------------------------------------------- /LeGUI/spm_authors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_authors.m -------------------------------------------------------------------------------- /LeGUI/spm_axis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_axis.m -------------------------------------------------------------------------------- /LeGUI/spm_bayes2_logbf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bayes2_logbf.m -------------------------------------------------------------------------------- /LeGUI/spm_beta_compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_beta_compare.m -------------------------------------------------------------------------------- /LeGUI/spm_bireduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bireduce.m -------------------------------------------------------------------------------- /LeGUI/spm_bms_compare_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bms_compare_groups.m -------------------------------------------------------------------------------- /LeGUI/spm_bms_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bms_display.m -------------------------------------------------------------------------------- /LeGUI/spm_bms_display_ROI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bms_display_ROI.m -------------------------------------------------------------------------------- /LeGUI/spm_bms_display_vox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bms_display_vox.m -------------------------------------------------------------------------------- /LeGUI/spm_bms_partition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bms_partition.m -------------------------------------------------------------------------------- /LeGUI/spm_browser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_browser.m -------------------------------------------------------------------------------- /LeGUI/spm_bsplinc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplinc.m -------------------------------------------------------------------------------- /LeGUI/spm_bsplinc.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplinc.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_bsplinc.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplinc.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_bsplinc.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplinc.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_bsplinc.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplinc.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_bsplins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplins.m -------------------------------------------------------------------------------- /LeGUI/spm_bsplins.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplins.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_bsplins.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplins.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_bsplins.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplins.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_bsplins.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bsplins.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_bwlabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bwlabel.m -------------------------------------------------------------------------------- /LeGUI/spm_bwlabel.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bwlabel.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_bwlabel.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bwlabel.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_bwlabel.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bwlabel.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_bwlabel.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_bwlabel.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_cat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat.m -------------------------------------------------------------------------------- /LeGUI/spm_cat.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_cat.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_cat.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_cat.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_cat_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cat_struct.m -------------------------------------------------------------------------------- /LeGUI/spm_cell_swap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cell_swap.m -------------------------------------------------------------------------------- /LeGUI/spm_check_installation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_check_installation.m -------------------------------------------------------------------------------- /LeGUI/spm_check_orientations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_check_orientations.m -------------------------------------------------------------------------------- /LeGUI/spm_check_registration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_check_registration.m -------------------------------------------------------------------------------- /LeGUI/spm_check_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_check_results.m -------------------------------------------------------------------------------- /LeGUI/spm_check_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_check_version.m -------------------------------------------------------------------------------- /LeGUI/spm_clf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_clf.m -------------------------------------------------------------------------------- /LeGUI/spm_clusters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_clusters.m -------------------------------------------------------------------------------- /LeGUI/spm_colourmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_colourmap.m -------------------------------------------------------------------------------- /LeGUI/spm_compare_families.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_compare_families.m -------------------------------------------------------------------------------- /LeGUI/spm_cond_units.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cond_units.m -------------------------------------------------------------------------------- /LeGUI/spm_conman.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conman.m -------------------------------------------------------------------------------- /LeGUI/spm_contrasts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_contrasts.m -------------------------------------------------------------------------------- /LeGUI/spm_conv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv.m -------------------------------------------------------------------------------- /LeGUI/spm_conv_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_conv_vol.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv_vol.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_conv_vol.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv_vol.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_conv_vol.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv_vol.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_conv_vol.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_conv_vol.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_coreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_coreg.m -------------------------------------------------------------------------------- /LeGUI/spm_cov2corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cov2corr.m -------------------------------------------------------------------------------- /LeGUI/spm_create_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_create_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_csd_fmri_mtf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_csd_fmri_mtf.m -------------------------------------------------------------------------------- /LeGUI/spm_cva.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_cva.m -------------------------------------------------------------------------------- /LeGUI/spm_dartel_integrate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dartel_integrate.m -------------------------------------------------------------------------------- /LeGUI/spm_data_hdr_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_data_hdr_read.m -------------------------------------------------------------------------------- /LeGUI/spm_data_hdr_write.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_data_hdr_write.m -------------------------------------------------------------------------------- /LeGUI/spm_data_id.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_data_id.m -------------------------------------------------------------------------------- /LeGUI/spm_data_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_data_read.m -------------------------------------------------------------------------------- /LeGUI/spm_data_write.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_data_write.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_U.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_U.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_average.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_average.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_bma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_bma.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_bma_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_bma_results.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_bmr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_bmr.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_bmr_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_bmr_all.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_connectivity_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_connectivity_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_contrasts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_contrasts.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_csd_Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_csd_Q.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_display.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_estimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_estimate.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_evidence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_evidence.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fit.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_csd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_csd.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_csd_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_csd_data.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_csd_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_csd_results.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_graph_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_graph_gen.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_image.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_mode_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_mode_gen.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_fmri_priors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_fmri_priors.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_graph.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_identify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_identify.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_load.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_loo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_loo.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_mdp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_mdp.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_mtf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_mtf.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_peb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_peb.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_peb_bmc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_peb_bmc.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_peb_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_peb_fit.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_peb_review.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_peb_review.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_post_hoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_post_hoc.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_ppd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_ppd.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_reduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_reduce.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_review.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_review.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_search.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_sparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_sparse.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_specify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_specify.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_specify_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_specify_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_dcm_voi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dcm_voi.m -------------------------------------------------------------------------------- /LeGUI/spm_dctmtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dctmtx.m -------------------------------------------------------------------------------- /LeGUI/spm_deface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_deface.m -------------------------------------------------------------------------------- /LeGUI/spm_defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_defaults.m -------------------------------------------------------------------------------- /LeGUI/spm_deformations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_deformations.m -------------------------------------------------------------------------------- /LeGUI/spm_dem2dcm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dem2dcm.m -------------------------------------------------------------------------------- /LeGUI/spm_design_contrasts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_design_contrasts.m -------------------------------------------------------------------------------- /LeGUI/spm_design_factorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_design_factorial.m -------------------------------------------------------------------------------- /LeGUI/spm_design_flexible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_design_flexible.m -------------------------------------------------------------------------------- /LeGUI/spm_detrend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_detrend.m -------------------------------------------------------------------------------- /LeGUI/spm_diag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diag.m -------------------------------------------------------------------------------- /LeGUI/spm_dicom_convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_convert.m -------------------------------------------------------------------------------- /LeGUI/spm_dicom_dict.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_dict.mat -------------------------------------------------------------------------------- /LeGUI/spm_dicom_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_dict.txt -------------------------------------------------------------------------------- /LeGUI/spm_dicom_essentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_essentials.m -------------------------------------------------------------------------------- /LeGUI/spm_dicom_header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_header.m -------------------------------------------------------------------------------- /LeGUI/spm_dicom_headers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_headers.m -------------------------------------------------------------------------------- /LeGUI/spm_dicom_metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dicom_metadata.m -------------------------------------------------------------------------------- /LeGUI/spm_diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diff.m -------------------------------------------------------------------------------- /LeGUI/spm_diffeo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diffeo.m -------------------------------------------------------------------------------- /LeGUI/spm_diffeo.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diffeo.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_diffeo.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diffeo.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_diffeo.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diffeo.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_diffeo.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_diffeo.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_dilate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dilate.m -------------------------------------------------------------------------------- /LeGUI/spm_dilate_erode.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dilate_erode.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_dilate_erode.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dilate_erode.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_dilate_erode.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dilate_erode.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_dilate_erode.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dilate_erode.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_dirichlet_exceedance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dirichlet_exceedance.m -------------------------------------------------------------------------------- /LeGUI/spm_dx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_dx.m -------------------------------------------------------------------------------- /LeGUI/spm_ecat2nifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_ecat2nifti.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_artefact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_artefact.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_assemble_priors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_assemble_priors.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_average.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_average.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_average_TF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_average_TF.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_avgfreq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_avgfreq.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_avgtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_avgtime.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_bc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_bc.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_cfc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_cfc.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_combineplanar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_combineplanar.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_contrast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_contrast.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_convert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_convert.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_convert2images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_convert2images.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_copy.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_crop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_crop.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_definetrial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_definetrial.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_displayECD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_displayECD.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_downsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_downsample.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_epochs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_epochs.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_filter.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_firstlevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_firstlevel.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_fixpnt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_fixpnt.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_ft2spm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_ft2spm.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_fuse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_fuse.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_grandmean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_grandmean.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_history.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_history.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_Mesh2Voxels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_Mesh2Voxels.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_check.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_checkdatareg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_checkdatareg.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_checkforward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_checkforward.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_checkmeshes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_checkmeshes.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_datareg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_datareg.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_datareg_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_datareg_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_extract.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_fmripriors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_fmripriors.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_forward.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_forward_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_forward_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_get_vol_sens.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_get_vol_sens.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_icp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_icp.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_mesh.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_mesh_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_mesh_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_results.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_rigidreg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_rigidreg.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_spatnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_spatnorm.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_vbecd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_vbecd.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_vbecd_disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_vbecd_disp.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_inv_vbecd_mom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_inv_vbecd_mom.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_invert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_invert.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_invert_classic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_invert_classic.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_invert_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_invert_display.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_invertiter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_invertiter.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_lgainmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_lgainmat.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_load.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_locate_channels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_locate_channels.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_merge.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_modality_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_modality_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_montage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_montage.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_montage_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_montage_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_planarchannelset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_planarchannelset.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_plotScalpData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_plotScalpData.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_prep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_prep.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_prep_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_prep_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_project3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_project3D.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_read_bsa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_read_bsa.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_reduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_reduce.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_regressors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_regressors.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_render.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_render.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_review.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_review.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_review_buttons.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_review_buttons.mat -------------------------------------------------------------------------------- /LeGUI/spm_eeg_review_callbacks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_review_callbacks.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_review_uis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_review_uis.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_select_event_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_select_event_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_simulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_simulate.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_simulate_frominv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_simulate_frominv.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_tf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_tf.m -------------------------------------------------------------------------------- /LeGUI/spm_eeg_tf_rescale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_eeg_tf_rescale.m -------------------------------------------------------------------------------- /LeGUI/spm_en.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_en.m -------------------------------------------------------------------------------- /LeGUI/spm_erode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_erode.m -------------------------------------------------------------------------------- /LeGUI/spm_est_non_sphericity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_est_non_sphericity.m -------------------------------------------------------------------------------- /LeGUI/spm_est_smoothness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_est_smoothness.m -------------------------------------------------------------------------------- /LeGUI/spm_existfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_existfile.m -------------------------------------------------------------------------------- /LeGUI/spm_existfile.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_existfile.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_existfile.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_existfile.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_existfile.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_existfile.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_existfile.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_existfile.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_expm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_expm.m -------------------------------------------------------------------------------- /LeGUI/spm_extrapolate_def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_extrapolate_def.m -------------------------------------------------------------------------------- /LeGUI/spm_fMRI_design.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_fMRI_design.m -------------------------------------------------------------------------------- /LeGUI/spm_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_field.m -------------------------------------------------------------------------------- /LeGUI/spm_field.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_field.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_field.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_field.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_field.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_field.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_field.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_field.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_fieldindices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_fieldindices.m -------------------------------------------------------------------------------- /LeGUI/spm_figure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_figure.m -------------------------------------------------------------------------------- /LeGUI/spm_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_file.m -------------------------------------------------------------------------------- /LeGUI/spm_file_ext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_file_ext.m -------------------------------------------------------------------------------- /LeGUI/spm_file_merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_file_merge.m -------------------------------------------------------------------------------- /LeGUI/spm_file_split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_file_split.m -------------------------------------------------------------------------------- /LeGUI/spm_file_template.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_file_template.m -------------------------------------------------------------------------------- /LeGUI/spm_fileparts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_fileparts.m -------------------------------------------------------------------------------- /LeGUI/spm_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_filter.m -------------------------------------------------------------------------------- /LeGUI/spm_find_pC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_find_pC.m -------------------------------------------------------------------------------- /LeGUI/spm_flip_analyze_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_flip_analyze_images.m -------------------------------------------------------------------------------- /LeGUI/spm_fmri_spm_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_fmri_spm_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_funcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_funcheck.m -------------------------------------------------------------------------------- /LeGUI/spm_fx_fmri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_fx_fmri.m -------------------------------------------------------------------------------- /LeGUI/spm_gamrnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gamrnd.m -------------------------------------------------------------------------------- /LeGUI/spm_gamrnd.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gamrnd.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_gamrnd.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gamrnd.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_gamrnd.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gamrnd.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_gamrnd.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gamrnd.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_getSPM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_getSPM.m -------------------------------------------------------------------------------- /LeGUI/spm_get_bbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_bbox.m -------------------------------------------------------------------------------- /LeGUI/spm_get_bf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_bf.m -------------------------------------------------------------------------------- /LeGUI/spm_get_closest_affine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_closest_affine.m -------------------------------------------------------------------------------- /LeGUI/spm_get_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_data.m -------------------------------------------------------------------------------- /LeGUI/spm_get_def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_def.m -------------------------------------------------------------------------------- /LeGUI/spm_get_defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_defaults.m -------------------------------------------------------------------------------- /LeGUI/spm_get_image_def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_image_def.m -------------------------------------------------------------------------------- /LeGUI/spm_get_lm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_lm.m -------------------------------------------------------------------------------- /LeGUI/spm_get_lm.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_lm.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_get_lm.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_lm.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_get_lm.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_lm.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_get_lm.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_lm.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_get_matdim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_matdim.m -------------------------------------------------------------------------------- /LeGUI/spm_get_ons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_ons.m -------------------------------------------------------------------------------- /LeGUI/spm_get_space.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_space.m -------------------------------------------------------------------------------- /LeGUI/spm_get_vc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_get_vc.m -------------------------------------------------------------------------------- /LeGUI/spm_global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_global.m -------------------------------------------------------------------------------- /LeGUI/spm_global.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_global.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_global.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_global.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_global.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_global.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_global.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_global.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_gx_fmri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_gx_fmri.m -------------------------------------------------------------------------------- /LeGUI/spm_hanning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hanning.m -------------------------------------------------------------------------------- /LeGUI/spm_help.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_help.m -------------------------------------------------------------------------------- /LeGUI/spm_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist.m -------------------------------------------------------------------------------- /LeGUI/spm_hist.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_hist.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_hist.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_hist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_hist2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist2.m -------------------------------------------------------------------------------- /LeGUI/spm_hist2.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist2.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_hist2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist2.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_hist2.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist2.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_hist2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hist2.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_hrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_hrf.m -------------------------------------------------------------------------------- /LeGUI/spm_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_image.m -------------------------------------------------------------------------------- /LeGUI/spm_imatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_imatrix.m -------------------------------------------------------------------------------- /LeGUI/spm_imcalc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_imcalc.m -------------------------------------------------------------------------------- /LeGUI/spm_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_input.m -------------------------------------------------------------------------------- /LeGUI/spm_inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_inv.m -------------------------------------------------------------------------------- /LeGUI/spm_invBcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invBcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_invFcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invFcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_invGcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invGcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_invNcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invNcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_invTcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invTcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_invXcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_invXcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_jobman.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_jobman.m -------------------------------------------------------------------------------- /LeGUI/spm_jsonread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_jsonread.m -------------------------------------------------------------------------------- /LeGUI/spm_jsonread.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_jsonread.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_jsonwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_jsonwrite.m -------------------------------------------------------------------------------- /LeGUI/spm_kernels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_kernels.m -------------------------------------------------------------------------------- /LeGUI/spm_kl_gamma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_kl_gamma.m -------------------------------------------------------------------------------- /LeGUI/spm_kl_normal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_kl_normal.m -------------------------------------------------------------------------------- /LeGUI/spm_krutil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_krutil.m -------------------------------------------------------------------------------- /LeGUI/spm_krutil.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_krutil.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_krutil.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_krutil.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_krutil.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_krutil.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_krutil.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_krutil.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_length.m -------------------------------------------------------------------------------- /LeGUI/spm_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_list.m -------------------------------------------------------------------------------- /LeGUI/spm_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_load.m -------------------------------------------------------------------------------- /LeGUI/spm_load_priors8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_load_priors8.m -------------------------------------------------------------------------------- /LeGUI/spm_log_evidence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_log_evidence.m -------------------------------------------------------------------------------- /LeGUI/spm_log_evidence_reduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_log_evidence_reduce.m -------------------------------------------------------------------------------- /LeGUI/spm_logdet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_logdet.m -------------------------------------------------------------------------------- /LeGUI/spm_maff8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_maff8.m -------------------------------------------------------------------------------- /LeGUI/spm_make_contrasts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_make_contrasts.m -------------------------------------------------------------------------------- /LeGUI/spm_match_str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_match_str.m -------------------------------------------------------------------------------- /LeGUI/spm_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_matrix.m -------------------------------------------------------------------------------- /LeGUI/spm_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_max.m -------------------------------------------------------------------------------- /LeGUI/spm_meanby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_meanby.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_adjacency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_adjacency.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_area.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_area.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_clusters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_clusters.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_curvature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_curvature.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_detect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_detect.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_distmtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_distmtx.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_edges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_edges.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_geodesic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_geodesic.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_get_lm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_get_lm.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_inflate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_inflate.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_join.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_label.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_label.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_max.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_neighbours.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_neighbours.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_normals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_normals.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_project.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_render.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_render.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_resels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_resels.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_smooth.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_to_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_to_grid.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_utils.m -------------------------------------------------------------------------------- /LeGUI/spm_mesh_utils.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_utils.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_mesh_utils.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_utils.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_mesh_utils.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_utils.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_mesh_utils.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mesh_utils.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_mfx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mfx.m -------------------------------------------------------------------------------- /LeGUI/spm_minmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_minmax.m -------------------------------------------------------------------------------- /LeGUI/spm_mip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mip.m -------------------------------------------------------------------------------- /LeGUI/spm_mip_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mip_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_mnc2nifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mnc2nifti.m -------------------------------------------------------------------------------- /LeGUI/spm_mrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mrf.m -------------------------------------------------------------------------------- /LeGUI/spm_mrf.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mrf.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_mrf.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mrf.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_mrf.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mrf.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_mrf.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mrf.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_multrnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_multrnd.m -------------------------------------------------------------------------------- /LeGUI/spm_mvb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mvb.m -------------------------------------------------------------------------------- /LeGUI/spm_mvb_G.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_mvb_G.m -------------------------------------------------------------------------------- /LeGUI/spm_nlsi_GN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_nlsi_GN.m -------------------------------------------------------------------------------- /LeGUI/spm_nlsi_Newton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_nlsi_Newton.m -------------------------------------------------------------------------------- /LeGUI/spm_normrnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_normrnd.m -------------------------------------------------------------------------------- /LeGUI/spm_orth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_orth.m -------------------------------------------------------------------------------- /LeGUI/spm_orthviews.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_orthviews.m -------------------------------------------------------------------------------- /LeGUI/spm_parrec2nifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_parrec2nifti.m -------------------------------------------------------------------------------- /LeGUI/spm_peb_ppi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_peb_ppi.m -------------------------------------------------------------------------------- /LeGUI/spm_percentile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_percentile.m -------------------------------------------------------------------------------- /LeGUI/spm_perm_mtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_perm_mtx.m -------------------------------------------------------------------------------- /LeGUI/spm_phi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_phi.m -------------------------------------------------------------------------------- /LeGUI/spm_pinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_pinv.m -------------------------------------------------------------------------------- /LeGUI/spm_platform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_platform.m -------------------------------------------------------------------------------- /LeGUI/spm_plot_ci.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_plot_ci.m -------------------------------------------------------------------------------- /LeGUI/spm_plot_convergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_plot_convergence.m -------------------------------------------------------------------------------- /LeGUI/spm_powell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_powell.m -------------------------------------------------------------------------------- /LeGUI/spm_preproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_preproc.m -------------------------------------------------------------------------------- /LeGUI/spm_preproc8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_preproc8.m -------------------------------------------------------------------------------- /LeGUI/spm_preproc_run.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_preproc_run.m -------------------------------------------------------------------------------- /LeGUI/spm_preproc_write8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_preproc_write8.m -------------------------------------------------------------------------------- /LeGUI/spm_print.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_print.m -------------------------------------------------------------------------------- /LeGUI/spm_progress_bar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_progress_bar.m -------------------------------------------------------------------------------- /LeGUI/spm_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_project.m -------------------------------------------------------------------------------- /LeGUI/spm_project.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_project.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_project.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_project.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_project.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_project.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_project.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_project.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_provenance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_provenance.m -------------------------------------------------------------------------------- /LeGUI/spm_read_netcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_read_netcdf.m -------------------------------------------------------------------------------- /LeGUI/spm_read_vols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_read_vols.m -------------------------------------------------------------------------------- /LeGUI/spm_realign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_realign.m -------------------------------------------------------------------------------- /LeGUI/spm_regions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_regions.m -------------------------------------------------------------------------------- /LeGUI/spm_reml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_reml.m -------------------------------------------------------------------------------- /LeGUI/spm_reml_sc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_reml_sc.m -------------------------------------------------------------------------------- /LeGUI/spm_render.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render.m -------------------------------------------------------------------------------- /LeGUI/spm_render_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_render_vol.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render_vol.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_render_vol.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render_vol.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_render_vol.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render_vol.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_render_vol.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_render_vol.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_resels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels.m -------------------------------------------------------------------------------- /LeGUI/spm_resels_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_resels_vol.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels_vol.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_resels_vol.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels_vol.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_resels_vol.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels_vol.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_resels_vol.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_resels_vol.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_reslice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_reslice.m -------------------------------------------------------------------------------- /LeGUI/spm_results_nidm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_results_nidm.m -------------------------------------------------------------------------------- /LeGUI/spm_results_ui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_results_ui.m -------------------------------------------------------------------------------- /LeGUI/spm_robust_average.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_robust_average.m -------------------------------------------------------------------------------- /LeGUI/spm_sample_priors8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_priors8.m -------------------------------------------------------------------------------- /LeGUI/spm_sample_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_sample_vol.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_vol.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_sample_vol.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_vol.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_sample_vol.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_vol.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_sample_vol.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sample_vol.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_select.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_select.m -------------------------------------------------------------------------------- /LeGUI/spm_slice_timing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_timing.m -------------------------------------------------------------------------------- /LeGUI/spm_slice_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_slice_vol.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_vol.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_slice_vol.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_vol.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_slice_vol.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_vol.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_slice_vol.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_slice_vol.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_smohist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_smohist.m -------------------------------------------------------------------------------- /LeGUI/spm_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_smooth.m -------------------------------------------------------------------------------- /LeGUI/spm_smoothkern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_smoothkern.m -------------------------------------------------------------------------------- /LeGUI/spm_smoothto8bit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_smoothto8bit.m -------------------------------------------------------------------------------- /LeGUI/spm_softmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_softmax.m -------------------------------------------------------------------------------- /LeGUI/spm_sp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sp.m -------------------------------------------------------------------------------- /LeGUI/spm_sp_reml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sp_reml.m -------------------------------------------------------------------------------- /LeGUI/spm_speye.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_speye.m -------------------------------------------------------------------------------- /LeGUI/spm_spm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_spm.m -------------------------------------------------------------------------------- /LeGUI/spm_spm_Bayes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_spm_Bayes.m -------------------------------------------------------------------------------- /LeGUI/spm_spm_vb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_spm_vb.m -------------------------------------------------------------------------------- /LeGUI/spm_spy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_spy.m -------------------------------------------------------------------------------- /LeGUI/spm_sqrtm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_sqrtm.m -------------------------------------------------------------------------------- /LeGUI/spm_squeeze.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_squeeze.m -------------------------------------------------------------------------------- /LeGUI/spm_str_manip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_str_manip.m -------------------------------------------------------------------------------- /LeGUI/spm_summarise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_summarise.m -------------------------------------------------------------------------------- /LeGUI/spm_surf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_surf.m -------------------------------------------------------------------------------- /LeGUI/spm_svd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_svd.m -------------------------------------------------------------------------------- /LeGUI/spm_swarp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_swarp.m -------------------------------------------------------------------------------- /LeGUI/spm_toolbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_toolbox.m -------------------------------------------------------------------------------- /LeGUI/spm_trace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_trace.m -------------------------------------------------------------------------------- /LeGUI/spm_type.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_type.m -------------------------------------------------------------------------------- /LeGUI/spm_u.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_u.m -------------------------------------------------------------------------------- /LeGUI/spm_uc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc.m -------------------------------------------------------------------------------- /LeGUI/spm_uc_Bonf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc_Bonf.m -------------------------------------------------------------------------------- /LeGUI/spm_uc_FDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc_FDR.m -------------------------------------------------------------------------------- /LeGUI/spm_uc_RF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc_RF.m -------------------------------------------------------------------------------- /LeGUI/spm_uc_clusterFDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc_clusterFDR.m -------------------------------------------------------------------------------- /LeGUI/spm_uc_peakFDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uc_peakFDR.m -------------------------------------------------------------------------------- /LeGUI/spm_uitab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uitab.m -------------------------------------------------------------------------------- /LeGUI/spm_uitable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uitable.m -------------------------------------------------------------------------------- /LeGUI/spm_unlink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unlink.m -------------------------------------------------------------------------------- /LeGUI/spm_unlink.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unlink.mexa64 -------------------------------------------------------------------------------- /LeGUI/spm_unlink.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unlink.mexmaci64 -------------------------------------------------------------------------------- /LeGUI/spm_unlink.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unlink.mexw32 -------------------------------------------------------------------------------- /LeGUI/spm_unlink.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unlink.mexw64 -------------------------------------------------------------------------------- /LeGUI/spm_unvec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_unvec.m -------------------------------------------------------------------------------- /LeGUI/spm_update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_update.m -------------------------------------------------------------------------------- /LeGUI/spm_uw_apply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uw_apply.m -------------------------------------------------------------------------------- /LeGUI/spm_uw_estimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uw_estimate.m -------------------------------------------------------------------------------- /LeGUI/spm_uw_show.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_uw_show.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_F.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_F.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_Fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_Fn.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_a.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_adjacency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_adjacency.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_alpha.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_beta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_beta.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_contrasts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_contrasts.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_edgeweights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_edgeweights.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_gamma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_gamma.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_get_Ab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_get_Ab.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_get_Gn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_get_Gn.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_get_R.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_get_R.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_glmar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_glmar.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_graphcut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_graphcut.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_incidence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_incidence.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_init_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_init_block.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_init_volume.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_init_volume.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_lambda.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_logbf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_logbf.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_models.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_models.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_neighbors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_neighbors.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_ppm_anova.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_ppm_anova.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_robust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_robust.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_set_priors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_set_priors.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_spatial_precision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_spatial_precision.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_taylor_R.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_taylor_R.m -------------------------------------------------------------------------------- /LeGUI/spm_vb_w.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vb_w.m -------------------------------------------------------------------------------- /LeGUI/spm_vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vec.m -------------------------------------------------------------------------------- /LeGUI/spm_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_vol_nifti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_vol_nifti.m -------------------------------------------------------------------------------- /LeGUI/spm_write_filtered.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_write_filtered.m -------------------------------------------------------------------------------- /LeGUI/spm_write_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_write_plane.m -------------------------------------------------------------------------------- /LeGUI/spm_write_residuals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_write_residuals.m -------------------------------------------------------------------------------- /LeGUI/spm_write_vol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_write_vol.m -------------------------------------------------------------------------------- /LeGUI/spm_z2p.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_z2p.m -------------------------------------------------------------------------------- /LeGUI/spm_zeros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/spm_zeros.m -------------------------------------------------------------------------------- /LeGUI/toolbox/DARTEL/dartel3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/DARTEL/dartel3.m -------------------------------------------------------------------------------- /LeGUI/toolbox/DARTEL/optimNn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/DARTEL/optimNn.m -------------------------------------------------------------------------------- /LeGUI/toolbox/DARTEL/spm_klaff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/DARTEL/spm_klaff.m -------------------------------------------------------------------------------- /LeGUI/toolbox/DEM/spm_MDP_VB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/DEM/spm_MDP_VB.m -------------------------------------------------------------------------------- /LeGUI/toolbox/FieldMap/pm_diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/FieldMap/pm_diff.m -------------------------------------------------------------------------------- /LeGUI/toolbox/FieldMap/pm_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/FieldMap/pm_mask.m -------------------------------------------------------------------------------- /LeGUI/toolbox/FieldMap/pm_pad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/FieldMap/pm_pad.m -------------------------------------------------------------------------------- /LeGUI/toolbox/FieldMap/pm_seed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/FieldMap/pm_seed.m -------------------------------------------------------------------------------- /LeGUI/toolbox/OldSeg/spm_maff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/toolbox/OldSeg/spm_maff.m -------------------------------------------------------------------------------- /LeGUI/tpm/TPM.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/tpm/TPM.nii -------------------------------------------------------------------------------- /LeGUI/tpm/mask_ICV.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/tpm/mask_ICV.nii -------------------------------------------------------------------------------- /LeGUI/userpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI/userpath.m -------------------------------------------------------------------------------- /LeGUI_InstallationGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI_InstallationGuide.pdf -------------------------------------------------------------------------------- /LeGUI_UserManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/LeGUI_UserManual.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rolston-Lab/LeGUI/HEAD/README.md --------------------------------------------------------------------------------