We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 240c6d2 commit 7f345abCopy full SHA for 7f345ab
bidspm.m
@@ -16,7 +16,7 @@ function bidspm(varargin)
16
isEmptyOrCellstr = @(x) isempty(x) || iscellstr(x); %#ok<*ISCLSTR>
17
isFileOrStruct = @(x) isstruct(x) || exist(x, 'file') == 2;
18
19
- isLogical = @(x) islogial(x) && numel(x) == 1;
+ isLogical = @(x) islogical(x) && numel(x) == 1;
20
isChar = @(x) ischar(x);
21
isPositiveScalar = @(x) isnumeric(x) && numel(x) == 1 && x >= 0;
22
0 commit comments