Skip to content

Commit

Permalink
Merge pull request #113 from JaapVanDerAar/master
Browse files Browse the repository at this point in the history
Minor updates on HardwareFilter
  • Loading branch information
dorahermes committed Dec 13, 2018
2 parents c954317 + 27a9f1c commit 872e094
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
10 changes: 8 additions & 2 deletions matlabCode/createBIDS_ieeg_json.m
Expand Up @@ -56,8 +56,14 @@

%% Recommended fields:

ieeg_json.HardwareFilters = ''; % List of hardware (amplifier) filters applied
% with key:value pairs of filter parameters and their values.
HardwareFilters.HighpassFilter.CutoffFrequency = []; % Contains the high pass hardware filter
% cut off frequency.

HardwareFilters.LowpassFilter.CutoffFrequency = []; % Contains the low pass hardware filter
% cut off frequency.

ieeg_json.HardwareFilters = HardwareFilters; % Cutoff frequencies of high and low pass filter
% are stored in this variable automatically. No further input necessary.

ieeg_json.Manufacturer = ''; % Manufacturer of the amplifier system (e.g. "TDT, blackrock")

Expand Down
Expand Up @@ -4,7 +4,14 @@
"PowerLineFrequency": "",
"SoftwareFilters": "",
"DCOffsetCorrection": "",
"HardwareFilters": "",
"HardwareFilters": {
"HighpassFilter": {
"CutoffFrequency": []
},
"LowpassFilter": {
"CutoffFrequency": []
}
},
"Manufacturer": "",
"ManufacturersModelName": "",
"TaskDescription": "",
Expand Down

0 comments on commit 872e094

Please sign in to comment.