Skip to content

Commit ffd4154

Browse files
committed
partial fix help section readAndFilter
1 parent 97ef11e commit ffd4154

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

src/readAndFilterLogfile.m

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
function [outputFiltered] = readAndFilterLogfile(columnName, filterBy, varargin)
44
%
5-
% It will display in the command window the content of the `output.tsv' filtered by one element
6-
% of a target column. Dependecies: bids_matlab (from CPP_BIDS)
5+
% It will display in the command window the content of the `output.tsv` filtered
6+
% by one element of a target column. Dependecies: bids_matlab (from CPP_BIDS)
77
%
88
% USAGE:
99
%
@@ -13,14 +13,18 @@
1313
% (e.g., for 'trigger' will be 'trial type')
1414
% :type columnName: string
1515
% :param filterBy: the content of the column you want to filter out. It can take just
16-
% part of the content name (for example, you want to display the triggers and
17-
% you have ``trigger_motion`` and ``trigger_static``, ``trigger``' as input
18-
% will do)
16+
% part of the content name (for example, you want to display the triggers and
17+
% you have ``trigger_motion`` and ``trigger_static``, ``trigger`` as input
18+
% will do)
1919
% :type filterBy: string
20-
% :param varargin: either ``cfg`` (to display the last run output) or the file path as string
20+
% :param varargin: either ``cfg`` (to display the last run output) or
21+
% the file path as string
2122
%
22-
% :returns: - outputFiltered: dataset with only the specified content, to see it in the command
23-
% window use display(outputFiltered)
23+
% :returns: - :outputFiltered: dataset with only the specified content
24+
% to see it in the command window use display(outputFiltered)
25+
%
26+
%
27+
2428

2529
% Checke if input is cfg or the file path
2630
if ischar(varargin{1})

0 commit comments

Comments
 (0)