changeset 24400:62add1b69100 stable

Add polarplot() to the list of unimplemented functions (bug #52643). * __unimplemented__.m: Add special case for polarplot() which gives a message pointing to polar() as the current workaround.
author Rik <rik@octave.org>
date Mon, 11 Dec 2017 14:59:43 -0800
parents a7dfb685d261
children f6016eeb27ec
files scripts/help/__unimplemented__.m
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/__unimplemented__.m	Mon Dec 11 14:46:43 2017 -0800
+++ b/scripts/help/__unimplemented__.m	Mon Dec 11 14:59:43 2017 -0800
@@ -89,6 +89,9 @@
              "Matlab-compatible ODE functions are provided by the odepkg ", ...
              "package.  See @url{http://octave.sourceforge.net/odepkg/}."];
 
+    case "polarplot"
+      txt = ["polarplot is not implemented.  Consider using polar."];
+
     case "startup"
       txt = ["startup is not implemented.  ", ...
              'Octave uses the file ".octaverc" instead.'];