Mercurial > hg > octave-nkf
annotate scripts/help/__unimplemented__.m @ 17368:ddc85ecc901f
__unimplemented__.m: fix typo on function name
author | Carnë Draug <carandraug@octave.org> |
---|---|
date | Wed, 04 Sep 2013 05:29:08 +0100 |
parents | 84c119957463 |
children | 87a4abf72726 |
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 |
17174
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
104 otherwise |
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
105 if (ismember (fcn, missing_functions ())) |
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
106 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
|
107 else |
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
108 is_matlab_function = false; |
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
109 txt = ""; |
c3c1ebfaa7dc
maint: Use common indentation for switch statement.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
110 endif |
10443
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
111 endswitch |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
112 |
11215
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
113 if (is_matlab_function) |
17245
7babcdb9bc13
Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents:
17174
diff
changeset
|
114 txt = [txt, "\n\n@noindent\nPlease read ", ... |
7babcdb9bc13
Use ... instead of \ for line continuation marker.
Stefan Mahr <dac922@gmx.de>
parents:
17174
diff
changeset
|
115 "@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
|
116 "you can contribute missing functionality."]; |
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
117 txt = __makeinfo__ (txt); |
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
118 endif |
10443
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
119 |
11215
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
120 if (nargout == 0) |
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
121 warning ("Octave:missing-function", "%s", txt); |
8b2a47a99701
help: print message if function not found
John W. Eaton <jwe@octave.org>
parents:
11141
diff
changeset
|
122 endif |
10443
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
123 |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
124 endfunction |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
125 |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
126 function list = missing_functions () |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
127 persistent list = { |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
128 "MException", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
129 "RandStream", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
130 "Tiff", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
131 "VideoReader", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
132 "VideoWriter", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
133 "align", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
134 "alim", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
135 "alpha", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
136 "alphamap", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
137 "annotation", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
138 "audiodevinfo", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
139 "audioinfo", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
140 "audioplayer", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
141 "audioread", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
142 "audiorecorder", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
143 "audiowrite", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
144 "bar3", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
145 "bar3h", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
146 "bench", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
147 "bicgstabl", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
148 "brush", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
149 "builddocsearchdb", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
150 "bvp4c", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
151 "bvp5c", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
152 "bvpget", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
153 "bvpinit", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
154 "bvpset", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
155 "bvpxtend", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
156 "callSoapService", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
157 "calllib", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
158 "camdolly", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
159 "cameratoolbar", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
160 "camlight", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
161 "camlookat", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
162 "camorbit", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
163 "campan", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
164 "campos", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
165 "camproj", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
166 "camroll", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
167 "camtarget", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
168 "camup", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
169 "camva", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
170 "camzoom", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
171 "cdf2rdf", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
172 "cdfepoch", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
173 "cdfinfo", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
174 "cdfread", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
175 "cdfwrite", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
176 "cellplot", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
177 "checkin", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
178 "checkcode", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
179 "checkout", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
180 "cholinc", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
181 "clearvars", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
182 "clipboard", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
183 "cmopts", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
184 "colordef", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
185 "colormapeditor", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
186 "commandhistory", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
187 "commandwindow", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
188 "condeig", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
189 "coneplot", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
190 "containers.Map", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
191 "contourslice", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
192 "createClassFromWsdl", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
193 "createSoapMessage", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
194 "customverctrl", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
195 "datacursormode", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
196 "dbmex", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
197 "dde23", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
198 "ddeget", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
199 "ddensd", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
200 "ddesd", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
201 "ddeset", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
202 "decic", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
203 "delaunayTriangulation", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
204 "depdir", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
205 "depfun", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
206 "deval", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
207 "dialog", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
208 "dither", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
209 "docsearch", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
210 "dragrect", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
211 "dynamicprops", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
212 "echodemo", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
213 "evalc", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
214 "export2wsdlg", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
215 "figurepalette", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
216 "filebrowser", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
217 "fill3", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
218 "fitsdisp", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
219 "fitsinfo", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
220 "fitsread", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
221 "fitswrite", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
222 "flow", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
223 "frame2im", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
224 "freqspace", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
225 "funm", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
226 "gammaincinv", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
227 "getframe", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
228 "getpixelposition", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
229 "gobjects", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
230 "grabcode", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
231 "graymon", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
232 "griddedInterpolant", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
233 "gsvd", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
234 "guidata", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
235 "guide", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
236 "guihandles", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
237 "handle", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
238 "h5create", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
239 "h5disp", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
240 "h5info", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
241 "h5read", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
242 "h5readatt", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
243 "h5write", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
244 "h5writeatt", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
245 "hdfinfo", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
246 "hdfread", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
247 "hgexport", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
248 "hgload", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
249 "hgsave", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
250 "hgsetget", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
251 "hgtransform", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
252 "ichol", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
253 "ilu", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
254 "im2frame", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
255 "im2java", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
256 "imapprox", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
257 "import", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
258 "inmem", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
259 "inputParser", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
260 "inspect", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
261 "instrcallback", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
262 "instrfind", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
263 "instrfindall", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
264 "integral", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
265 "integral2", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
266 "integral3", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
267 "interpstreamspeed", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
268 "iscom", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
269 "isinterface", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
270 "isjava", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
271 "isocaps", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
272 "isstudent", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
273 "javachk", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
274 "ldl", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
275 "libfunctions", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
276 "libfunctionsview", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
277 "libisloaded", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
278 "libpointer", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
279 "libstruct", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
280 "light", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
281 "lightangle", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
282 "lighting", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
283 "linkaxes", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
284 "linkdata", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
285 "linsolve", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
286 "listfonts", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
287 "loadlibrary", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
288 "lscov", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
289 "lsqr", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
290 "makehgtform", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
291 "material", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
292 "matfile", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
293 "matlabrc", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
294 "memmapfile", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
295 "memory", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
296 "metaclass", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
297 "methodsview", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
298 "minres", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
299 "mlintrpt", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
300 "mmfileinfo", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
301 "movegui", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
302 "movie", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
303 "movie2avi", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
304 "multibandread", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
305 "multibandwrite", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
306 "native2unicode", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
307 "nccreate", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
308 "ncdisp", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
309 "ncinfo", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
310 "ncread", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
311 "ncreadatt", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
312 "ncwrite", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
313 "ncwriteatt", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
314 "ncwriteschema", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
315 "noanimate", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
316 "notebook", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
317 "ode113", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
318 "ode15i", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
319 "ode15s", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
320 "ode23", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
321 "ode23s", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
322 "ode23t", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
323 "ode23tb", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
324 "ode45", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
325 "odeget", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
326 "odeset", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
327 "odextend", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
328 "open", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
329 "openfig", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
330 "opengl", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
331 "openvar", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
332 "ordeig", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
333 "ordqz", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
334 "ordschur", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
335 "padecoef", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
336 "pan", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
337 "parseSoapResponse", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
338 "pathtool", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
339 "pcode", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
340 "pdepe", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
341 "pdeval", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
342 "plotbrowser", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
343 "plotedit", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
344 "plottools", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
345 "printdlg", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
346 "printopt", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
347 "printpreview", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
348 "profsave", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
349 "propedit", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
350 "propertyeditor", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
351 "psi", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
352 "publish", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
353 "qmr", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
354 "quad2d", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
355 "rbbox", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
356 "reducepatch", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
357 "reducevolume", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
358 "readasync", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
359 "rng", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
360 "rotate", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
361 "rotate3d", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
362 "scatteredInterpolant", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
363 "selectmoveresize", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
364 "sendmail", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
365 "serial", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
366 "serialbreak", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
367 "setpixelposition", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
368 "showplottool", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
369 "smooth3", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
370 "snapnow", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
371 "sound", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
372 "soundsc", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
373 "ss2tf", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
374 "startup", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
375 "stopasync", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
376 "stream2", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
377 "stream3", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
378 "streamline", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
379 "streamparticles", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
380 "streamribbon", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
381 "streamslice", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
382 "streamtube", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
383 "strings", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
384 "subvolume", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
385 "superclasses", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
386 "surf2patch", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
387 "symmlq", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
388 "syntax", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
389 "texlabel", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
390 "textwrap", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
391 "tfqmr", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
392 "timer", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
393 "timeseries", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
394 "todatenum", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
395 "toolboxdir", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
396 "triangulation", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
397 "tscollection", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
398 "tstool", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
399 "uibuttongroup", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
400 "uicontextmenu", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
401 "uicontrol", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
402 "uigetpref", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
403 "uiimport", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
404 "uiopen", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
405 "uipanel", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
406 "uipushtool", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
407 "uiresume", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
408 "uisave", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
409 "uisetcolor", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
410 "uisetfont", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
411 "uisetpref", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
412 "uistack", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
413 "uitable", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
414 "uitoggletool", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
415 "uitoolbar", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
416 "uiwait", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
417 "undocheckout", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
418 "unicode2native", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
419 "unloadlibrary", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
420 "unmesh", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
421 "userpath", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
422 "validateattributes", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
423 "verctrl", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
424 "verLessThan", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
425 "viewmtx", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
426 "visdiff", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
427 "volumebounds", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
428 "web", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
429 "whatsnew", |
16927
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
430 "winopen", |
6e240f8fcb88
__unimplemented__.m: Update list of unimplemented functions.
Rik <rik@octave.org>
parents:
16634
diff
changeset
|
431 "winqueryreg", |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
432 "workspace", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
433 "xmlread", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
434 "xmlwrite", |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
435 "xslt", |
10443
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
436 "zoom", |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
437 }; |
34e51d4e199b
implement smart warnings about missing Matlab functionality
Jaroslav Hajek <highegg@gmail.com>
parents:
diff
changeset
|
438 endfunction |
12835
0e65376cc44b
codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents:
12826
diff
changeset
|
439 |
0e65376cc44b
codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents:
12826
diff
changeset
|
440 |
0e65376cc44b
codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents:
12826
diff
changeset
|
441 %!test |
15562
8ed107220a3e
maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents:
15558
diff
changeset
|
442 %! str = __unimplemented__ ("no_name_function"); |
12835
0e65376cc44b
codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents:
12826
diff
changeset
|
443 %! assert (isempty (str)); |
15562
8ed107220a3e
maint: Rename unimplemented.m to __unimplemented__.m.
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents:
15558
diff
changeset
|
444 %! str = __unimplemented__ ("quad2d"); |
12835
0e65376cc44b
codesprint: Add 3 tests for unimplemented.m
Rik <octave@nomad.inbox5.com>
parents:
12826
diff
changeset
|
445 %! 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
|
446 %! 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
|
447 %! 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
|
448 |