comparison 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
comparison
equal deleted inserted replaced
4477:87c2e107f811 4478:7afd4bf05aa8
181 181
182 octave_value (octave_time t); 182 octave_value (octave_time t);
183 octave_value (double d); 183 octave_value (double d);
184 octave_value (const Cell& m); 184 octave_value (const Cell& m);
185 octave_value (const Matrix& m); 185 octave_value (const Matrix& m);
186 octave_value (const ArrayN<double>& m);
186 octave_value (const DiagMatrix& d); 187 octave_value (const DiagMatrix& d);
187 octave_value (const RowVector& v); 188 octave_value (const RowVector& v);
188 octave_value (const ColumnVector& v); 189 octave_value (const ColumnVector& v);
189 octave_value (const Complex& C); 190 octave_value (const Complex& C);
190 octave_value (const ComplexMatrix& m); 191 octave_value (const ComplexMatrix& m);
192 octave_value (const ArrayN<Complex>& m);
191 octave_value (const ComplexDiagMatrix& d); 193 octave_value (const ComplexDiagMatrix& d);
192 octave_value (const ComplexRowVector& v); 194 octave_value (const ComplexRowVector& v);
193 octave_value (const ComplexColumnVector& v); 195 octave_value (const ComplexColumnVector& v);
194 octave_value (bool b); 196 octave_value (bool b);
195 octave_value (const boolMatrix& bm); 197 octave_value (const boolMatrix& bm);
742 extern int Vwarn_imag_to_real; 744 extern int Vwarn_imag_to_real;
743 745
744 // If TRUE, print the name along with the value. 746 // If TRUE, print the name along with the value.
745 extern bool Vprint_answer_id_name; 747 extern bool Vprint_answer_id_name;
746 748
747 // Should operations on empty matrices return empty matrices or an
748 // error? A positive value means yes. A negative value means yes,
749 // but print a warning message. Zero means it should be considered an
750 // error.
751 extern int Vpropagate_empty_matrices;
752
753 // How many levels of structure elements should we print? 749 // How many levels of structure elements should we print?
754 extern int Vstruct_levels_to_print; 750 extern int Vstruct_levels_to_print;
755 751
756 // Allow divide by zero errors to be suppressed. 752 // Allow divide by zero errors to be suppressed.
757 extern bool Vwarn_divide_by_zero; 753 extern bool Vwarn_divide_by_zero;