diff src/ov.h @ 4478:7afd4bf05aa8

[project @ 2003-07-30 19:15:31 by jwe]
author jwe
date Wed, 30 Jul 2003 19:15:31 +0000
parents af308ca1a354
children e944fbe3fff2
line wrap: on
line diff
--- a/src/ov.h	Wed Jul 30 17:26:32 2003 +0000
+++ b/src/ov.h	Wed Jul 30 19:15:31 2003 +0000
@@ -183,11 +183,13 @@
   octave_value (double d);
   octave_value (const Cell& m);
   octave_value (const Matrix& m);
+  octave_value (const ArrayN<double>& m);
   octave_value (const DiagMatrix& d);
   octave_value (const RowVector& v);
   octave_value (const ColumnVector& v);
   octave_value (const Complex& C);
   octave_value (const ComplexMatrix& m);
+  octave_value (const ArrayN<Complex>& m);
   octave_value (const ComplexDiagMatrix& d);
   octave_value (const ComplexRowVector& v);
   octave_value (const ComplexColumnVector& v);
@@ -744,12 +746,6 @@
 // If TRUE, print the name along with the value.
 extern bool Vprint_answer_id_name;
 
-// Should operations on empty matrices return empty matrices or an
-// error?  A positive value means yes.  A negative value means yes,
-// but print a warning message.  Zero means it should be considered an
-// error.
-extern int Vpropagate_empty_matrices;
-
 // How many levels of structure elements should we print?
 extern int Vstruct_levels_to_print;