annotate scripts/help/__unimplemented__.m @ 20620:e5f36a7854a5

Remove fuzzy matching from odeset/odeget. * levenshtein.cc: Deleted file. * libinterp/corefcn/module.mk: Remove levenshtein.cc from build system. * fuzzy_compare.m: Deleted file. * scripts/ode/module.mk: Remove fuzzy_compare.m from build system * odeget.m: Reword docstring. Use a persistent cellstr variable to keep track of all options. Replace fuzzy_compare() calls with combination of strcmpi and strncmpi. Report errors relative to function odeget rather than OdePkg. Rewrite and extend BIST tests. Add input validation BIST tests. * odeset.m: Reword docstring. Use a persistent cellstr variable to keep track of all options. Replace fuzzy_compare() calls with combination of strcmpi and strncmpi. Report errors relative to function odeset rather than OdePkg. Use more meaningful variables names and create intermediate variables with logical names to help make code readable. Remove interactive input when multiple property names match and just issue an error. Rewrite BIST tests. * ode_struct_value_check.m: Remove input checking for private function which must always be invoked correctly by caller. Use intermediate variables opt and val to make the code more understandable. Consolidate checks on values into single if statements. Use 'val == fix (val)' to check for integer. * __unimplemented__.m: Removed odeset, odeget, ode45 from list.
author Rik <rik@octave.org>
date Fri, 09 Oct 2015 12:03:23 -0700
parents fcb792acab9b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19731
4197fc428c7d maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents: 19716
diff changeset
1 ## Copyright (C) 2010-2015 John W. Eaton
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
2 ## Copyright (C) 2010 VZLU Prague
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
3 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
4 ## This file is part of Octave.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
5 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
7 ## under the terms of the GNU General Public License as published by
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
9 ## your option) any later version.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
10 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
11 ## 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
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
14 ## General Public License for more details.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
15 ##
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
16 ## 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
17 ## along with Octave; see the file COPYING. If not, see
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
18 ## <http://www.gnu.org/licenses/>.
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 ## -*- texinfo -*-
20193
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19983
diff changeset
21 ## @deftypefn {Function File} {@var{txt} =} __unimplemented__ (@var{fcn})
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
22 ## Return specific help text for the unimplemented function @var{fcn}.
20193
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19983
diff changeset
23 ##
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
24 ## 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
25 ## place of @var{fcn}.
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
26 ##
20193
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19983
diff changeset
27 ## 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: 19983
diff changeset
28 ## 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
29 ## @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
30 ## @seealso{missing_function_hook}
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
31 ## @end deftypefn
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
32
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
33
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
34 function txt = __unimplemented__ (fcn)
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
35
15558
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
36 if (nargin != 1)
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
37 print_usage ();
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
38 endif
8e6a72cac999 unimplemented.m: Add docstring for internal function.
Rik <rik@octave.org>
parents: 15550
diff changeset
39
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
40 is_matlab_function = true;
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
41
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
42 ## Some smarter cases, add more as needed.
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
43 switch (fcn)
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
44 case {"avifile", "aviinfo", "aviread"}
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
45 txt = ["Basic video file support is provided in the video package. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
46 "See @url{http://octave.sf.net/video/}."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
47
17364
84c119957463 __unimplemented__.m: Note iminfo as replacement for deprecated exifread.
Rik <rik@octave.org>
parents: 17338
diff changeset
48 case "exifread"
84c119957463 __unimplemented__.m: Note iminfo as replacement for deprecated exifread.
Rik <rik@octave.org>
parents: 17338
diff changeset
49 txt = ["exifread is deprecated. " ...
17368
ddc85ecc901f __unimplemented__.m: fix typo on function name
Carnë Draug <carandraug@octave.org>
parents: 17364
diff changeset
50 "The functionality is available in the imfinfo function."];
17364
84c119957463 __unimplemented__.m: Note iminfo as replacement for deprecated exifread.
Rik <rik@octave.org>
parents: 17338
diff changeset
51
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
52 case "gsvd"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
53 txt = ["gsvd is not currently part of core Octave. ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
54 "See the linear-algebra package at ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
55 "@url{http://octave.sourceforge.net/linear-algebra/}."];
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
56
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
57 case "funm"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
58 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
59 "See the linear-algebra package at ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
60 "@url{http://octave.sourceforge.net/linear-algebra/}."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
61
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
62 case "griddedInterpolant"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
63 txt = ["griddedInterpolant is not implemented. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
64 "Consider using griddata."];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
65
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
66 case "integral"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
67 txt = ["Octave provides many routines for 1-D numerical integration. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
68 "Consider quadcc, quad, quadv, quadl, quadgk."];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
69
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
70 case "integral2"
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
71 txt = ["integral2 is not implemented. Consider using dblquad."];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
72
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
73 case "integral3"
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
74 txt = ["integral3 is not implemented. Consider using triplequad"];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
75
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
76 case "linprog"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
77 txt = ["Octave does not currently provide linprog. ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
78 "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
79 "Try @code{help glpk} for more info."];
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
80
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
81 case "matlabrc"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
82 txt = ["matlabrc is not implemented. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
83 'Octave uses the file ".octaverc" instead.'];
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
84
20568
fcb792acab9b Moving ode45, odeset, odeget, and levenshtein from odepkg to core.
jcorno <jacopo.corno@gmail.com>
parents: 20193
diff changeset
85 case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", "ode23tb"}
fcb792acab9b Moving ode45, odeset, odeget, and levenshtein from odepkg to core.
jcorno <jacopo.corno@gmail.com>
parents: 20193
diff changeset
86 txt = ["Octave provides lsode and ode45 for solving differential equations. ", ...
fcb792acab9b Moving ode45, odeset, odeget, and levenshtein from odepkg to core.
jcorno <jacopo.corno@gmail.com>
parents: 20193
diff changeset
87 "For more information try @code{help lsode}, @code{help ode45}. ", ...
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
88 "Matlab-compatible ODE functions are provided by the odepkg ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
89 "package. See @url{http://octave.sourceforge.net/odepkg/}."];
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
90
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
91 case "startup"
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
92 txt = ["startup is not implemented. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
93 'Octave uses the file ".octaverc" instead.'];
15550
1f90fc84065a unimplemented.m: add sections for/drop functions in octave-forge
Philip Nienhuis <prnienhuis@users.sf.net>
parents: 15548
diff changeset
94
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
95 case "quad2d"
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
96 txt = ["quad2d is not implemented. Consider using dblquad."];
15550
1f90fc84065a unimplemented.m: add sections for/drop functions in octave-forge
Philip Nienhuis <prnienhuis@users.sf.net>
parents: 15548
diff changeset
97
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
98 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
99 txt = ["Functions for spreadsheet style I/O ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
100 "(.xls .xlsx .sxc .ods .dbf .wk1 etc.) " , ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
101 "are provided in the io package. ", ...
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
102 "See @url{http://octave.sf.net/io/}."];
15550
1f90fc84065a unimplemented.m: add sections for/drop functions in octave-forge
Philip Nienhuis <prnienhuis@users.sf.net>
parents: 15548
diff changeset
103
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
104 ## control system
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
105 case {"absorbDelay", "allmargin", "append", "augstate", "balreal", ...
18938
9addb5ad9426 bandwidth.m: Add new function.
Massimiliano Fasi <massimiliano.fasi@gmail.com>
parents: 18763
diff changeset
106 "balred", "balredOptions", "bdschur", "bode", ...
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
107 "bodemag", "bodeoptions", "bodeplot", "c2d", "c2dOptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
108 "canon", "care", "chgFreqUnit", "chgTimeUnit", "connect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
109 "connectOptions", "covar", "ctrb", "ctrbf", "ctrlpref", "d2c", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
110 "d2cOptions", "d2d", "d2dOptions", "damp", "dare", "db2mag", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
111 "dcgain", "delay2z", "delayss", "dlqr", "dlyap", "dlyapchol", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
112 "drss", "dsort", "dss", "dssdata", "esort", "estim", "evalfr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
113 "feedback", "filt", "frd", "frdata", "freqresp", "gcare", "gdare", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
114 "genfrd", "genmat", "gensig", "genss", "get", "getBlockValue", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
115 "getDelayModel", "getGainCrossover", "getIOTransfer", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
116 "getLFTModel", "getLoopTransfer", "getNominal", "getoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
117 "getPeakGain", "getSwitches", "getValue", "gram", "hasdelay", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
118 "hasInternalDelay", "hsvd", "hsvdOptions", "hsvoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
119 "hsvplot", "imp2exp", "impulse", "impulseplot", "initial", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
120 "initialplot", "iopzmap", "iopzplot", "isct", "isdt", "isempty", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
121 "isfinite", "isParametric", "isproper", "isreal", "issiso", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
122 "isstable", "isstatic", "kalman", "kalmd", "lft", "loopswitch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
123 "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
124 "lsiminfo", "lsimplot", "ltiview", "lyap", "lyapchol", "mag2db", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
125 "margin", "minreal", "modred", "modsep", "nblocks", "ndims", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
126 "ngrid", "nichols", "nicholsoptions", "nicholsplot", "nmodels", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
127 "norm", "nyquist", "nyquistoptions", "nyquistplot", "obsv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
128 "obsvf", "order", "pade", "parallel", "permute", "pid", "piddata", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
129 "pidstd", "pidstddata", "pidtool", "pidtune", "pidtuneOptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
130 "place", "pole", "prescale", "pzmap", "pzoptions", "pzplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
131 "realp", "reg", "replaceBlock", "repsys", "reshape", "rlocus", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
132 "rlocusplot", "rss", "series", "set", "setBlockValue", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
133 "setDelayModel", "setoptions", "setValue", "sgrid", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
134 "showBlockValue", "showTunable", "sigma", "sigmaoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
135 "sigmaplot", "sisoinit", "sisotool", "size", "sminreal", "ss", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
136 "ss2ss", "ssdata", "stabsep", "stabsepOptions", "stack", "step", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
137 "stepDataOptions", "stepinfo", "stepplot", "sumblk", "tf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
138 "tfdata", "thiran", "timeoptions", "totaldelay", "tzero", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
139 "updateSystem", "upsample", "xperm", "zero", "zgrid", "zpk", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
140 "zpkdata"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
141 txt = check_package (fcn, "control");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
142
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
143 ## communications
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
144 case {"algdeintrlv", "algintrlv", "alignsignals", "amdemod", "ammod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
145 "arithdeco", "arithenco", "awgn", "bchdec", "bchenc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
146 "bchgenpoly", "bchnumerr", "berawgn", "bercoding", "berconfint", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
147 "berfading", "berfit", "bersync", "bertool", "bi2de", "bin2gray", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
148 "biterr", "bsc", "cma", "commscope", "compand", "convdeintrlv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
149 "convenc", "convintrlv", "convmtx", "cosets", "cyclgen", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
150 "cyclpoly", "de2bi", "decode", "deintrlv", "dfe", "dftmtx", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
151 "distspec", "doppler", "dpcmdeco", "dpcmenco", "dpcmopt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
152 "dpskdemod", "dpskmod", "dvbs2ldpc", "encode", "equalize", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
153 "eyediagram", "EyeScope", "finddelay", "fmdemod", "fmmod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
154 "fskdemod", "fskmod", "gaussdesign", "gen2par", "genqamdemod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
155 "genqammod", "gf", "gfadd", "gfconv", "gfcosets", "gfdeconv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
156 "gfdiv", "gffilter", "gflineq", "gfminpol", "gfmul", "gfpretty", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
157 "gfprimck", "gfprimdf", "gfprimfd", "gfrank", "gfrepcov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
158 "gfroots", "gfsub", "gftable", "gftrunc", "gftuple", "gfweight", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
159 "gray2bin", "hammgen", "heldeintrlv", "helintrlv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
160 "helscandeintrlv", "helscanintrlv", "huffmandeco", "huffmandict", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
161 "huffmanenco", "intdump", "intrlv", "iscatastrophic", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
162 "isprimitive", "istrellis", "legacychannelsim", "lineareq", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
163 "lloyds", "lms", "log", "lteZadoffChuSeq", "marcumq", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
164 "mask2shift", "matdeintrlv", "matintrlv", "minpol", "mldivide", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
165 "mlseeq", "modnorm", "muxdeintrlv", "muxintrlv", "noisebw", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
166 "normlms", "oct2dec", "oqpskdemod", "oqpskmod", "pamdemod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
167 "pammod", "pmdemod", "pmmod", "poly2trellis", "primpoly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
168 "pskdemod", "pskmod", "qamdemod", "qammod", "qfunc", "qfuncinv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
169 "quantiz", "randdeintrlv", "randerr", "randintrlv", "randsrc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
170 "rayleighchan", "rcosdesign", "rectpulse", "reset", "ricianchan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
171 "rls", "rsdec", "rsenc", "rsgenpoly", "rsgenpolycoeffs", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
172 "scatterplot", "sdrexamples", "sdrfgensysace", "sdrfroot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
173 "sdrinfo", "sdrload", "sdrsetup", "semianalytic", "shift2mask", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
174 "signlms", "ssbdemod", "ssbmod", "stdchan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
175 "supportPackageInstaller", "symerr", "syndtable", "varlms", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
176 "vec2mat", "vitdec", "wgn"}
17518
6c62150b454a __unimplemented__.m: Use correct name of the communications package
Mike Miller <mtmiller@ieee.org>
parents: 17511
diff changeset
177 txt = check_package (fcn, "communications");
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
178
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
179 ## finance
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
180 case {"abs2active", "accrfrac", "acrubond", "acrudisc", "active2abs", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
181 "addEquality", "addEquality", "addEquality", "addGroupRatio", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
182 "addGroupRatio", "addGroupRatio", "addGroups", "addGroups", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
183 "addGroups", "addInequality", "addInequality", "addInequality", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
184 "adline", "adosc", "amortize", "annurate", "annuterm", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
185 "arith2geom", "ascii2fts", "beytbill", "binprice", "blkimpv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
186 "blkprice", "blsdelta", "blsgamma", "blsimpv", "blslambda", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
187 "blsprice", "blsrho", "blstheta", "blsvega", "bndconvp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
188 "bndconvy", "bnddurp", "bnddury", "bndkrdur", "bndprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
189 "bndspread", "bndtotalreturn", "bndyield", "bolling", "bollinger", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
190 "boxcox", "busdate", "busdays", "candle", "cdai", "cdprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
191 "cdyield", "cfamounts", "cfbyzero", "cfconv", "cfdates", "cfdur", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
192 "cfplot", "cfport", "cfprice", "cfspread", "cftimes", "cfyield", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
193 "chaikosc", "chaikvolat", "chartfts", "checkFeasibility", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
194 "checkFeasibility", "checkFeasibility", "chfield", "convert2sur", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
195 "convertto", "corr2cov", "cov2corr", "cpncount", "cpndaten", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
196 "cpndatenq", "cpndatep", "cpndaysp", "cpnpersz", "createholidays", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
197 "cumsum", "cur2frac", "cur2str", "date2time", "dateaxis", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
198 "datedisp", "datefind", "datemnth", "datewrkdy", "day", "days360", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
199 "days360e", "days360isda", "days360psa", "days365", "daysact", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
200 "daysadd", "daysdif", "dec2thirtytwo", "depfixdb", "depgendb", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
201 "deprdv", "depsoyd", "depstln", "diff", "disc2zero", "discrate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
202 "ecmmvnrfish", "ecmmvnrmle", "ecmmvnrobj", "ecmmvnrstd", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
203 "ecmnfish", "ecmnhess", "ecmninit", "ecmnmle", "ecmnobj", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
204 "ecmnstd", "effrr", "elpm", "emaxdrawdown", "end", "eomdate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
205 "estimateAssetMoments", "estimateBounds", "estimateBounds", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
206 "estimateBounds", "estimateFrontier", "estimateFrontier", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
207 "estimateFrontier", "estimateFrontierByReturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
208 "estimateFrontierByReturn", "estimateFrontierByReturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
209 "estimateFrontierByRisk", "estimateFrontierByRisk", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
210 "estimateFrontierByRisk", "estimateFrontierLimits", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
211 "estimateFrontierLimits", "estimateFrontierLimits", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
212 "estimateMaxSharpeRatio", "estimatePortMoments", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
213 "estimatePortReturn", "estimatePortReturn", "estimatePortReturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
214 "estimatePortRisk", "estimatePortRisk", "estimatePortRisk", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
215 "estimatePortStd", "estimatePortStd", "estimatePortVaR", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
216 "estimateScenarioMoments", "estimateScenarioMoments", "ewstats", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
217 "exp", "extfield", "fbusdate", "fetch", "fieldnames", "fillts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
218 "fints", "floatdiscmargin", "floatmargin", "fpctkd", "frac2cur", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
219 "freqnum", "freqstr", "frontcon", "frontier", "fts2ascii", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
220 "fts2mat", "ftsbound", "ftsgui", "ftsinfo", "ftstool", "ftsuniq", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
221 "fvdisc", "fvfix", "fvvar", "fwd2zero", "geom2arith", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
222 "getAssetMoments", "getBounds", "getBounds", "getBounds", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
223 "getBudget", "getBudget", "getBudget", "getCosts", "getCosts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
224 "getCosts", "getEquality", "getEquality", "getEquality", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
225 "getGroupRatio", "getGroupRatio", "getGroupRatio", "getGroups", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
226 "getGroups", "getGroups", "getInequality", "getInequality", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
227 "getInequality", "getnameidx", "getOneWayTurnover", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
228 "getOneWayTurnover", "getOneWayTurnover", "getScenarios", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
229 "getScenarios", "hhigh", "highlow", "holdings2weights", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
230 "holidays", "horzcat", "hour", "inforatio", "irr", "isbusday", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
231 "iscompatible", "isempty", "isfield", "issorted", "kagi", "lagts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
232 "lbusdate", "leadts", "length", "linebreak", "llow", "log", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
233 "log10", "log2", "lpm", "lweekdate", "m2xdate", "macd", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
234 "maxdrawdown", "medprice", "merge", "minus", "minute", "mirr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
235 "month", "months", "movavg", "mrdivide", "mtimes", "mvnrfish", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
236 "mvnrmle", "mvnrobj", "mvnrstd", "nancov", "nanmax", "nanmean", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
237 "nanmedian", "nanmin", "nanstd", "nansum", "nanvar", "negvolidx", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
238 "nomrr", "nweekdate", "nyseclosures", "onbalvol", "opprofit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
239 "payadv", "payodd", "payper", "payuni", "pcalims", "pcgcomp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
240 "pcglims", "pcpval", "peravg", "periodicreturns", "plotFrontier", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
241 "plotFrontier", "plotFrontier", "plus", "pointfig", "portalloc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
242 "portalpha", "portcons", "Portfolio", "PortfolioCVaR", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
243 "PortfolioMAD", "portopt", "portrand", "portror", "portsim", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
244 "portstats", "portvar", "portvrisk", "posvolidx", "power", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
245 "prbyzero", "prcroc", "prdisc", "priceandvol", "prmat", "prtbill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
246 "pvfix", "pvtrend", "pvvar", "pyld2zero", "rdivide", "renko", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
247 "resamplets", "ret2tick", "rmfield", "rsindex", "selectreturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
248 "setAssetList", "setAssetList", "setAssetList", "setAssetMoments", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
249 "setBounds", "setBounds", "setBounds", "setBudget", "setBudget", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
250 "setBudget", "setCosts", "setCosts", "setCosts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
251 "setDefaultConstraints", "setDefaultConstraints", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
252 "setDefaultConstraints", "setEquality", "setEquality", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
253 "setEquality", "setGroupRatio", "setGroupRatio", "setGroupRatio", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
254 "setGroups", "setGroups", "setGroups", "setInequality", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
255 "setInequality", "setInequality", "setInitPort", "setInitPort", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
256 "setInitPort", "setOneWayTurnover", "setOneWayTurnover", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
257 "setOneWayTurnover", "setProbabilityLevel", "setScenarios", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
258 "setScenarios", "setSolver", "setSolver", "setSolver", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
259 "setTurnover", "setTurnover", "setTurnover", "sharpe", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
260 "simulateNormalScenariosByData", "simulateNormalScenariosByData", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
261 "simulateNormalScenariosByMoments", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
262 "simulateNormalScenariosByMoments", "size", "smoothts", "sortfts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
263 "spctkd", "stochosc", "subsasgn", "subsref", "targetreturn", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
264 "taxedrr", "tbilldisc2yield", "tbillprice", "tbillrepo", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
265 "tbillval01", "tbillyield", "tbillyield2disc", "tbl2bond", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
266 "thirdwednesday", "thirtytwo2dec", "tick2ret", "time2date", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
267 "times", "toannual", "todaily", "today", "todecimal", "tomonthly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
268 "toquarterly", "toquoted", "tosemi", "totalreturnprice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
269 "toweekly", "tr2bonds", "transprob", "transprobbytotals", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
270 "transprobfromthresholds", "transprobgrouptotals", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
271 "transprobprep", "transprobtothresholds", "tsaccel", "tsmom", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
272 "tsmovavg", "typprice", "ugarch", "ugarchllf", "ugarchpred", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
273 "ugarchsim", "uicalendar", "uminus", "uplus", "vertcat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
274 "volarea", "volroc", "wclose", "weeknum", "weights2holdings", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
275 "willad", "willpctr", "wrkdydif", "x2mdate", "xirr", "year", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
276 "yeardays", "yearfrac", "ylddisc", "yldmat", "yldtbill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
277 "zbtprice", "zbtyield", "zero2disc", "zero2fwd", "zero2pyld"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
278 txt = check_package (fcn, "financial");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
279
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
280 ## image processing
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
281 case {"activecontour", "adapthisteq", "affine2d", "affine3d", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
282 "analyze75info", "analyze75read", "applycform", "applylut", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
283 "axes2pix", "bestblk", "blockproc", "bwarea", "bwareaopen", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
284 "bwboundaries", "bwconncomp", "bwconvhull", "bwdist", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
285 "bwdistgeodesic", "bweuler", "bwhitmiss", "bwlabel", "bwlabeln", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
286 "bwlookup", "bwmorph", "bwpack", "bwperim", "bwselect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
287 "bwtraceboundary", "bwulterode", "bwunpack", "checkerboard", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
288 "col2im", "colfilt", "conndef", "convmtx2", "corner", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
289 "cornermetric", "corr2", "cp2tform", "cpcorr", "cpselect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
290 "cpstruct2pairs", "dct2", "dctmtx", "deconvblind", "deconvlucy", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
291 "deconvreg", "deconvwnr", "decorrstretch", "demosaic", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
292 "dicomanon", "dicomdict", "dicominfo", "dicomlookup", "dicomread", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
293 "dicomuid", "dicomwrite", "edge", "edgetaper", "entropy", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
294 "entropyfilt", "fan2para", "fanbeam", "findbounds", "fitgeotrans", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
295 "fliptform", "freqz2", "fsamp2", "fspecial", "ftrans2", "fwind1", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
296 "fwind2", "getheight", "getimage", "getimagemodel", "getline", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
297 "getneighbors", "getnhood", "getpts", "getrect", "getsequence", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
298 "graycomatrix", "graycoprops", "graydist", "grayslice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
299 "graythresh", "hdrread", "hdrwrite", "histeq", "hough", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
300 "houghlines", "houghpeaks", "iccfind", "iccread", "iccroot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
301 "iccwrite", "idct2", "ifanbeam", "im2bw", "im2col", "im2double", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
302 "im2int16", "im2java2d", "im2single", "im2uint16", "im2uint8", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
303 "imabsdiff", "imadd", "imadjust", "ImageAdapter", "imageinfo", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
304 "imapplymatrix", "imapprox", "imattributes", "imbothat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
305 "imclearborder", "imclose", "imcolormaptool", "imcomplement", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
306 "imcontour", "imcontrast", "imcrop", "imdilate", "imdisplayrange", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
307 "imdistline", "imdivide", "imellipse", "imerode", "imextendedmax", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
308 "imextendedmin", "imfill", "imfilter", "imfindcircles", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
309 "imfreehand", "imfuse", "imgca", "imgcf", "imgetfile", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
310 "imgradient", "imgradientxy", "imhandles", "imhist", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
311 "imhistmatch", "imhmax", "imhmin", "imimposemin", "imlincomb", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
312 "imline", "immagbox", "immovie", "immultiply", "imnoise", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
313 "imopen", "imoverview", "imoverviewpanel", "impixel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
314 "impixelinfo", "impixelinfoval", "impixelregion", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
315 "impixelregionpanel", "implay", "impoint", "impoly", "improfile", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
316 "impyramid", "imquantize", "imreconstruct", "imrect", "imref2d", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
317 "imref3d", "imregconfig", "imregionalmax", "imregionalmin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
318 "imregister", "imregtform", "imresize", "imroi", "imrotate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
319 "imsave", "imscrollpanel", "imsharpen", "imshowpair", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
320 "imsubtract", "imtool", "imtophat", "imtransform", "imwarp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
321 "interfileinfo", "interfileread", "intlut", "iptaddcallback", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
322 "iptcheckconn", "iptcheckhandle", "iptgetapi", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
323 "iptGetPointerBehavior", "iptgetpref", "ipticondir", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
324 "iptPointerManager", "iptprefs", "iptremovecallback", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
325 "iptSetPointerBehavior", "iptsetpref", "iptwindowalign", "iradon", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
326 "isflat", "isicc", "isrset", "lab2double", "lab2uint16", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
327 "lab2uint8", "label2rgb", "labelmatrix", "makecform", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
328 "makeConstrainToRectFcn", "makehdr", "makelut", "makeresampler", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
329 "maketform", "mat2gray", "mean2", "medfilt2", "montage", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
330 "multithresh", "nitfinfo", "nitfread", "nlfilter", "normxcorr2", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
331 "openrset", "ordfilt2", "otf2psf", "padarray", "para2fan", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
332 "phantom", "poly2mask", "projective2d", "psf2otf", "qtdecomp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
333 "qtgetblk", "qtsetblk", "radon", "rangefilt", "reflect", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
334 "regionprops", "rgb2gray", "rgb2ycbcr", "roicolor", "roifill", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
335 "roifilt2", "roipoly", "rsetwrite", "std2", "stdfilt", "strel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
336 "stretchlim", "subimage", "tformarray", "tformfwd", "tforminv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
337 "tonemap", "translate", "truesize", "viscircles", "warp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
338 "watershed", "whitepoint", "wiener2", "xyz2double", "xyz2uint16", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
339 "ycbcr2rgb"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
340 txt = check_package (fcn, "image");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
341
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
342 ## signal processing
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
343 case {"ac2poly", "ac2rc", "angle", "arburg", "arcov", "armcov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
344 "aryule", "bandpower", "barthannwin", "besselap", "besself", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
345 "bilinear", "bitrevorder", "blackmanharris", "bohmanwin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
346 "buffer", "buttap", "butter", "buttord", "cceps", "cconv", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
347 "cell2sos", "cfirpm", "cheb1ap", "cheb1ord", "cheb2ap", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
348 "cheb2ord", "chebwin", "cheby1", "cheby2", "chirp", "convmtx", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
349 "corrmtx", "cpsd", "czt", "db", "db2mag", "db2pow", "dct", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
350 "decimate", "demod", "design", "designmethods", "designopts", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
351 "dfilt", "dftmtx", "digitrevorder", "diric", "downsample", "dpss", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
352 "dpssclear", "dpssdir", "dpssload", "dspdata", "dspfwiz", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
353 "dutycycle", "ellip", "ellipap", "ellipord", "enbw", "equiripple", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
354 "falltime", "fdatool", "fdesign", "filt2block", "filterbuilder", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
355 "filternorm", "filtfilt", "filtic", "filtord", "findpeaks", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
356 "fir1", "fir2", "fircls", "fircls1", "firls", "firpm", "firpmord", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
357 "firrcos", "firtype", "flattopwin", "freqs", "freqsamp", "fvtool", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
358 "fwht", "gauspuls", "gaussdesign", "gaussfir", "gausswin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
359 "gmonopuls", "goertzel", "grpdelay", "hann", "hilbert", "icceps", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
360 "idct", "ifwht", "impinvar", "impz", "impzlength", "interp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
361 "intfilt", "invfreqs", "invfreqz", "is2rc", "isallpass", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
362 "islinphase", "ismaxphase", "isminphase", "isstable", "kaiser", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
363 "kaiserord", "kaiserwin", "lar2rc", "latc2tf", "latcfilt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
364 "levinson", "lp2bp", "lp2bs", "lp2hp", "lp2lp", "lpc", "lsf2poly", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
365 "mag2db", "marcumq", "maxflat", "medfilt1", "midcross", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
366 "modulate", "mscohere", "nuttallwin", "overshoot", "parzenwin", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
367 "pburg", "pcov", "peak2peak", "peak2rms", "peig", "phasedelay", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
368 "phasez", "pmcov", "pmtm", "pmusic", "poly2ac", "poly2lsf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
369 "poly2rc", "polyscale", "polystab", "pow2db", "prony", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
370 "pulseperiod", "pulsesep", "pulsewidth", "pulstran", "pwelch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
371 "pyulear", "rc2ac", "rc2is", "rc2lar", "rc2poly", "rceps", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
372 "rcosdesign", "realizemdl", "rectpuls", "rectwin", "resample", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
373 "residuez", "risetime", "rlevinson", "rms", "rooteig", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
374 "rootmusic", "rssq", "sawtooth", "schurrc", "seqperiod", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
375 "setspecs", "settlingtime", "sfdr", "sgolay", "sgolayfilt", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
376 "shiftdata", "sigwin", "sinad", "slewrate", "snr", "sos2cell", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
377 "sos2ss", "sos2tf", "sos2zp", "sosfilt", "spectrogram", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
378 "spectrum", "sptool", "square", "ss2sos", "ss2tf", "ss2zp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
379 "statelevels", "stepz", "stmcb", "strips", "taylorwin", "tf2latc", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
380 "tf2sos", "tf2ss", "tf2zp", "tf2zpk", "tfestimate", "thd", "toi", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
381 "triang", "tripuls", "tukeywin", "udecode", "uencode", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
382 "undershoot", "unshiftdata", "upfirdn", "upsample", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
383 "validstructures", "vco", "window", "wintool", "wvtool", "xcorr", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
384 "xcorr2", "xcov", "yulewalk", "zerophase", "zp2sos", "zp2ss", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
385 "zp2tf", "zplane"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
386 txt = check_package (fcn, "signal");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
387
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
388 ## statistics
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
389 case {"addedvarplot", "addlevels", "addTerms", "addTerms", "adtest", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
390 "andrewsplot", "anova1", "anova2", "anovan", "ansaribradley", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
391 "aoctool", "barttest", "bbdesign", "betafit", "betalike", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
392 "betastat", "binofit", "binostat", "biplot", "bootci", "bootstrp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
393 "boxplot", "candexch", "candgen", "canoncorr", "capability", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
394 "capaplot", "caseread", "casewrite", "ccdesign", "cdf", "cdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
395 "cdfplot", "cell2dataset", "chi2gof", "chi2stat", "cholcov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
396 "ClassificationBaggedEnsemble", "ClassificationDiscriminant", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
397 "ClassificationEnsemble", "ClassificationKNN", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
398 "ClassificationPartitionedEnsemble", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
399 "ClassificationPartitionedModel", "ClassificationTree", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
400 "classify", "classregtree", "cluster", "clusterdata", "cmdscale", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
401 "coefCI", "coefCI", "coefCI", "coefCI", "coefTest", "coefTest", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
402 "coefTest", "coefTest", "combnk", "compact", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
403 "CompactClassificationDiscriminant", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
404 "CompactClassificationEnsemble", "CompactClassificationTree", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
405 "CompactRegressionEnsemble", "CompactRegressionTree", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
406 "CompactTreeBagger", "compare", "confusionmat", "controlchart", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
407 "controlrules", "cophenet", "copulacdf", "copulafit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
408 "copulaparam", "copulapdf", "copularnd", "copulastat", "cordexch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
409 "corrcov", "covarianceParameters", "coxphfit", "createns", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
410 "crosstab", "crossval", "cvpartition", "datasample", "dataset", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
411 "dataset2cell", "dataset2struct", "dataset2table", "datasetfun", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
412 "daugment", "dcovary", "dendrogram", "designMatrix", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
413 "devianceTest", "dfittool", "disp", "disp", "disp", "disp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
414 "disttool", "droplevels", "dummyvar", "dwtest", "dwtest", "ecdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
415 "ecdfhist", "evalclusters", "evcdf", "evfit", "evinv", "evlike", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
416 "evpdf", "evrnd", "evstat", "ExhaustiveSearcher", "expfit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
417 "explike", "export", "expstat", "factoran", "feval", "feval", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
418 "feval", "ff2n", "fitdist", "fitensemble", "fitglm", "fitlm", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
419 "fitlme", "fitlmematrix", "fitnlm", "fitted", "fixedEffects", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
420 "fracfact", "fracfactgen", "friedman", "fsurfht", "fullfact", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
421 "gagerr", "gamfit", "gamlike", "gamstat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
422 "GeneralizedLinearModel", "geomean", "geostat", "getlabels", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
423 "getlevels", "gevcdf", "gevfit", "gevinv", "gevlike", "gevpdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
424 "gevrnd", "gevstat", "gline", "glmfit", "glmval", "glyphplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
425 "gmdistribution", "gname", "gpcdf", "gpfit", "gpinv", "gplike", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
426 "gplotmatrix", "gppdf", "gprnd", "gpstat", "grp2idx", "grpstats", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
427 "gscatter", "haltonset", "harmmean", "hist3", "histfit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
428 "hmmdecode", "hmmestimate", "hmmgenerate", "hmmtrain", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
429 "hmmviterbi", "hougen", "hygestat", "icdf", "icdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
430 "inconsistent", "interactionplot", "invpred", "islevel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
431 "ismissing", "isundefined", "iwishrnd", "jackknife", "jbtest", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
432 "johnsrnd", "join", "KDTreeSearcher", "kmeans", "knnsearch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
433 "kruskalwallis", "ksdensity", "kstest", "kstest2", "labels", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
434 "lasso", "lassoglm", "lassoPlot", "levelcounts", "leverage", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
435 "lhsdesign", "lhsnorm", "lillietest", "LinearMixedModel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
436 "LinearModel", "linhyptest", "linkage", "lognfit", "lognlike", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
437 "lognstat", "lsline", "mad", "mahal", "maineffectsplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
438 "makedist", "manova1", "manovacluster", "mat2dataset", "mdscale", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
439 "mergelevels", "mhsample", "mle", "mlecov", "mnpdf", "mnrfit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
440 "mnrnd", "mnrval", "multcompare", "multivarichart", "mvncdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
441 "mvnpdf", "mvnrnd", "mvregress", "mvregresslike", "mvtcdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
442 "mvtpdf", "mvtrnd", "NaiveBayes", "nancov", "nanmax", "nanmean", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
443 "nanmedian", "nanmin", "nanstd", "nansum", "nanvar", "nbinfit", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
444 "nbinstat", "ncfcdf", "ncfinv", "ncfpdf", "ncfrnd", "ncfstat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
445 "nctcdf", "nctinv", "nctpdf", "nctrnd", "nctstat", "ncx2cdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
446 "ncx2inv", "ncx2pdf", "ncx2rnd", "ncx2stat", "negloglik", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
447 "negloglik", "nlinfit", "nlintool", "nlmefit", "nlmefitsa", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
448 "nlparci", "nlpredci", "nnmf", "nominal", "NonLinearModel", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
449 "normfit", "normlike", "normplot", "normspec", "normstat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
450 "optimalleaforder", "ordinal", "parallelcoords", "paramci", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
451 "paretotails", "partialcorr", "partialcorri", "pca", "pcacov", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
452 "pcares", "pdf", "pdf", "pdist", "pdist2", "pearsrnd", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
453 "perfcurve", "plotAdded", "plotAdjustedResponse", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
454 "plotDiagnostics", "plotDiagnostics", "plotDiagnostics", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
455 "plotEffects", "plotInteraction", "plotResiduals", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
456 "plotResiduals", "plotResiduals", "plotResiduals", "plotSlice", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
457 "plotSlice", "plotSlice", "plsregress", "poissfit", "poisstat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
458 "polyconf", "polytool", "ppca", "predict", "predict", "predict", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
459 "predict", "predict", "predict", "predict", "predict", "princomp", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
460 "ProbDistUnivKernel", "ProbDistUnivParam", "probplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
461 "procrustes", "proflik", "qrandset", "qrandstream", "random", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
462 "random", "random", "random", "random", "random", "randomEffects", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
463 "randsample", "randtool", "rangesearch", "ranksum", "raylcdf", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
464 "raylfit", "raylinv", "raylpdf", "raylrnd", "raylstat", "rcoplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
465 "refcurve", "refline", "regress", "RegressionBaggedEnsemble", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
466 "RegressionEnsemble", "RegressionPartitionedEnsemble", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
467 "RegressionPartitionedModel", "RegressionTree", "regstats", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
468 "relieff", "removeTerms", "removeTerms", "residuals", "response", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
469 "ridge", "robustdemo", "robustfit", "rotatefactors", "rowexch", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
470 "rsmdemo", "rstool", "runstest", "sampsizepwr", "scatterhist", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
471 "sequentialfs", "setlabels", "signrank", "signtest", "silhouette", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
472 "slicesample", "sobolset", "squareform", "statget", "statset", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
473 "step", "step", "stepwise", "stepwisefit", "stepwiseglm", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
474 "stepwiselm", "struct2dataset", "surfht", "svmclassify", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
475 "svmtrain", "table2dataset", "tabulate", "tblread", "tblwrite", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
476 "tdfread", "tiedrank", "TreeBagger", "trimmean", "truncate", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
477 "tstat", "ttest", "ttest2", "unidstat", "unifit", "unifstat", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
478 "vartest", "vartest2", "vartestn", "wblfit", "wbllike", "wblplot", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
479 "wblstat", "wishrnd", "x2fx", "xlsread", "xptread", "ztest"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
480 txt = check_package (fcn, "statistics");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
481
19983
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
482 ## symbolic
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
483 case {"argnames", "bernoulli", "catalan", "charpoly", "chebyshevT", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
484 "chebyshevU", "children", "coshint", "cosint", "dawson", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
485 "digits", "dilog", "dirac", "divisors", "dsolve", "ei", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
486 "ellipticCE", "ellipticCK", "ellipticCPi", "ellipticE", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
487 "ellipticF", "ellipticK", "ellipticPi", "euler", "eulergamma", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
488 "finverse", "formula", "fresnelc", "fresnels", "funtool", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
489 "gegenbauerC", "harmonic", "heaviside", "hermiteH", "hypergeom", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
490 "igamma", "jacobiP", "kroneckerDelta", "kummerU", "laguerreL", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
491 "legendreP", "logint", "minpoly", "pochhammer", "poles", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
492 "poly2sym", "polylog", "pretty", "quorem", "rectangularPulse", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
493 "signIm", "simplify", "sinhint", "sinint", "solve", "ssinint", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
494 "sym", "sym2poly", "symfun", "sympref", "syms", "symvar", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
495 "triangularPulse", "vpa", "vpasolve", "whittakerM", "whittakerW", ...
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
496 "zeta"}
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
497 txt = check_package (fcn, "symbolic");
fc6c87e254bf help/__unimplemented__.m: add list of functions for the symbolic package.
Carnë Draug <carandraug@octave.org>
parents: 19781
diff changeset
498
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
499 ## optimization
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
500 case {"bintprog", "color", "fgoalattain", "fmincon", "fminimax", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
501 "fminsearch", "fseminf", "fzmult", "gangstr", "ktrlink", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
502 "linprog", "lsqcurvefit", "lsqlin", "lsqnonlin", "optimoptions", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
503 "optimtool", "quadprog"}
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
504 txt = check_package (fcn, "optim");
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
505
17174
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
506 otherwise
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
507 if (ismember (fcn, missing_functions ()))
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
508 txt = ["the '" fcn "' function is not yet implemented in Octave"];
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
509 else
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
510 is_matlab_function = false;
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
511 txt = "";
c3c1ebfaa7dc maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents: 17017
diff changeset
512 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
513 endswitch
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
514
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
515 if (is_matlab_function)
17245
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
516 txt = [txt, "\n\n@noindent\nPlease read ", ...
7babcdb9bc13 Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents: 17174
diff changeset
517 "@url{http://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
518 "you can contribute missing functionality."];
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
519 txt = __makeinfo__ (txt);
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
520 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
521
11215
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
522 if (nargout == 0)
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
523 warning ("Octave:missing-function", "%s", txt);
8b2a47a99701 help: print message if function not found
John W. Eaton <jwe@octave.org>
parents: 11141
diff changeset
524 endif
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
525
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
526 endfunction
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
527
17511
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
528 function txt = check_package (fcn, name)
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
529 txt = sprintf ("the '%s' function belongs to the %s package from Octave Forge",
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
530 fcn, name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
531
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
532 [~, status] = pkg ("describe", name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
533 switch (tolower (status{1}))
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
534 case "loaded",
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
535 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
536 case "not loaded",
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
537 txt = sprintf (["%s which you have installed but not loaded. To ", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
538 "load the package, run `pkg load %s' from the ", ...
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
539 "Octave prompt."], txt, name);
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
540 otherwise
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
541 ## 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
542 ## the output of describe
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
543 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
544 endswitch
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
545 endfunction
2298f8c7c615 Recognize missing functions from some Matlab toolboxes.
Carnë Draug <carandraug@octave.org>
parents: 17507
diff changeset
546
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
547 function list = missing_functions ()
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
548 persistent list = {
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
549 "MException",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
550 "RandStream",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
551 "Tiff",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
552 "VideoReader",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
553 "VideoWriter",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
554 "addCause",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
555 "addcats",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
556 "align",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
557 "alim",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
558 "alpha",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
559 "alphamap",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
560 "array2table",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
561 "bar3",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
562 "bar3h",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
563 "bench",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
564 "bicgstabl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
565 "brush",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
566 "builddocsearchdb",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
567 "bvp4c",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
568 "bvp5c",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
569 "bvpget",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
570 "bvpinit",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
571 "bvpset",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
572 "bvpxtend",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
573 "callSoapService",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
574 "calllib",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
575 "camdolly",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
576 "cameratoolbar",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
577 "camlight",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
578 "camlookat",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
579 "camorbit",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
580 "campan",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
581 "campos",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
582 "camproj",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
583 "camroll",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
584 "camtarget",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
585 "camup",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
586 "camva",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
587 "camzoom",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
588 "categorical",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
589 "categories",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
590 "cdf2rdf",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
591 "cdfepoch",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
592 "cdfinfo",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
593 "cdflib",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
594 "cdfread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
595 "cdfwrite",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
596 "cell2table",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
597 "cellplot",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
598 "checkcode",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
599 "checkin",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
600 "checkout",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
601 "clearvars",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
602 "clipboard",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
603 "cmopts",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
604 "colordef",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
605 "colormapeditor",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
606 "commandhistory",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
607 "commandwindow",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
608 "condeig",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
609 "coneplot",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
610 "containers.Map",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
611 "contourslice",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
612 "corrcoef",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
613 "countcats",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
614 "createClassFromWsdl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
615 "createSoapMessage",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
616 "customverctrl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
617 "datacursormode",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
618 "dbmex",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
619 "dde23",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
620 "ddeget",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
621 "ddensd",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
622 "ddesd",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
623 "ddeset",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
624 "decic",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
625 "delaunayTriangulation",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
626 "depdir",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
627 "depfun",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
628 "details",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
629 "deval",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
630 "dialog",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
631 "dither",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
632 "docsearch",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
633 "dragrect",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
634 "dynamicprops",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
635 "echodemo",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
636 "empty",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
637 "enumeration",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
638 "evalc",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
639 "events",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
640 "export2wsdlg",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
641 "figurepalette",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
642 "filebrowser",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
643 "fill3",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
644 "findprop",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
645 "fitsdisp",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
646 "fitsinfo",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
647 "fitsread",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
648 "fitswrite",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
649 "flow",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
650 "freqspace",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
651 "funm",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
652 "gammaincinv",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
653 "getReport",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
654 "getframe",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
655 "getpixelposition",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
656 "gobjects",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
657 "grabcode",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
658 "graymon",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
659 "griddedInterpolant",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
660 "gsvd",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
661 "guide",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
662 "h5create",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
663 "h5disp",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
664 "h5info",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
665 "h5read",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
666 "h5readatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
667 "h5write",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
668 "h5writeatt",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
669 "handle",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
670 "hdfinfo",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
671 "hdfread",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
672 "height",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
673 "hgexport",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
674 "hgsetget",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
675 "hgtransform",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
676 "im2java",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
677 "imapprox",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
678 "import",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
679 "inmem",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
680 "innerjoin",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
681 "inspect",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
682 "integral",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
683 "integral2",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
684 "integral3",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
685 "interpstreamspeed",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
686 "isKey",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
687 "iscategorical",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
688 "iscategory",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
689 "ismissing",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
690 "isocaps",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
691 "isordinal",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
692 "isprotected",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
693 "isstudent",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
694 "istable",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
695 "isundefined",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
696 "isvalid",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
697 "javaMethodEDT",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
698 "javaObjectEDT",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
699 "join",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
700 "keys",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
701 "last",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
702 "ldl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
703 "libfunctions",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
704 "libfunctionsview",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
705 "libisloaded",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
706 "libpointer",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
707 "libstruct",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
708 "light",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
709 "lightangle",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
710 "lighting",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
711 "linkdata",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
712 "listfonts",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
713 "loadlibrary",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
714 "localfunctions",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
715 "lsqr",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
716 "makehgtform",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
717 "material",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
718 "matfile",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
719 "matlabrc",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
720 "memmapfile",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
721 "memory",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
722 "mergecats",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
723 "methodsview",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
724 "minres",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
725 "mlintrpt",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
726 "mmfileinfo",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
727 "movegui",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
728 "movie",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
729 "movie2avi",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
730 "multibandread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
731 "multibandwrite",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
732 "native2unicode",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
733 "nccreate",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
734 "ncdisp",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
735 "ncinfo",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
736 "ncread",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
737 "ncreadatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
738 "ncwrite",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
739 "ncwriteatt",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
740 "ncwriteschema",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
741 "netcdf",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
742 "noanimate",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
743 "notebook",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
744 "notify",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
745 "ode113",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
746 "ode15i",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
747 "ode15s",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
748 "ode23",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
749 "ode23s",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
750 "ode23t",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
751 "ode23tb",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
752 "odextend",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
753 "openfig",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
754 "opengl",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
755 "openvar",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
756 "ordeig",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
757 "ordqz",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
758 "outerjoin",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
759 "padecoef",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
760 "parseSoapResponse",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
761 "pathtool",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
762 "pcode",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
763 "pdepe",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
764 "pdeval",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
765 "plotbrowser",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
766 "plotedit",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
767 "plottools",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
768 "printdlg",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
769 "printopt",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
770 "printpreview",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
771 "profsave",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
772 "propedit",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
773 "properties",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
774 "propertyeditor",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
775 "psi",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
776 "publish",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
777 "quad2d",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
778 "rbbox",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
779 "readtable",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
780 "reducepatch",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
781 "reducevolume",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
782 "remove",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
783 "removecats",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
784 "renamecats",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
785 "reordercats",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
786 "rng",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
787 "rowfun",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
788 "savefig",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
789 "scatteredInterpolant",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
790 "selectmoveresize",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
791 "sendmail",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
792 "serial",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
793 "setpixelposition",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
794 "showplottool",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
795 "smooth3",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
796 "snapnow",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
797 "ss2tf",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
798 "stack",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
799 "standardizeMissing",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
800 "startup",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
801 "stream2",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
802 "stream3",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
803 "streamline",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
804 "streamparticles",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
805 "streamribbon",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
806 "streamslice",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
807 "streamtube",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
808 "struct2table",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
809 "subvolume",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
810 "summary",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
811 "superclasses",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
812 "surf2patch",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
813 "sylvester",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
814 "symmlq",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
815 "table2array",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
816 "table2cell",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
817 "table2struct",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
818 "texlabel",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
819 "textwrap",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
820 "tfqmr",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
821 "throw",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
822 "throwAsCaller",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
823 "timeit",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
824 "timer",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
825 "timeseries",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
826 "todatenum",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
827 "toolboxdir",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
828 "triangulation",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
829 "tscollection",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
830 "uibuttongroup",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
831 "uigetpref",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
832 "uiimport",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
833 "uiopen",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
834 "uiresume",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
835 "uisave",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
836 "uisetcolor",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
837 "uisetfont",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
838 "uisetpref",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
839 "uistack",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
840 "uitable",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
841 "uitoggletool",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
842 "uitoolbar",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
843 "uiwait",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
844 "undocheckout",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
845 "unicode2native",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
846 "unloadlibrary",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
847 "unmesh",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
848 "unstack",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
849 "userpath",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
850 "values",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
851 "varfun",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
852 "verLessThan",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
853 "verctrl",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
854 "viewmtx",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
855 "visdiff",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
856 "volumebounds",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
857 "web",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
858 "width",
16927
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
859 "winopen",
6e240f8fcb88 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 16634
diff changeset
860 "winqueryreg",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
861 "workspace",
19092
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
862 "writetable",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
863 "xlsfinfo",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
864 "xlsread",
13fa7b5375a9 __unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents: 19091
diff changeset
865 "xlswrite",
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
866 "xmlread",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
867 "xmlwrite",
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
868 "xslt",
10443
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
869 };
34e51d4e199b implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
870 endfunction
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
871
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
872
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
873 %!test
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
874 %! str = __unimplemented__ ("no_name_function");
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
875 %! assert (isempty (str));
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
876 %! str = __unimplemented__ ("quad2d");
12835
0e65376cc44b codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents: 12826
diff changeset
877 %! assert (str(1:51), "quad2d is not implemented. Consider using dblquad.");
15562
8ed107220a3e maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 15558
diff changeset
878 %! str = __unimplemented__ ("MException");
15466
d174210ce1ec use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents: 14891
diff changeset
879 %! assert (str(1:58), "the 'MException' function is not yet implemented in Octave");
17338
1c89599167a6 maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents: 17245
diff changeset
880