changeset 13777:df98c216da32

unimplemented.m: Mention alternatives for importdata() function (Bug #34670). * unimplemented.m: Mention alternatives for importdata() function.
author Rik <octave@nomad.inbox5.com>
date Tue, 01 Nov 2011 09:58:34 -0700
parents eb12d5d5c7b9
children b0b6aa4f7302
files scripts/help/unimplemented.m
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/unimplemented.m	Tue Nov 01 09:33:00 2011 -0700
+++ b/scripts/help/unimplemented.m	Tue Nov 01 09:58:34 2011 -0700
@@ -29,12 +29,17 @@
   ## Some smarter cases, add more as needed.
   switch (fcn)
 
+  case "importdata"
+    txt = ["importdata is not implemented.  Similar functionality is ",...
+    "available through @code{load}, @code{dlmread}, @code{csvread}, ",...
+    "or @code{textscan}."];  
+
   case "quad2d"
     txt = ["quad2d is not implemented.  Consider using dblquad."];
 
   case "gsvd"
-    txt = ["gsvd is not currently part of Octave.  See the linear-algebra",...
-    "package at @url{http://octave.sf.net/linear-algebra/}."];
+    txt = ["gsvd is not currently part of core Octave.  See the ",
+    "linear-algebra package at @url{http://octave.sf.net/linear-algebra/}."];
 
   case "linprog"
     txt = ["Octave does not currently provide linprog.  ",...