Mercurial > hg > octave-nkf
diff scripts/miscellaneous/unimplemented.m @ 10878:c318b70bf437
unimplemented.m: Format output for easier on-screen reading.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 09 Aug 2010 20:10:10 -0700 |
parents | ca836bcdf85e |
children | 20ce631f0f12 |
line wrap: on
line diff
--- a/scripts/miscellaneous/unimplemented.m +++ b/scripts/miscellaneous/unimplemented.m @@ -26,21 +26,27 @@ ## Some smarter cases, add more as needed. switch (fcn) - case "textscan" - txt = ["textscan is not implemented. Consider using textread or sscanf."]; + + case "quad2d" + txt = ["quad2d is not implemented. Consider using dblquad."]; case "gsvd" - txt = ["gsvd is currently not part of Octave. See the linear-algebra package at ",... - "@url{http://octave.sf.net/linear-algebra/}."]; + txt = ["gsvd is not currently part of Octave. See the linear-algebra",... + "package at @url{http://octave.sf.net/linear-algebra/}."]; case "linprog" - txt = ["Octave does not currently provide linprog. Linear programming problems may be solved ",... - "using @code{glpk}. Try @code{help glpk} for more info."]; + txt = ["Octave does not currently provide linprog. ",... + "Linear programming problems may be solved using @code{glpk}. ",... + "Try @code{help glpk} for more info."]; case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", "ode45", "odeget", "odeset"} - txt = ["Octave provides lsode for solving differential equations. For more information, ",... - "try @code{help lsode}.\n Matlab-compatible ODE functions are provided by the odepkg package. ",... + txt = ["Octave provides lsode for solving differential equations. ",... + "For more information try @code{help lsode}. ",... + "Matlab-compatible ODE functions are provided by the odepkg package. ",... "See @url{http://octave.sf.net/odepkg/}."]; + + case "textscan" + txt = ["textscan is not implemented. Consider using textread or sscanf."]; otherwise if (ismember (fcn, missing_functions ())) @@ -54,7 +60,8 @@ endif endswitch - txt = [txt, "\nPlease read @url{http://www.octave.org/missing.html} ",... + txt = [txt, "\n\n@noindent\nPlease read ",... + "@url{http://www.octave.org/missing.html} ",... "to find out how you can help with contributing missing functionality."]; warning ("Octave:missing-function",["\n", __makeinfo__(txt)]); @@ -424,7 +431,6 @@ "wavrecord", "web", "whatsnew", - "whitebg", "wk1finfo", "wk1read", "wk1write",