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