-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathONEWS-1.7.x
More file actions
272 lines (165 loc) · 7.99 KB
/
ONEWS-1.7.x
File metadata and controls
272 lines (165 loc) · 7.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
Summary of important user-visible changes for statistics 1.7.0:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
New functions:
==============
** fcnnpredict
** fcnntrain
** fitcdiscr
** fitcgam
** fitcnet
** fitcsvm
** loadmodel
** signrank
New classdefs:
==============
** ClassificationDiscriminant
** ClassificationGAM
** ClassificationNeuralNetwork
** ClassificationPartitionedModel
** ClassificationSVM
** CompactClassificationDiscriminant
** CompactClassificationGAM
** CompactClassificationNeuralNetwork
** CompactClassificationSVM
Improvements:
=============
** BinomialDistribution: fix computations on truncated distribution
methods (github issue #128)
** ClassificationKNN: new methods and various bug fixes
** finv: fix erratic output for very large DF2 (savannah bug #66034)
** fitcknn: support for cross-validation
** NegativeBinomialDistribution: fixed computations on truncated distribution
methods (github issue #128)
** plot method for probability distribution objects updated to support 'cdf'
and 'probability' PlotType options (github issue #129)
** PoissonDistribution: fixed computations on truncated distribution
methods (github issue #128)
Summary of important user-visible changes for statistics 1.7.1:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
Improvements:
=============
** ClassificationPartitionedModel: add input validation for cvpartition
object (github issue #160)
** ClassificationNeuralNetwork: use named variable for timing training
(github issue #169)
** kstest: add support for probability distribution objects, fix previous
regression related to failing test (github issues #164, #165, #167),
add more BISTs and a DEMO
** RegressionGAM: add iteration limit to the private fitGAM function to avoid
infinite loop with Netlib BLAS/LAPACK (github issue #160)
Summary of important user-visible changes for statistics 1.7.2:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
Improvements:
=============
** fcnnpredict, fcnntrain: various bug fixes, allow MacOS users to enable
support for OpenMP (github issues #168, #171, #172)
** editDistance: use correct index types to avoid compiler warnings
(github issue #171)
Summary of important user-visible changes for statistics 1.7.3:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
New functions:
==============
** glmval
Improvements:
=============
** glmfit: fixed output and updated functionality and compatibility
Summary of important user-visible changes for statistics 1.7.4:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
Improvements:
=============
** ClassificationDiscriminant, ClassificationKNN, ClassificationNeuralNetwork:
fix type of returning labels and ClassNames to be the same
as input Y, add custom display and subsref/subsassgn methods
** confusionchart: fix empty figures in demos (github issue #178)
** ConfusionMatrixChart: properly update cdata in figure (github issue #178)
** fitdist: fix occasionally failing BISTs (github issue #174)
** kmeans: fix empty figures in demos (github issue #179)
Summary of important user-visible changes for statistics 1.7.5:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
New functions:
==============
** createns
** multiway
New classdefs:
==============
** cvpartition
** ExhaustiveSearcher
** hnswSearcher
** KDTreeSearcher
Improvements:
=============
** chi2pdf, gampdf: fix INF handling (#203)
** crosstab: allow row vectors as input, fix numeric input ordering (#184)
** cvpartition: old style class has been replaced by classdef implementation.
'K-fold' partitioning is now randomized, and 'repartition'
method works for both 'k-fold' and 'holdout' partition types.
** fitdist: fix NaN handling as missing values (#203)
** fpdf, finv: fix output when DoF tend to infinity (#203)
** fullfact: fix MATLAB compatibility (#212)
** grpstats: fix MATLAB compatibility (#215)
** knnsearch, rangesearch: fix slow kd-tree implementation (#151)
** vartest, vartest2: fix computation of right tail p-value (#183)
** x2fx: fix variable shadowing in nested loops (#204)
** ztest: fix second output for one-tailed tests (#199, #200)
Summary of important user-visible changes for statistics 1.7.6:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
New functions:
==============
** factoran (#257)
** nanmean (#239)
Improvements:
=============
** Update documentation add demos to all distrbution objects. Several minor
bug fixes.
** ClassificationDiscriminant: improve documentation, allow changing 'Cost'
and 'Prior' properties in existing objects
** ClassificationKNN: 'predict' can use either exhaustive or kdtree method
** crosstab: fix NaN input handling, improve efficiency (#214, #219)
** crossval: fix MATLAB compatibility (#217, #223, #229)
** cvpartition: fix MATLAB compatibility (#227)
** multiway: simplified function signature, improved efficiency (#258, #259)
** nansum: fix MATLAB compatibility to handle 'vecdim' and 'all' options
** pdist2: fix returning the smallest/largest K values for single output
** tcdf: improve speed and fix edge case in processing small DF (#232)
** ztest2: improve input validation (#226)
Summary of important user-visible changes for statistics 1.7.7:
-------------------------------------------------------------------
Important Notice: 1) `mad`, `mean`, `median`, `std`, `var` functions
shadow core Octave's respective functions prior
to Octave v9.1
2) incompatibility with the `nan` package
Improvements:
=============
** Update documentation to all classification objects. Minor bug fixes (#263)
** Update documentation to ConfusionMatrixChart class (#285)
** cvpartition: fix error in stratified input vector (#268)
fix handling of missing observations (#269)
** pca: fix erroneous Hotelling's T^2 statistics when applying weights (#279)