Fix typo in commit 647ff5cd20

silicon
Sébastien Villemot 2023-03-17 18:19:03 +01:00
parent 4f52ba0dbc
commit 43190b001f
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ function aggregate(ofile, dynopt, rootfolder, varargin)
MAX_NUMBER_OF_ELEMENTS = 10000;
if ~isoctave && matlab_less_ver_than('9.14') % Warning removed in R2023a
if ~isoctave && matlab_ver_less_than('9.14') % Warning removed in R2023a
warning off MATLAB:subscripting:noSubscriptsSpecified
end
@ -320,7 +320,7 @@ end
fprintf(fid, 'end;');
fclose(fid);
if ~isoctave && matlab_less_ver_than('9.14')
if ~isoctave && matlab_ver_less_than('9.14')
warning on MATLAB:subscripting:noSubscriptsSpecified
end