Skip to content

Commit 5215e25

Browse files
committed
Matlab R2016b for a couple vital functions
1 parent 4210c6f commit 5215e25

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

+stdlib/ncsize.m

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
% fsize: vector of variable size per dimension. Empty if scalar variable.
99

1010
function fsize = ncsize(file, variable)
11-
arguments
12-
file
13-
variable
14-
end
1511

1612
dsi = ncinfo(file, variable);
1713
if isempty(dsi.Dimensions)

+stdlib/platform_tell.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
raw = struct("matlab_release", r, ...
1212
"matlab_arch", computer('arch'), ...
13-
"cpu_arch", stdlib.cpu_arch(), ...
1413
"hdf5", stdlib.h5get_version(), ...
1514
"netcdf", stdlib.nc_get_version());
1615

+stdlib/python_version.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
% HPC with "module load python3..."
1414

1515
function v = python_version(force_old)
16-
arguments
17-
force_old (1,1) logical = false
16+
if nargin < 1
17+
force_old = false;
1818
end
1919

2020
persistent stdlib_py_version

0 commit comments

Comments
 (0)