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