Options controlling NaN handling changed in R2015a and R2023a authored by Sébastien Villemot's avatar Sébastien Villemot
...@@ -10,6 +10,8 @@ Release Notes](https://fr.mathworks.com/help/matlab/release-notes.html). ...@@ -10,6 +10,8 @@ Release Notes](https://fr.mathworks.com/help/matlab/release-notes.html).
pages of N-D arrays. In this context, the N-D array is treated as a container pages of N-D arrays. In this context, the N-D array is treated as a container
for several 2-D matrices. for several 2-D matrices.
- The `randi` function can now create random logical arrays - The `randi` function can now create random logical arrays
- Many functions for descriptive statistics and arithmetic (e.g. `max`, `min`, `mean`, `std`, `var`, `median`, `sum`, `prod`, `cummax`, `cummin`, `cumsum`, `cumprod`) now accept the `omitmissing` and `includemissing` options (the former being the default) (the older `omitnan` and `includenan` options are still supported)
# MATLAB 9.13 (R2022b) # MATLAB 9.13 (R2022b)
...@@ -128,7 +130,7 @@ Release Notes](https://fr.mathworks.com/help/matlab/release-notes.html). ...@@ -128,7 +130,7 @@ Release Notes](https://fr.mathworks.com/help/matlab/release-notes.html).
- New `mxIsScalar` function in MEX interface (but the function was apparently already present in R2014a, though not officially supported nor defined in headers) - New `mxIsScalar` function in MEX interface (but the function was apparently already present in R2014a, though not officially supported nor defined in headers)
- New `webwrite` function - New `webwrite` function
- First version to officially support Windows 10, see https://fr.mathworks.com/matlabcentral/answers/223444-is-matlab-compatible-with-windows-10 - First version to officially support Windows 10, see https://fr.mathworks.com/matlabcentral/answers/223444-is-matlab-compatible-with-windows-10
- The `mean` function now accepts the `omitnan` option - Many functions for descriptive statistics and arithmetic (e.g. `max`, `min`, `mean`, `std`, `var`, `median`, `sum`) now accept the `omitnan` and `includenan` options (the former being the default)
# MATLAB 8.4 (R2014b) # MATLAB 8.4 (R2014b)
... ...
......