annotate scripts/help/__unimplemented__.m @ 28494:75bb064c6769

maint: merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 21 Jun 2020 11:46:49 +0200
parents c126a60b0d52 c55e111c89b5
children 5da49e37a6c9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ########################################################################
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 ##
27919
1891570abac8 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27918
diff changeset
3 ## Copyright (C) 2010-2020 The Octave Project Developers
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 27820
diff changeset
4 ##
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 ## See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 ## distribution or <https://octave.org/copyright/>.
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
7 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
8 ## This file is part of Octave.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
9 ##
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 24492
diff changeset
10 ## Octave is free software: you can redistribute it and/or modify it
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
11 ## under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 24492
diff changeset
12 ## the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22586
diff changeset
13 ## (at your option) any later version.
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
14 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
15 ## Octave is distributed in the hope that it will be useful, but
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22586
diff changeset
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22586
diff changeset
18 ## GNU General Public License for more details.
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
19 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
20 ## You should have received a copy of the GNU General Public License
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
21 ## along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 24492
diff changeset
22 ## <https://www.gnu.org/licenses/>.
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 ##
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ########################################################################
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
25
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
26 ## -*- texinfo -*-
20852
516bb87ea72e 2015 Code Sprint: remove class of function from docstring for all m-files.
Rik <rik@octave.org>
parents: 20670
diff changeset
27 ## @deftypefn {} {@var{txt} =} __unimplemented__ (@var{fcn})
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
28 ## Return specific help text for the unimplemented function @var{fcn}.
20158
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19948
diff changeset
29 ##
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
30 ## This is usually a suggestion for an existing compatible function to use in
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
31 ## place of @var{fcn}.
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
32 ##
20158
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19948
diff changeset
33 ## This function is not called by users, but by the Octave interpreter when it
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19948
diff changeset
34 ## fails to recognize an input string as a valid function name. See
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
35 ## @code{missing_function_hook} for using a different handler for this event.
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
36 ## @seealso{missing_function_hook}
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
37 ## @end deftypefn
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
38
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
39
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
40 function txt = __unimplemented__ (fcn)
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
41
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
42 if (nargin != 1)
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
43 print_usage ();
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
44 endif
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
45
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
46 is_matlab_function = true;
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
47
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
48 ## Some smarter cases, add more as needed.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
49 switch (fcn)
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
50 case {"avifile", "aviinfo", "aviread"}
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
51 txt = ["Basic video file support is provided in the video package. ", ...
25025
7fb82487e828 maint: use https for Octave Forge project URLs
Mike Miller <mtmiller@octave.org>
parents: 25024
diff changeset
52 "See @url{https://octave.sourceforge.io/video/}."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
53
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
54 case "funm"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
55 txt = ["funm is not currently part of core Octave. ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
56 "See the linear-algebra package at ", ...
25025
7fb82487e828 maint: use https for Octave Forge project URLs
Mike Miller <mtmiller@octave.org>
parents: 25024
diff changeset
57 "@url{https://octave.sourceforge.io/linear-algebra/}."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
58
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
59 case "griddedInterpolant"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
60 txt = ["griddedInterpolant is not implemented. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
61 "Consider using griddata."];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
62
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
63 case "linprog"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
64 txt = ["Octave does not currently provide linprog. ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
65 "Linear programming problems may be solved using @code{glpk}. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
66 "Try @code{help glpk} for more info."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
67
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
68 case "matlabrc"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
69 txt = ["matlabrc is not implemented. ", ...
24148
2e64bed0bb3a Updated integral2.m and integral3.m and added quad2d (bug #52074).
Nicholas R. Jankowski <jankowskin@asme.org>
parents: 24136
diff changeset
70 "Octave uses the file '.octaverc' instead."];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
71
28308
8085ae13cc4a ode23s.m: new function from former odepkg (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 27970
diff changeset
72 case {"ode113", "ode23t", "ode23tb"}
8085ae13cc4a ode23s.m: new function from former odepkg (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 27970
diff changeset
73 txt = ["Octave provides lsode and ode15i, ode15s, ode23, ode23s, ", ...
8085ae13cc4a ode23s.m: new function from former odepkg (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 27970
diff changeset
74 "and ode45 for solving differential equations. For more", ...
8085ae13cc4a ode23s.m: new function from former odepkg (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 27970
diff changeset
75 "information try @code{help lsode}, @code{help ode45}. ", ...
28332
cf7edf5577c3 doc: Improve ODE solver documentation (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 28308
diff changeset
76 "Further specialized ODE solvers are provided by the odepkg ", ...
cf7edf5577c3 doc: Improve ODE solver documentation (bug #57309)
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 28308
diff changeset
77 "package. See @url{https://wiki.octave.org/Odepkg}."];
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
78
24400
62add1b69100 Add polarplot() to the list of unimplemented functions (bug #52643).
Rik <rik@octave.org>
parents: 23144
diff changeset
79 case "polarplot"
62add1b69100 Add polarplot() to the list of unimplemented functions (bug #52643).
Rik <rik@octave.org>
parents: 23144
diff changeset
80 txt = ["polarplot is not implemented. Consider using polar."];
62add1b69100 Add polarplot() to the list of unimplemented functions (bug #52643).
Rik <rik@octave.org>
parents: 23144
diff changeset
81
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
82 case "startup"
27966
904c9e3244bc help: improve documentation for the startup.m user script
Mike Miller <mtmiller@octave.org>
parents: 27313
diff changeset
83 txt = ["'startup.m' is a user startup and configuration script. ", ...
904c9e3244bc help: improve documentation for the startup.m user script
Mike Miller <mtmiller@octave.org>
parents: 27313
diff changeset
84 "Try @code{doc startup} for more information."];
15550
1f90fc84065a unimplemented.m: add sections for/drop functions in octave-forge
Philip Nienhuis <prnienhuis@users.sf.net>
parents: 15548
diff changeset
85
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
86 case {"xlsread", "xlsfinfo", "xlswrite", "wk1read", "wk1finfo", "wk1write"}
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
87 txt = ["Functions for spreadsheet style I/O ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
88 "(.xls .xlsx .sxc .ods .dbf .wk1 etc.) " , ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
89 "are provided in the io package. ", ...
25025
7fb82487e828 maint: use https for Octave Forge project URLs
Mike Miller <mtmiller@octave.org>
parents: 25024
diff changeset
90 "See @url{https://octave.sourceforge.io/io/}."];
15550
1f90fc84065a unimplemented.m: add sections for/drop functions in octave-forge
Philip Nienhuis <prnienhuis@users.sf.net>
parents: 15548
diff changeset
91
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
92 ## control system
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
93 case {"absorbDelay", "allmargin", "append", "augstate", "balreal", ...
18904
9addb5ad9426 bandwidth.m: Add new function.
Massimiliano Fasi <massimiliano.fasi@gmail.com>
parents: 18729
diff changeset
94 "balred", "balredOptions", "bdschur", "bode", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
95 "bodemag", "bodeoptions", "bodeplot", "c2d", "c2dOptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
96 "canon", "care", "chgFreqUnit", "chgTimeUnit", "connect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
97 "connectOptions", "covar", "ctrb", "ctrbf", "ctrlpref", "d2c", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
98 "d2cOptions", "d2d", "d2dOptions", "damp", "dare", "db2mag", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
99 "dcgain", "delay2z", "delayss", "dlqr", "dlyap", "dlyapchol", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
100 "drss", "dsort", "dss", "dssdata", "esort", "estim", "evalfr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
101 "feedback", "filt", "frd", "frdata", "freqresp", "gcare", "gdare", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
102 "genfrd", "genmat", "gensig", "genss", "get", "getBlockValue", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
103 "getDelayModel", "getGainCrossover", "getIOTransfer", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
104 "getLFTModel", "getLoopTransfer", "getNominal", "getoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
105 "getPeakGain", "getSwitches", "getValue", "gram", "hasdelay", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
106 "hasInternalDelay", "hsvd", "hsvdOptions", "hsvoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
107 "hsvplot", "imp2exp", "impulse", "impulseplot", "initial", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
108 "initialplot", "iopzmap", "iopzplot", "isct", "isdt", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
109 "isfinite", "isParametric", "isproper", "isreal", "issiso", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
110 "isstable", "isstatic", "kalman", "kalmd", "lft", "loopswitch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
111 "lqg", "lqgreg", "lqgtrack", "lqi", "lqr", "lqrd", "lqry", "lsim", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
112 "lsiminfo", "lsimplot", "ltiview", "lyap", "lyapchol", "mag2db", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
113 "margin", "minreal", "modred", "modsep", "nblocks", "ndims", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
114 "ngrid", "nichols", "nicholsoptions", "nicholsplot", "nmodels", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
115 "norm", "nyquist", "nyquistoptions", "nyquistplot", "obsv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
116 "obsvf", "order", "pade", "parallel", "permute", "pid", "piddata", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
117 "pidstd", "pidstddata", "pidtool", "pidtune", "pidtuneOptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
118 "place", "pole", "prescale", "pzmap", "pzoptions", "pzplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
119 "realp", "reg", "replaceBlock", "repsys", "reshape", "rlocus", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
120 "rlocusplot", "rss", "series", "set", "setBlockValue", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
121 "setDelayModel", "setoptions", "setValue", "sgrid", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
122 "showBlockValue", "showTunable", "sigma", "sigmaoptions", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
123 "sigmaplot", "sisoinit", "sisotool", "sminreal", "ss", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
124 "ss2ss", "ssdata", "stabsep", "stabsepOptions", "stack", "step", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
125 "stepDataOptions", "stepinfo", "stepplot", "sumblk", "tf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
126 "tfdata", "thiran", "timeoptions", "totaldelay", "tzero", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
127 "updateSystem", "upsample", "xperm", "zero", "zgrid", "zpk", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
128 "zpkdata"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
129 txt = check_package (fcn, "control");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
130
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
131 ## communications
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
132 case {"algdeintrlv", "algintrlv", "alignsignals", "amdemod", "ammod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
133 "arithdeco", "arithenco", "awgn", "bchdec", "bchenc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
134 "bchgenpoly", "bchnumerr", "berawgn", "bercoding", "berconfint", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
135 "berfading", "berfit", "bersync", "bertool", "bi2de", "bin2gray", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
136 "biterr", "bsc", "cma", "commscope", "compand", "convdeintrlv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
137 "convenc", "convintrlv", "convmtx", "cosets", "cyclgen", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
138 "cyclpoly", "de2bi", "decode", "deintrlv", "dfe", "dftmtx", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
139 "distspec", "doppler", "dpcmdeco", "dpcmenco", "dpcmopt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
140 "dpskdemod", "dpskmod", "dvbs2ldpc", "encode", "equalize", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
141 "eyediagram", "EyeScope", "finddelay", "fmdemod", "fmmod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
142 "fskdemod", "fskmod", "gaussdesign", "gen2par", "genqamdemod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
143 "genqammod", "gf", "gfadd", "gfconv", "gfcosets", "gfdeconv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
144 "gfdiv", "gffilter", "gflineq", "gfminpol", "gfmul", "gfpretty", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
145 "gfprimck", "gfprimdf", "gfprimfd", "gfrank", "gfrepcov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
146 "gfroots", "gfsub", "gftable", "gftrunc", "gftuple", "gfweight", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
147 "gray2bin", "hammgen", "heldeintrlv", "helintrlv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
148 "helscandeintrlv", "helscanintrlv", "huffmandeco", "huffmandict", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
149 "huffmanenco", "intdump", "intrlv", "iscatastrophic", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
150 "isprimitive", "istrellis", "legacychannelsim", "lineareq", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
151 "lloyds", "lms", "lteZadoffChuSeq", "marcumq", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
152 "mask2shift", "matdeintrlv", "matintrlv", "minpol", "mldivide", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
153 "mlseeq", "modnorm", "muxdeintrlv", "muxintrlv", "noisebw", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
154 "normlms", "oct2dec", "oqpskdemod", "oqpskmod", "pamdemod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
155 "pammod", "pmdemod", "pmmod", "poly2trellis", "primpoly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
156 "pskdemod", "pskmod", "qamdemod", "qammod", "qfunc", "qfuncinv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
157 "quantiz", "randdeintrlv", "randerr", "randintrlv", "randsrc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
158 "rayleighchan", "rcosdesign", "rectpulse", "reset", "ricianchan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
159 "rls", "rsdec", "rsenc", "rsgenpoly", "rsgenpolycoeffs", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
160 "scatterplot", "sdrexamples", "sdrfgensysace", "sdrfroot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
161 "sdrinfo", "sdrload", "sdrsetup", "semianalytic", "shift2mask", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
162 "signlms", "ssbdemod", "ssbmod", "stdchan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
163 "supportPackageInstaller", "symerr", "syndtable", "varlms", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
164 "vec2mat", "vitdec", "wgn"}
17518
6c62150b454a __unimplemented__.m: Use correct name of the communications package
Mike Miller <mtmiller@ieee.org>
parents: 17511
diff changeset
165 txt = check_package (fcn, "communications");
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
166
28493
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
167 ## dicom
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
168 case {"addContour", "convertToInfo", "dicomanon", "dicomBrowser", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
169 "dicomCollection", "dicomContours", "dicomdict", "dicomdisp", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
170 "dicominfo", "dicomlookup", "dicomread", "dicomreadVolume", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
171 "dicomuid", "dicomwrite", "deleteContour", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
172 "images.dicom.decodeUID", "images.dicom.parseDICOMDIR", "isdicom", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
173 "plotContour"}
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
174 txt = check_package (fcn, "dicom");
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
175
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
176 ## finance
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
177 case {"abs2active", "accrfrac", "acrubond", "acrudisc", "active2abs", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
178 "addEquality", "addGroupRatio", "addGroups", "addInequality", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
179 "adline", "adosc", "amortize", "annurate", "annuterm", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
180 "arith2geom", "ascii2fts", "beytbill", "binprice", "blkimpv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
181 "blkprice", "blsdelta", "blsgamma", "blsimpv", "blslambda", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
182 "blsprice", "blsrho", "blstheta", "blsvega", "bndconvp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
183 "bndconvy", "bnddurp", "bnddury", "bndkrdur", "bndprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
184 "bndspread", "bndtotalreturn", "bndyield", "bolling", "bollinger", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
185 "boxcox", "busdate", "busdays", "candle", "cdai", "cdprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
186 "cdyield", "cfamounts", "cfbyzero", "cfconv", "cfdates", "cfdur", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
187 "cfplot", "cfport", "cfprice", "cfspread", "cftimes", "cfyield", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
188 "chaikosc", "chaikvolat", "chartfts", "checkFeasibility", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
189 "chfield", "convert2sur", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
190 "convertto", "corr2cov", "cov2corr", "cpncount", "cpndaten", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
191 "cpndatenq", "cpndatep", "cpndaysp", "cpnpersz", "createholidays", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
192 "cumsum", "cur2frac", "cur2str", "date2time", "dateaxis", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
193 "datedisp", "datefind", "datemnth", "datewrkdy", "day", "days360", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
194 "days360e", "days360isda", "days360psa", "days365", "daysact", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
195 "daysadd", "daysdif", "dec2thirtytwo", "depfixdb", "depgendb", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
196 "deprdv", "depsoyd", "depstln", "diff", "disc2zero", "discrate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
197 "ecmmvnrfish", "ecmmvnrmle", "ecmmvnrobj", "ecmmvnrstd", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
198 "ecmnfish", "ecmnhess", "ecmninit", "ecmnmle", "ecmnobj", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
199 "ecmnstd", "effrr", "elpm", "emaxdrawdown", "end", "eomdate", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
200 "estimateAssetMoments", "estimateBounds", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
201 "estimateFrontier", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
202 "estimateFrontierByReturn", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
203 "estimateFrontierByRisk", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
204 "estimateFrontierLimits", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
205 "estimateMaxSharpeRatio", "estimatePortMoments", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
206 "estimatePortReturn", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
207 "estimatePortRisk", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
208 "estimatePortStd", "estimatePortVaR", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
209 "estimateScenarioMoments", "ewstats", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
210 "exp", "extfield", "fbusdate", "fetch", "fieldnames", "fillts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
211 "fints", "floatdiscmargin", "floatmargin", "fpctkd", "frac2cur", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
212 "freqnum", "freqstr", "frontcon", "frontier", "fts2ascii", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
213 "fts2mat", "ftsbound", "ftsgui", "ftsinfo", "ftstool", "ftsuniq", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
214 "fvdisc", "fvfix", "fvvar", "fwd2zero", "geom2arith", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
215 "getAssetMoments", "getBounds", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
216 "getBudget", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
217 "getCosts", "getEquality", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
218 "getGroupRatio", "getGroups", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
219 "getInequality", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
220 "getnameidx", "getOneWayTurnover", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
221 "getScenarios", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
222 "hhigh", "highlow", "holdings2weights", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
223 "holidays", "horzcat", "hour", "inforatio", "irr", "isbusday", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
224 "iscompatible", "isfield", "issorted", "kagi", "lagts", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
225 "lbusdate", "leadts", "length", "linebreak", "llow", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
226 "log10", "log2", "lpm", "lweekdate", "m2xdate", "macd", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
227 "maxdrawdown", "medprice", "merge", "minus", "minute", "mirr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
228 "month", "months", "movavg", "mrdivide", "mtimes", "mvnrfish", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
229 "mvnrmle", "mvnrobj", "mvnrstd", "negvolidx", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
230 "nomrr", "nweekdate", "nyseclosures", "onbalvol", "opprofit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
231 "payadv", "payodd", "payper", "payuni", "pcalims", "pcgcomp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
232 "pcglims", "pcpval", "peravg", "periodicreturns", "plotFrontier", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
233 "plus", "pointfig", "portalloc", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
234 "portalpha", "portcons", "Portfolio", "PortfolioCVaR", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
235 "PortfolioMAD", "portopt", "portrand", "portror", "portsim", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
236 "portstats", "portvar", "portvrisk", "posvolidx", "power", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
237 "prbyzero", "prcroc", "prdisc", "priceandvol", "prmat", "prtbill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
238 "pvfix", "pvtrend", "pvvar", "pyld2zero", "rdivide", "renko", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
239 "resamplets", "ret2tick", "rmfield", "rsindex", "selectreturn", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
240 "setAssetList", "setAssetMoments", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
241 "setBounds", "setBudget", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
242 "setCosts", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
243 "setDefaultConstraints", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
244 "setEquality", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
245 "setGroupRatio", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
246 "setGroups", "setInequality", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
247 "setInitPort", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
248 "setOneWayTurnover", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
249 "setProbabilityLevel", "setScenarios", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
250 "setSolver", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
251 "setTurnover", "sharpe", ...
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
252 "simulateNormalScenariosByData", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
253 "simulateNormalScenariosByMoments", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
254 "smoothts", "sortfts", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
255 "spctkd", "stochosc", "subsasgn", "subsref", "targetreturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
256 "taxedrr", "tbilldisc2yield", "tbillprice", "tbillrepo", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
257 "tbillval01", "tbillyield", "tbillyield2disc", "tbl2bond", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
258 "thirdwednesday", "thirtytwo2dec", "tick2ret", "time2date", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
259 "times", "toannual", "todaily", "today", "todecimal", "tomonthly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
260 "toquarterly", "toquoted", "tosemi", "totalreturnprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
261 "toweekly", "tr2bonds", "transprob", "transprobbytotals", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
262 "transprobfromthresholds", "transprobgrouptotals", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
263 "transprobprep", "transprobtothresholds", "tsaccel", "tsmom", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
264 "tsmovavg", "typprice", "ugarch", "ugarchllf", "ugarchpred", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
265 "ugarchsim", "uicalendar", "uminus", "uplus", "vertcat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
266 "volarea", "volroc", "wclose", "weeknum", "weights2holdings", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
267 "willad", "willpctr", "wrkdydif", "x2mdate", "xirr", "year", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
268 "yeardays", "yearfrac", "ylddisc", "yldmat", "yldtbill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
269 "zbtprice", "zbtyield", "zero2disc", "zero2fwd", "zero2pyld"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
270 txt = check_package (fcn, "financial");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
271
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
272 ## image processing
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
273 case {"activecontour", "adapthisteq", "affine2d", "affine3d", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
274 "analyze75info", "analyze75read", "applycform", "applylut", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
275 "axes2pix", "bestblk", "blockproc", "bwarea", "bwareaopen", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
276 "bwboundaries", "bwconncomp", "bwconvhull", "bwdist", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
277 "bwdistgeodesic", "bweuler", "bwhitmiss", "bwlabel", "bwlabeln", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
278 "bwlookup", "bwmorph", "bwpack", "bwperim", "bwselect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
279 "bwtraceboundary", "bwulterode", "bwunpack", "checkerboard", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
280 "col2im", "colfilt", "conndef", "convmtx2", "corner", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
281 "cornermetric", "corr2", "cp2tform", "cpcorr", "cpselect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
282 "cpstruct2pairs", "dct2", "dctmtx", "deconvblind", "deconvlucy", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
283 "deconvreg", "deconvwnr", "decorrstretch", "demosaic", ...
28493
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
284 "edge", "edgetaper", "entropy", "entropyfilt", "fan2para", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
285 "fanbeam", "findbounds", "fitgeotrans", "fliptform", "freqz2", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
286 "fsamp2", "fspecial", "ftrans2", "fwind1", "fwind2", "getheight", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
287 "getimage", "getimagemodel", "getline", "getneighbors", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
288 "getnhood", "getpts", "getrect", "getsequence", "graycomatrix", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
289 "graycoprops", "graydist", "grayslice", "graythresh", "hdrread", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
290 "hdrwrite", "histeq", "hough", "houghlines", "houghpeaks", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
291 "iccfind", "iccread", "iccroot", "iccwrite", "idct2", "ifanbeam", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
292 "im2bw", "im2col", "im2double", "im2int16", "im2java2d", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
293 "im2single", "im2uint16", "im2uint8", "imabsdiff", "imadd", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
294 "imadjust", "ImageAdapter", "imageinfo", "imapplymatrix", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
295 "imapprox", "imattributes", "imbothat", "imclearborder", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
296 "imclose", "imcolormaptool", "imcomplement", "imcontour", ...
c55e111c89b5 __unimplemented__.m: Add section for of-package "dicom" (bug #58633).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28332
diff changeset
297 "imcontrast", "imcrop", "imdilate", "imdisplayrange", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
298 "imdistline", "imdivide", "imellipse", "imerode", "imextendedmax", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
299 "imextendedmin", "imfill", "imfilter", "imfindcircles", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
300 "imfreehand", "imfuse", "imgca", "imgcf", "imgetfile", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
301 "imgradient", "imgradientxy", "imhandles", "imhist", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
302 "imhistmatch", "imhmax", "imhmin", "imimposemin", "imlincomb", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
303 "imline", "immagbox", "immovie", "immultiply", "imnoise", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
304 "imopen", "imoverview", "imoverviewpanel", "impixel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
305 "impixelinfo", "impixelinfoval", "impixelregion", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
306 "impixelregionpanel", "implay", "impoint", "impoly", "improfile", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
307 "impyramid", "imquantize", "imreconstruct", "imrect", "imref2d", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
308 "imref3d", "imregconfig", "imregionalmax", "imregionalmin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
309 "imregister", "imregtform", "imresize", "imroi", "imrotate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
310 "imsave", "imscrollpanel", "imsharpen", "imshowpair", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
311 "imsubtract", "imtool", "imtophat", "imtransform", "imwarp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
312 "interfileinfo", "interfileread", "intlut", "iptaddcallback", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
313 "iptcheckconn", "iptcheckhandle", "iptgetapi", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
314 "iptGetPointerBehavior", "iptgetpref", "ipticondir", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
315 "iptPointerManager", "iptprefs", "iptremovecallback", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
316 "iptSetPointerBehavior", "iptsetpref", "iptwindowalign", "iradon", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
317 "isflat", "isicc", "isrset", "lab2double", "lab2uint16", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
318 "lab2uint8", "label2rgb", "labelmatrix", "makecform", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
319 "makeConstrainToRectFcn", "makehdr", "makelut", "makeresampler", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
320 "maketform", "mat2gray", "mean2", "medfilt2", "montage", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
321 "multithresh", "nitfinfo", "nitfread", "nlfilter", "normxcorr2", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
322 "openrset", "ordfilt2", "otf2psf", "padarray", "para2fan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
323 "phantom", "poly2mask", "projective2d", "psf2otf", "qtdecomp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
324 "qtgetblk", "qtsetblk", "radon", "rangefilt", "reflect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
325 "regionprops", "rgb2gray", "rgb2ycbcr", "roicolor", "roifill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
326 "roifilt2", "roipoly", "rsetwrite", "std2", "stdfilt", "strel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
327 "stretchlim", "subimage", "tformarray", "tformfwd", "tforminv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
328 "tonemap", "translate", "truesize", "viscircles", "warp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
329 "watershed", "whitepoint", "wiener2", "xyz2double", "xyz2uint16", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
330 "ycbcr2rgb"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
331 txt = check_package (fcn, "image");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
332
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
333 ## signal processing
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
334 case {"ac2poly", "ac2rc", "angle", "arburg", "arcov", "armcov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
335 "aryule", "bandpower", "barthannwin", "besselap", "besself", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
336 "bilinear", "bitrevorder", "blackmanharris", "bohmanwin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
337 "buffer", "buttap", "butter", "buttord", "cceps", "cconv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
338 "cell2sos", "cfirpm", "cheb1ap", "cheb1ord", "cheb2ap", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
339 "cheb2ord", "chebwin", "cheby1", "cheby2", "chirp", "convmtx", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
340 "corrmtx", "cpsd", "czt", "db", "db2mag", "db2pow", "dct", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
341 "decimate", "demod", "design", "designmethods", "designopts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
342 "dfilt", "dftmtx", "digitrevorder", "diric", "downsample", "dpss", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
343 "dpssclear", "dpssdir", "dpssload", "dspdata", "dspfwiz", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
344 "dutycycle", "ellip", "ellipap", "ellipord", "enbw", "equiripple", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
345 "falltime", "fdatool", "fdesign", "filt2block", "filterbuilder", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
346 "filternorm", "filtfilt", "filtic", "filtord", "findpeaks", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
347 "fir1", "fir2", "fircls", "fircls1", "firls", "firpm", "firpmord", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
348 "firrcos", "firtype", "flattopwin", "freqs", "freqsamp", "fvtool", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
349 "fwht", "gauspuls", "gaussdesign", "gaussfir", "gausswin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
350 "gmonopuls", "goertzel", "grpdelay", "hann", "hilbert", "icceps", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
351 "idct", "ifwht", "impinvar", "impz", "impzlength", "interp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
352 "intfilt", "invfreqs", "invfreqz", "is2rc", "isallpass", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
353 "islinphase", "ismaxphase", "isminphase", "isstable", "kaiser", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
354 "kaiserord", "kaiserwin", "lar2rc", "latc2tf", "latcfilt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
355 "levinson", "lp2bp", "lp2bs", "lp2hp", "lp2lp", "lpc", "lsf2poly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
356 "mag2db", "marcumq", "maxflat", "medfilt1", "midcross", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
357 "modulate", "mscohere", "nuttallwin", "overshoot", "parzenwin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
358 "pburg", "pcov", "peak2peak", "peak2rms", "peig", "phasedelay", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
359 "phasez", "pmcov", "pmtm", "pmusic", "poly2ac", "poly2lsf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
360 "poly2rc", "polyscale", "polystab", "pow2db", "prony", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
361 "pulseperiod", "pulsesep", "pulsewidth", "pulstran", "pwelch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
362 "pyulear", "rc2ac", "rc2is", "rc2lar", "rc2poly", "rceps", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
363 "rcosdesign", "realizemdl", "rectpuls", "rectwin", "resample", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
364 "residuez", "risetime", "rlevinson", "rms", "rooteig", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
365 "rootmusic", "rssq", "sawtooth", "schurrc", "seqperiod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
366 "setspecs", "settlingtime", "sfdr", "sgolay", "sgolayfilt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
367 "shiftdata", "sigwin", "sinad", "slewrate", "snr", "sos2cell", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
368 "sos2ss", "sos2tf", "sos2zp", "sosfilt", "spectrogram", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
369 "spectrum", "sptool", "square", "ss2sos", "ss2tf", "ss2zp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
370 "statelevels", "stepz", "stmcb", "strips", "taylorwin", "tf2latc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
371 "tf2sos", "tf2ss", "tf2zp", "tf2zpk", "tfestimate", "thd", "toi", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
372 "triang", "tripuls", "tukeywin", "udecode", "uencode", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
373 "undershoot", "unshiftdata", "upfirdn", "upsample", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
374 "validstructures", "vco", "window", "wintool", "wvtool", "xcorr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
375 "xcorr2", "xcov", "yulewalk", "zerophase", "zp2sos", "zp2ss", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
376 "zp2tf", "zplane"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
377 txt = check_package (fcn, "signal");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
378
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
379 ## statistics
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
380 case {"addedvarplot", "addlevels", "addTerms", "adtest", "andrewsplot", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
381 "anova", "anova1", "anova2", "anovan", "ansaribradley", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
382 "aoctool", "bartlett_test", "barttest", "bbdesign", "betacdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
383 "betafit", "betainv", "betalike", "betapdf", "betarnd", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
384 "betastat", "binocdf", "binofit", "binoinv", "binopdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
385 "binornd", "binostat", "biplot", "bootci", "bootstrp", "boxplot", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
386 "candexch", "candgen", "canoncorr", "capability", "capaplot", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
387 "caseread", "casewrite", "cauchy_cdf", "cauchy_inv", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
388 "cauchy_pdf", "cauchy_rnd", "ccdesign", "cdf", "cdfplot", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
389 "cell2dataset", "chi2cdf", "chi2gof", "chi2inv", "chi2pdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
390 "chi2rnd", "chi2stat", "chisquare_test_homogeneity", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
391 "chisquare_test_independence", "cholcov", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
392 "ClassificationBaggedEnsemble", "ClassificationDiscriminant", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
393 "ClassificationEnsemble", "ClassificationKNN", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
394 "ClassificationPartitionedEnsemble", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
395 "ClassificationPartitionedModel", "ClassificationTree", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
396 "classify", "classregtree", "cloglog", "cluster", "clusterdata", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
397 "cmdscale", "coefCI", "coefTest", "combnk", "compact", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
398 "CompactClassificationDiscriminant", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
399 "CompactClassificationEnsemble", "CompactClassificationTree", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
400 "CompactRegressionEnsemble", "CompactRegressionTree", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
401 "CompactTreeBagger", "compare", "confusionmat", "controlchart", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
402 "controlrules", "cophenet", "copulacdf", "copulafit", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
403 "copulaparam", "copulapdf", "copularnd", "copulastat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
404 "cordexch", "corrcov", "cor_test", "covarianceParameters", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
405 "coxphfit", "createns", "crosstab", "crossval", "cvpartition", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
406 "datasample", "dataset", "dataset2cell", "dataset2struct", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
407 "dataset2table", "datasetfun", "daugment", "dcovary", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
408 "dendrogram", "designMatrix", "devianceTest", "dfittool", ...
23077
be0ae04721bf doc: Update unimplemented list of functions and where to find them (bug #50098).
Rik <rik@octave.org>
parents: 22585
diff changeset
409 "disttool", "droplevels", "dummyvar", "dwtest", "ecdf", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
410 "ecdfhist", "evalclusters", "evcdf", "evfit", "evinv", "evlike", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
411 "evpdf", "evrnd", "evstat", "ExhaustiveSearcher", "expcdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
412 "expfit", "expinv", "explike", "export", "exppdf", "exprnd", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
413 "expstat", "factoran", "fcdf", "ff2n", "finv", "fitdist", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
414 "fitensemble", "fitglm", "fitlm", "fitlme", "fitlmematrix", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
415 "fitnlm", "fitted", "fixedEffects", "fpdf", "fracfact", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
416 "fracfactgen", "friedman", "frnd", "fsurfht", "fullfact", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
417 "f_test_regression", "gagerr", "gamcdf", "gamfit", "gaminv", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
418 "gamlike", "gampdf", "gamrnd", "gamstat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
419 "GeneralizedLinearModel", "geocdf", "geoinv", "geomean", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
420 "geopdf", "geornd", "geostat", "getlabels", "getlevels", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
421 "gevcdf", "gevfit", "gevinv", "gevlike", "gevpdf", "gevrnd", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
422 "gevstat", "gline", "glmfit", "glmval", "glyphplot", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
423 "gmdistribution", "gname", "gpcdf", "gpfit", "gpinv", "gplike", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
424 "gplotmatrix", "gppdf", "gprnd", "gpstat", "grp2idx", "grpstats", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
425 "gscatter", "haltonset", "harmmean", "hist3", "histfit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
426 "hmmdecode", "hmmestimate", "hmmgenerate", "hmmtrain", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
427 "hmmviterbi", "hotelling_test", "hotelling_test_2", "hougen", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
428 "hygecdf", "hygeinv", "hygepdf", "hygernd", "hygestat", "icdf", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
429 "inconsistent", "interactionplot", "invpred", "islevel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
430 "ismissing", "isundefined", "iwishrnd", "jackknife", "jbtest", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
431 "johnsrnd", "join", "KDTreeSearcher", "kmeans", "knnsearch", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
432 "kolmogorov_smirnov_cdf", "kolmogorov_smirnov_test", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
433 "kolmogorov_smirnov_test_2", "kruskalwallis", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
434 "kruskal_wallis_test", "ksdensity", "kstest", "kstest2", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
435 "labels", "laplace_cdf", "laplace_inv", "laplace_pdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
436 "laplace_rnd", "lasso", "lassoglm", "lassoPlot", "levelcounts", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
437 "leverage", "lhsdesign", "lhsnorm", "lillietest", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
438 "LinearMixedModel", "LinearModel", "linhyptest", "linkage", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
439 "logistic_cdf", "logistic_inv", "logistic_pdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
440 "logistic_regression", "logistic_rnd", "logit", "logncdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
441 "lognfit", "logninv", "lognlike", "lognpdf", "lognrnd", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
442 "lognstat", "lsline", "mad", "mahal", "maineffectsplot", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
443 "makedist", "manova", "manova1", "manovacluster", "mat2dataset", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
444 "mcnemar_test", "mdscale", "mergelevels", "mhsample", "mle", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
445 "mlecov", "mnpdf", "mnrfit", "mnrnd", "mnrval", "multcompare", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
446 "multivarichart", "mvncdf", "mvnpdf", "mvnrnd", "mvregress", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
447 "mvregresslike", "mvtcdf", "mvtpdf", "mvtrnd", "NaiveBayes", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
448 "nancov", "nanmax", "nanmean", "nanmedian", "nanmin", "nanstd", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
449 "nansum", "nanvar", "nbincdf", "nbinfit", "nbininv", "nbinpdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
450 "nbinrnd", "nbinstat", "ncfcdf", "ncfinv", "ncfpdf", "ncfrnd", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
451 "ncfstat", "nctcdf", "nctinv", "nctpdf", "nctrnd", "nctstat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
452 "ncx2cdf", "ncx2inv", "ncx2pdf", "ncx2rnd", "ncx2stat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
453 "negloglik", "nlinfit", "nlintool", "nlmefit", "nlmefitsa", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
454 "nlparci", "nlpredci", "nnmf", "nominal", "NonLinearModel", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
455 "normcdf", "normfit", "norminv", "normlike", "normpdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
456 "normplot", "normrnd", "normspec", "normstat", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
457 "optimalleaforder", "ordinal", "parallelcoords", "paramci", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
458 "paretotails", "partialcorr", "partialcorri", "pca", "pcacov", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
459 "pcares", "pdf", "pdist", "pdist2", "pearsrnd", "perfcurve", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
460 "plotAdded", "plotAdjustedResponse", "plotDiagnostics", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
461 "plotEffects", "plotInteraction", "plotResiduals", "plotSlice", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
462 "plsregress", "poisscdf", "poissfit", "poissinv", "poisspdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
463 "poissrnd", "poisstat", "polyconf", "polytool", "ppca", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
464 "prctile", "predict", "princomp", "ProbDistUnivKernel", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
465 "ProbDistUnivParam", "probit", "probplot", "procrustes", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
466 "proflik", "prop_test_2", "qqplot", "qrandset", "qrandstream", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
467 "random", "randomEffects", "randsample", "randtool", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
468 "rangesearch", "ranksum", "raylcdf", "raylfit", "raylinv", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
469 "raylpdf", "raylrnd", "raylstat", "rcoplot", "refcurve", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
470 "refline", "regress", "RegressionBaggedEnsemble", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
471 "RegressionEnsemble", "RegressionPartitionedEnsemble", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
472 "RegressionPartitionedModel", "RegressionTree", "regstats", ...
26288
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
473 "relieff", "removeTerms", "residuals", "response", "ridge", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
474 "robustdemo", "robustfit", "rotatefactors", "rowexch", "rsmdemo", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
475 "rstool", "runstest", "run_test", "sampsizepwr", "scatterhist", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
476 "sequentialfs", "setlabels", "signrank", "signtest", "sign_test", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
477 "silhouette", "slicesample", "sobolset", "squareform", "statget", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
478 "statset", "stdnormal_cdf", "stdnormal_inv", "stdnormal_pdf", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
479 "stdnormal_rnd", "step", "stepwise", "stepwisefit", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
480 "stepwiseglm", "stepwiselm", "struct2dataset", "surfht", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
481 "svmclassify", "svmtrain", "table2dataset", "tabulate", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
482 "tblread", "tblwrite", "tcdf", "tdfread", "tiedrank", "tinv", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
483 "tpdf", "TreeBagger", "trimmean", "trnd", "truncate", "tstat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
484 "ttest", "ttest2", "t_test", "t_test_2", "t_test_regression", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
485 "unidcdf", "unidinv", "unidpdf", "unidrnd", "unidstat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
486 "unifcdf", "unifinv", "unifit", "unifpdf", "unifrnd", "unifstat", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
487 "u_test", "vartest", "vartest2", "vartestn", "var_test", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
488 "wblcdf", "wblfit", "wblinv", "wbllike", "wblpdf", "wblplot", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
489 "wblrnd", "wblstat", "welch_test", "wienrnd", "wilcoxon_test", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
490 "wishrnd", "x2fx", "xlsread", "xptread", "ztest", "z_test", ...
d41d137af059 help: document missing functions moved to the statistics package (bug #55094)
Mike Miller <mtmiller@octave.org>
parents: 26263
diff changeset
491 "z_test_2"}
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
492 txt = check_package (fcn, "statistics");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
493
19948
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
494 ## symbolic
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
495 case {"argnames", "bernoulli", "catalan", "charpoly", "chebyshevT", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
496 "chebyshevU", "children", "coshint", "cosint", "dawson", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
497 "digits", "dilog", "dirac", "divisors", "dsolve", "ei", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
498 "ellipticCE", "ellipticCK", "ellipticCPi", "ellipticE", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
499 "ellipticF", "ellipticK", "ellipticPi", "euler", "eulergamma", ...
24936
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
500 "expand", "finverse", "formula", "fresnelc", "fresnels", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
501 "funtool", "gegenbauerC", "harmonic", "heaviside", "hermiteH", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
502 "hypergeom", "igamma", "jacobiP", "kroneckerDelta", "kummerU", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
503 "laguerreL", "legendreP", "logint", "minpoly", "pochhammer", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
504 "poles", "poly2sym", "polylog", "pretty", "quorem", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
505 "rectangularPulse", "signIm", "simplify", "sinhint", "sinint", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
506 "solve", "ssinint", "sym", "sym2poly", "symfun", "sympref", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
507 "syms", "symvar", "triangularPulse", "vpa", "vpasolve", ...
0a2fe3ad0519 * __unimplemented__.m: move "expand" to symbolic package
Colin Macdonald <cbm@m.fsf.org>
parents: 24664
diff changeset
508 "whittakerM", "whittakerW", "zeta"}
23144
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
509 classes = {"sym", "symfun"};
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
510 txt = check_package (fcn, "symbolic", classes);
19948
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19747
diff changeset
511
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
512 ## optimization
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
513 case {"bintprog", "color", "fgoalattain", "fmincon", "fminimax", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
514 "fminsearch", "fseminf", "fzmult", "gangstr", "ktrlink", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
515 "linprog", "lsqcurvefit", "lsqlin", "lsqnonlin", "optimoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
516 "optimtool", "quadprog"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
517 txt = check_package (fcn, "optim");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
518
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
519 otherwise
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
520 if (ismember (fcn, missing_functions ()))
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
521 txt = ["The '" fcn "' function is not yet implemented in Octave."];
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
522 else
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
523 is_matlab_function = false;
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
524 txt = "";
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
525 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
526 endswitch
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
527
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
528 if (is_matlab_function)
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
529 txt = [txt, "\n\n@noindent\nPlease read ", ...
25024
3c817af70eed maint: use https for all Octave project URLs
Mike Miller <mtmiller@octave.org>
parents: 24937
diff changeset
530 "@url{https://www.octave.org/missing.html} to learn how ", ...
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
531 "you can contribute missing functionality."];
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
532 txt = __makeinfo__ (txt);
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
533 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
534
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
535 if (nargout == 0)
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
536 error ("Octave:missing-function", "%s\n", txt);
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
537 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
538
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
539 endfunction
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
540
23144
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
541 function txt = check_package (fcn, name, classes)
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
542
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
543 if (nargin < 3)
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
544 classes = {};
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
545 endif
21758
ffad2baa90f7 maint: Use newlines to make code more readable.
Rik <rik@octave.org>
parents: 21751
diff changeset
546
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
547 txt = sprintf ("The '%s' function belongs to the %s package from Octave Forge",
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
548 fcn, name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
549
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
550 [~, status] = pkg ("describe", name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
551 switch (tolower (status{1}))
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
552 case "loaded",
23144
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
553 for i = 1:length (classes)
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
554 cls = classes{i};
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
555 try
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
556 meths = methods (cls);
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
557 catch
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
558 meths = {};
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
559 end_try_catch
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
560 if (any (strcmp (fcn, meths)))
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
561 txt = sprintf (["'%s' is a method of class '%s'; it must be ", ...
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
562 "called with a '%s' argument (see 'help @@%s/%s')."],
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
563 fcn, cls, cls, cls, fcn);
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
564 return
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
565 endif
d99584de7d72 check if input is class method before declaring it unimplemented (patch #9238) (bug #49694)
Colin Macdonald <cbm@m.fsf.org>
parents: 23077
diff changeset
566 endfor
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
567 txt = sprintf ("%s but has not yet been implemented.", txt);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
568 case "not loaded",
21751
b571fc85953f maint: Use two spaces after period to indicate sentence break.
Rik <rik@octave.org>
parents: 21314
diff changeset
569 txt = sprintf (["%s which you have installed but not loaded. To ", ...
27216
823b4bcf79fc unless necessary for formatting or code, use ' instead of `
John W. Eaton <jwe@octave.org>
parents: 27145
diff changeset
570 "load the package, run 'pkg load %s' from the ", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
571 "Octave prompt."], txt, name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
572 otherwise
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
573 ## this includes "not installed" and anything else if pkg changes
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
574 ## the output of describe
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
575 txt = sprintf ("%s which seems to not be installed in your system.", txt);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
576 endswitch
21758
ffad2baa90f7 maint: Use newlines to make code more readable.
Rik <rik@octave.org>
parents: 21751
diff changeset
577
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
578 endfunction
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
579
24458
516437d2194d don't allow function parameters (in or out) to be persistent
John W. Eaton <jwe@octave.org>
parents: 24402
diff changeset
580 function rlist = missing_functions ()
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
581 persistent list = {
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
582 "addboundary",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
583 "addcats",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
584 "addCause",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
585 "addedge",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
586 "addmulti",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
587 "addnode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
588 "addpoints",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
589 "addRequired",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
590 "addsample",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
591 "addsampletocollection",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
592 "addts",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
593 "adjacency",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
594 "align",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
595 "alim",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
596 "alpha",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
597 "alphamap",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
598 "alphaShape",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
599 "alphaSpectrum",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
600 "alphaTriangulation",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
601 "animatedline",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
602 "animatedLine",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
603 "append",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
604 "array2table",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
605 "array2timetable",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
606 "bar3",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
607 "bar3h",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
608 "barycentricToCartesian",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
609 "bctree",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
610 "bench",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
611 "between",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
612 "bfsearch",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
613 "bicgstabl",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
614 "biconncomp",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
615 "binary",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
616 "binscatter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
617 "bitnot",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
618 "boundary",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
619 "boundaryFacets",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
620 "boundingbox",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
621 "brush",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
622 "builddocsearchdb",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
623 "bvp4c",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
624 "bvp5c",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
625 "bvpget",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
626 "bvpinit",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
627 "bvpset",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
628 "bvpxtend",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
629 "caldays",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
630 "caldiff",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
631 "calendarDuration",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
632 "calllib",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
633 "callSoapService",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
634 "calmonths",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
635 "calquarters",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
636 "calweeks",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
637 "calyears",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
638 "camdolly",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
639 "cameratoolbar",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
640 "campan",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
641 "camproj",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
642 "cartesianToBarycentric",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
643 "cartToBary",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
644 "categorical",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
645 "categories",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
646 "cdf2rdf",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
647 "cdfepoch",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
648 "cdfinfo",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
649 "cdflib",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
650 "cdfread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
651 "cdfwrite",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
652 "cell2table",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
653 "cellplot",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
654 "centrality",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
655 "centroid",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
656 "checkcode",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
657 "checkin",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
658 "checkout",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
659 "circumcenter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
660 "circumcenters",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
661 "classUnderlying",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
662 "clearAllMemoizedCaches",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
663 "clearCache",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
664 "clearpoints",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
665 "clipboard",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
666 "clone",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
667 "cmopts",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
668 "collapse",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
669 "colordef",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
670 "colormapeditor",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
671 "compose",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
672 "condensation",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
673 "coneplot",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
674 "conncomp",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
675 "contains",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
676 "contourslice",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
677 "convertCharsToStrings",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
678 "convertStringsToChars",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
679 "convexHull",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
680 "copyHDU",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
681 "count",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
682 "countcats",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
683 "countEachLabel",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
684 "createClassFromWsdl",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
685 "createFile",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
686 "createImg",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
687 "createSoapMessage",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
688 "createTbl",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
689 "criticalAlpha",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
690 "customverctrl",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
691 "daqread",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
692 "datacursormode",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
693 "datastore",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
694 "datatipinfo",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
695 "dateshift",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
696 "datetime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
697 "day",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
698 "days",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
699 "dbmex",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
700 "dde23",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
701 "ddeget",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
702 "ddensd",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
703 "ddesd",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
704 "ddeset",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
705 "decomposition",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
706 "degree",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
707 "delaunayTriangulation",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
708 "deleteCol",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
709 "deleteFile",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
710 "deleteHDU",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
711 "deleteKey",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
712 "deleteproperty",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
713 "deleteRecord",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
714 "deleteRows",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
715 "delevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
716 "DelimitedTextImportOptions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
717 "delsample",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
718 "delsamplefromcollection",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
719 "depdir",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
720 "depfun",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
721 "details",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
722 "detectImportOptions",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
723 "deval",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
724 "dfsearch",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
725 "digraph",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
726 "discretize",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
727 "dissect",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
728 "distances",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
729 "dither",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
730 "docsearch",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
731 "dragrect",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
732 "duration",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
733 "dynamicprops",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
734 "echodemo",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
735 "edgeAttachments",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
736 "edges",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
737 "empty",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
738 "enableservice",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
739 "enumeration",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
740 "eraseBetween",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
741 "eventlisteners",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
742 "events",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
743 "exceltime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
744 "Execute",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
745 "export2wsdlg",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
746 "exportsetupdlg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
747 "extractAfter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
748 "extractBefore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
749 "extractBetween",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
750 "faceNormal",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
751 "faceNormals",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
752 "fcontour",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
753 "featureEdges",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
754 "Feval",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
755 "fewerbins",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
756 "figurepalette",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
757 "FileDatastore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
758 "filemarker",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
759 "fileMode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
760 "fileName",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
761 "fill3",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
762 "fillmissing",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
763 "filloutliers",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
764 "fimplicit",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
765 "fimplicit3",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
766 "findedge",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
767 "findgroups",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
768 "findnode",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
769 "findprop",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
770 "fitsdisp",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
771 "fitsinfo",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
772 "fitsread",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
773 "fitswrite",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
774 "FixedWidthImportOptions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
775 "flipedge",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
776 "flow",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
777 "fmesh",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
778 "fplot3",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
779 "freeBoundary",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
780 "freqspace",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
781 "fsurf",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
782 "FunctionTestCase",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
783 "functiontests",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
784 "funm",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
785 "gather",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
786 "gcmr",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
787 "geobubble",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
788 "geolimits",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
789 "getabstime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
790 "getAColParms",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
791 "getaudiodata",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
792 "getBColParms",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
793 "GetCharArray",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
794 "getColName",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
795 "getColType",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
796 "getConstantValue",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
797 "getdatasamples",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
798 "getdatasamplesize",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
799 "getEqColType",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
800 "getFileFormats",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
801 "GetFullMatrix",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
802 "getHdrSpace",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
803 "getHDUnum",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
804 "getHDUtype",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
805 "getImgSize",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
806 "getImgType",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
807 "getinterpmethod",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
808 "getnext",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
809 "getNumCols",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
810 "getNumHDUs",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
811 "getNumInputs",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
812 "getNumOutputs",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
813 "getNumRows",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
814 "getOpenFiles",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
815 "getpixelposition",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
816 "getpoints",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
817 "getProfiles",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
818 "getqualitydesc",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
819 "getReport",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
820 "getsamples",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
821 "getsampleusingtime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
822 "gettimeseriesnames",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
823 "gettsafteratevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
824 "gettsafterevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
825 "gettsatevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
826 "gettsbeforeatevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
827 "gettsbeforeevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
828 "gettsbetweenevents",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
829 "GetVariable",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
830 "getvaropts",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
831 "getVersion",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
832 "GetWorkspaceData",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
833 "gobjects",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
834 "graph",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
835 "GraphPlot",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
836 "graymon",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
837 "griddedInterpolant",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
838 "guide",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
839 "h5create",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
840 "h5disp",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
841 "h5info",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
842 "h5read",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
843 "h5readatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
844 "h5write",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
845 "h5writeatt",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
846 "handle",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
847 "hasdata",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
848 "hasFrame",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
849 "hasnext",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
850 "hdf5info",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
851 "hdf5read",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
852 "hdf5write",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
853 "hdfan",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
854 "hdfdf24",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
855 "hdfdfr8",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
856 "hdfh",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
857 "hdfhd",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
858 "hdfhe",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
859 "hdfhx",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
860 "hdfinfo",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
861 "hdfml",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
862 "hdfpt",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
863 "hdfread",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
864 "hdftool",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
865 "hdfv",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
866 "hdfvf",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
867 "hdfvh",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
868 "hdfvs",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
869 "head",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
870 "heatmap",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
871 "height",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
872 "helpbrowser",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
873 "helpdesk",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
874 "helpwin",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
875 "hgexport",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
876 "hgsetget",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
877 "highlight",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
878 "histcounts",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
879 "histcounts2",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
880 "histogram",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
881 "histogram2",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
882 "hms",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
883 "holes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
884 "hour",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
885 "hours",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
886 "idealfilter",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
887 "im2java",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
888 "ImageDatastore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
889 "imapprox",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
890 "imgCompress",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
891 "import",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
892 "imresize",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
893 "incenter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
894 "incenters",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
895 "incidence",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
896 "indegree",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
897 "inmem",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
898 "innerjoin",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
899 "inOutStatus",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
900 "insertAfter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
901 "insertATbl",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
902 "insertBefore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
903 "insertBTbl",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
904 "insertCol",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
905 "insertImg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
906 "insertRows",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
907 "inShape",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
908 "inspect",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
909 "instrcallback",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
910 "instrfind",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
911 "instrfindall",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
912 "interfaces",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
913 "interp1q",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
914 "interpstreamspeed",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
915 "invoke",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
916 "isaUnderlying",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
917 "isbetween",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
918 "iscalendarduration",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
919 "iscategorical",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
920 "iscategory",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
921 "ischange",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
922 "iscom",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
923 "isCompressedImg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
924 "isConnected",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
925 "isdag",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
926 "isdatetime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
927 "isdst",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
928 "isduration",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
929 "isEdge",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
930 "isenum",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
931 "isevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
932 "ishole",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
933 "isIllConditioned",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
934 "isinterface",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
935 "isinterior",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
936 "isInterior",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
937 "isisomorphic",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
938 "islocalmax",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
939 "islocalmin",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
940 "isLocked",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
941 "ismembertol",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
942 "ismissing",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
943 "isnat",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
944 "isomorphism",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
945 "isordinal",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
946 "isoutlier",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
947 "isprotected",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
948 "isregular",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
949 "issimplified",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
950 "issortedrows",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
951 "isStringScalar",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
952 "istable",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
953 "istall",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
954 "istimetable",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
955 "isundefined",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
956 "isvalid",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
957 "isweekend",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
958 "javaMethodEDT",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
959 "javaObjectEDT",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
960 "join",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
961 "jsondecode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
962 "jsonencode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
963 "juliandate",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
964 "labeledge",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
965 "labelnode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
966 "lag",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
967 "laplacian",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
968 "last",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
969 "layout",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
970 "ldl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
971 "libfunctions",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
972 "libfunctionsview",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
973 "libisloaded",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
974 "libpointer",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
975 "libstruct",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
976 "linkdata",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
977 "loadlibrary",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
978 "lsqminnorm",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
979 "lsqr",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
980 "makehgtform",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
981 "mapreduce",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
982 "mapreducer",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
983 "matfile",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
984 "maxflow",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
985 "MaximizeCommandWindow",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
986 "maxk",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
987 "maxNumCompThreads",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
988 "memmapfile",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
989 "memoize",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
990 "MemoizedFunction",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
991 "mergecats",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
992 "meta.abstractDetails",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
993 "meta.class.fromName",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
994 "meta.DynamicProperty",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
995 "meta.EnumeratedValue",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
996 "meta.MetaData",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
997 "meta.package.fromName",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
998 "meta.package.getAllPackages",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
999 "methodsview",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1000 "MException",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1001 "milliseconds",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1002 "MinimizeCommandWindow",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1003 "mink",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1004 "minres",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1005 "minspantree",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1006 "minute",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1007 "minutes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1008 "missing",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1009 "mlint",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1010 "mlintrpt",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1011 "mmfileinfo",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1012 "month",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1013 "morebins",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1014 "movAbsHDU",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1015 "move",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1016 "movie2avi",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1017 "movNamHDU",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1018 "movRelHDU",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1019 "mput",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1020 "multibandread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1021 "multibandwrite",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1022 "NaT",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1023 "nccreate",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1024 "ncdisp",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1025 "ncinfo",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1026 "ncread",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1027 "ncreadatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1028 "ncwrite",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1029 "ncwriteatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1030 "ncwriteschema",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1031 "nearest",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1032 "nearestNeighbor",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1033 "neighbors",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1034 "netcdf",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1035 "noanimate",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1036 "notebook",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1037 "notify",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1038 "nsidedpoly",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1039 "num2ruler",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1040 "numArgumentsFromSubscript",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1041 "numboundaries",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1042 "numedges",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1043 "numnodes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1044 "numpartitions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1045 "numRegions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1046 "numsides",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1047 "ode113",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1048 "ode23t",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1049 "ode23tb",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1050 "odextend",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1051 "openFile",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1052 "opengl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1053 "ordqz",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1054 "outdegree",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1055 "outerjoin",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1056 "pad",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1057 "pagesetupdlg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1058 "parse",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1059 "parseSoapResponse",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1060 "partition",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1061 "parula",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1062 "path2rc",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1063 "pathtool",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1064 "pcode",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1065 "pdepe",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1066 "pdeval",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1067 "perimeter",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1068 "plotbrowser",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1069 "plotedit",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1070 "plottools",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1071 "pointLocation",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1072 "polaraxes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1073 "polarhistogram",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1074 "polarplot",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1075 "polarscatter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1076 "polybuffer",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1077 "polyshape",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1078 "posixtime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1079 "predecessors",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1080 "preview",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1081 "printdlg",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1082 "printopt",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1083 "printpreview",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1084 "profsave",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1085 "propedit",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1086 "properties",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1087 "propertyeditor",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1088 "PutCharArray",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1089 "PutFullMatrix",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1090 "PutWorkspaceData",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1091 "pyargs",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1092 "pyversion",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1093 "quarter",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1094 "Quit",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1095 "RandStream",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1096 "rbbox",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1097 "readall",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1098 "readasync",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1099 "readATblHdr",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1100 "readBTblHdr",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1101 "readCard",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1102 "readCol",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1103 "readFrame",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1104 "readimage",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1105 "readImg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1106 "readKey",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1107 "readKeyCmplx",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1108 "readKeyDbl",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1109 "readKeyLongLong",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1110 "readKeyLongStr",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1111 "readKeyUnit",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1112 "readRecord",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1113 "readtable",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1114 "recordblocking",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1115 "regions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1116 "registerevent",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1117 "regmatlabserver",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1118 "release",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1119 "Remove",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1120 "RemoveAll",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1121 "removecats",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1122 "removets",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1123 "renamecats",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1124 "reordercats",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1125 "reordernodes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1126 "replace",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1127 "replaceBetween",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1128 "resample",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1129 "rescale",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1130 "retime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1131 "reverse",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1132 "rgb2gray",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1133 "rlim",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1134 "rmboundary",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1135 "rmedge",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1136 "rmholes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1137 "rmmissing",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1138 "rmnode",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1139 "rmslivers",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1140 "rng",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1141 "rowfun",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1142 "rtickangle",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1143 "rtickformat",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1144 "rticklabels",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1145 "ruler2num",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1146 "runperf",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1147 "scale",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1148 "scatteredInterpolant",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1149 "scroll",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1150 "second",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1151 "seconds",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1152 "selectmoveresize",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1153 "sendmail",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1154 "serial",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1155 "serialbreak",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1156 "seriallist",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1157 "setabstime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1158 "setBscale",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1159 "setcats",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1160 "setCompressionType",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1161 "setHCompScale",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1162 "setHCompSmooth",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1163 "setinterpmethod",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1164 "setpixelposition",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1165 "setstr",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1166 "setTileDim",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1167 "settimeseriesnames",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1168 "setTscale",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1169 "setuniformtime",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1170 "setvaropts",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1171 "setvartype",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1172 "sheetnames",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1173 "shortestpath",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1174 "shortestpathtree",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1175 "showplottool",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1176 "shuffle",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1177 "simplify",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1178 "smoothdata",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1179 "snapnow",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1180 "sortboundaries",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1181 "sortregions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1182 "sortx",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1183 "sorty",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1184 "split",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1185 "splitapply",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1186 "splitEachLabel",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1187 "splitlines",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1188 "SpreadsheetDatastore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1189 "SpreadsheetImportOptions",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1190 "ss2tf",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1191 "stack",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1192 "standardizeMissing",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1193 "stats",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1194 "step",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1195 "stopasync",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1196 "str2mat",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1197 "streamparticles",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1198 "streamslice",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1199 "string",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1200 "strings",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1201 "strip",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1202 "strlength",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1203 "struct2table",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1204 "subgraph",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1205 "subtract",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1206 "subvolume",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1207 "successors",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1208 "summary",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1209 "superclasses",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1210 "support",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1211 "supportPackageInstaller",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1212 "surf2patch",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1213 "surfaceArea",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1214 "symmlq",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1215 "synchronize",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1216 "syntax",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1217 "table",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1218 "table2array",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1219 "table2cell",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1220 "table2struct",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1221 "table2timetable",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1222 "TabularTextDatastore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1223 "tail",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1224 "tall",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1225 "TallDatastore",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1226 "tallrng",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1227 "targetupdater",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1228 "tcpclient",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1229 "Test",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1230 "TestResult",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1231 "testsuite",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1232 "texlabel",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1233 "textwrap",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1234 "tfqmr",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1235 "thetalim",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1236 "thetatickformat",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1237 "thetaticklabels",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1238 "throw",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1239 "throwAsCaller",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1240 "Tiff",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1241 "timeit",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1242 "timeofday",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1243 "timer",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1244 "timerange",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1245 "timeseries",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1246 "timetable",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1247 "timetable2table",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1248 "timezones",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1249 "todatenum",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1250 "toolboxdir",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1251 "topkrows",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1252 "toposort",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1253 "transclosure",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1254 "translate",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1255 "transreduction",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1256 "triangulation",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1257 "TriRep",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1258 "TriScatteredInterp",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1259 "tscollection",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1260 "tzoffset",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1261 "uialert",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1262 "uiaxes",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1263 "uibutton",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1264 "uicheckbox",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1265 "uiconfirm",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1266 "uidropdown",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1267 "uieditfield",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1268 "uifigure",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1269 "uigauge",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1270 "uigetpref",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1271 "uiimport",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1272 "uiknob",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1273 "uilabel",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1274 "uilamp",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1275 "uilistbox",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1276 "uiopen",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1277 "uiradiobutton",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1278 "uisave",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1279 "uisetcolor",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1280 "uisetpref",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1281 "uislider",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1282 "uispinner",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1283 "uistack",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1284 "uiswitch",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1285 "uitab",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1286 "uitabgroup",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1287 "uitextarea",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1288 "uitogglebutton",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1289 "uitree",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1290 "uitreenode",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1291 "undocheckout",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1292 "uniquetol",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1293 "unloadlibrary",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1294 "unmesh",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1295 "unregisterallevents",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1296 "unregisterevent",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1297 "unstack",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1298 "upgradePreviouslyInstalledSupportPackages",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1299 "userpath",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1300 "ValueIterator",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1301 "varfun",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1302 "vartype",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1303 "verctrl",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1304 "vertexAttachments",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1305 "vertexNormal",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1306 "VideoReader",
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1307 "VideoWriter",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1308 "viewmtx",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1309 "visdiff",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1310 "volume",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1311 "volumebounds",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1312 "voronoiDiagram",
20670
7ae6bbf0a567 __unimplemented__: update list of missing functions.
Carnë Draug <carandraug@octave.org>
parents: 20585
diff changeset
1313 "websave",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1314 "week",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1315 "whatsnew",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1316 "width",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
1317 "winopen",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1318 "withtol",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1319 "wordcloud",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1320 "write",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1321 "writeChecksum",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1322 "writeCol",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1323 "writeComment",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1324 "writeDate",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1325 "writeHistory",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1326 "writeImg",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1327 "writeKey",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1328 "writeKeyUnit",
19058
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19057
diff changeset
1329 "writetable",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1330 "writeVideo",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1331 "xmlread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1332 "xmlwrite",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1333 "xslt",
24492
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1334 "xtickangle",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1335 "xtickformat",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1336 "year",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1337 "years",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1338 "ymd",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1339 "ytickangle",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1340 "ytickformat",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1341 "yyaxis",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1342 "yyyymmdd",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1343 "ztickangle",
c83e37384b4f Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 24458
diff changeset
1344 "ztickformat",
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
1345 };
24458
516437d2194d don't allow function parameters (in or out) to be persistent
John W. Eaton <jwe@octave.org>
parents: 24402
diff changeset
1346
516437d2194d don't allow function parameters (in or out) to be persistent
John W. Eaton <jwe@octave.org>
parents: 24402
diff changeset
1347 rlist = list;
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
1348 endfunction
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
1349
27820
21e198a1f4a9 __unimplemented__.m: Remove deprecated warning for exifread.
Rik <rik@octave.org>
parents: 27759
diff changeset
1350
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
1351 %!test
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
1352 %! str = __unimplemented__ ("no_name_function");
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
1353 %! assert (isempty (str));
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
1354
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
1355 %!test
24148
2e64bed0bb3a Updated integral2.m and integral3.m and added quad2d (bug #52074).
Nicholas R. Jankowski <jankowskin@asme.org>
parents: 24136
diff changeset
1356 %! str = __unimplemented__ ("matlabrc");
2e64bed0bb3a Updated integral2.m and integral3.m and added quad2d (bug #52074).
Nicholas R. Jankowski <jankowskin@asme.org>
parents: 24136
diff changeset
1357 %! assert (str(1:71), "matlabrc is not implemented. Octave uses the file '.octaverc' instead.");
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
1358
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
1359 %!test
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
1360 %! str = __unimplemented__ ("MException");
27479
e8c417f6ef83 make unimplmented message an error and append to undefined identifier error
John W. Eaton <jwe@octave.org>
parents: 27314
diff changeset
1361 %! assert (str(1:58), "The 'MException' function is not yet implemented in Octave");