-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6d6c5c
commit f4c048c
Showing
449 changed files
with
10,047 additions
and
3,337 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
function S = spm_cfg_eeg_tf_rescale | ||
% configuration file for rescaling spectrograms | ||
%_______________________________________________________________________ | ||
% Copyright (C) 2009 Wellcome Trust Centre for Neuroimaging | ||
|
||
% Will Penny | ||
% $Id: spm_cfg_eeg_tf_rescale.m 3090 2009-04-29 17:30:05Z will $ | ||
|
||
Fname = cfg_files; | ||
Fname.tag = 'Fname'; | ||
Fname.name = 'File Names'; | ||
Fname.filter = 'mat'; | ||
Fname.num = [1 inf]; | ||
Fname.help = {'Select the M/EEG mat file.'}; | ||
|
||
|
||
S = cfg_exbranch; | ||
S.tag = 'eeg_tf_rescale'; | ||
S.name = 'M/EEG TF Rescale'; | ||
S.val = {Fname}; | ||
S.help = {'Rescale spectrogram using eg Log Ratio operator'}; | ||
S.prog = @eeg_tf_rescale; | ||
S.modality = {'EEG'}; | ||
|
||
|
||
function out = eeg_tf_rescale(job) | ||
% construct the S struct | ||
S = job; | ||
S.Fname = strvcat(job.Fname); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.