Skip to content
Snippets Groups Projects
Verified Commit e548e363 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

is{row,column,matrix} are builtin functions, not M-files

parent 7f27abca
No related branches found
No related tags found
No related merge requests found
......@@ -112,15 +112,15 @@ if ~exist('one_sided_hp_filter','file')
p{end+1} = 'utilities/missing/one_sided_hp_filter';
end
if ~exist('OCTAVE_VERSION') && ~exist('ismatrix','file')
if ~exist('OCTAVE_VERSION') && ~exist('ismatrix','builtin')
p{end+1} = 'utilities/missing/ismatrix';
end
if ~exist('OCTAVE_VERSION') && ~exist('isrow','file')
if ~exist('OCTAVE_VERSION') && ~exist('isrow','builtin')
p{end+1} = 'utilities/missing/isrow';
end
if ~exist('OCTAVE_VERSION') && ~exist('iscolumn','file')
if ~exist('OCTAVE_VERSION') && ~exist('iscolumn','builtin')
p{end+1} = 'utilities/missing/iscolumn';
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment