Mercurial > hg > octave-lyh
comparison src/ov.h @ 3418:ca92c9d3f882
[project @ 2000-01-12 03:07:47 by jwe]
author | jwe |
---|---|
date | Wed, 12 Jan 2000 03:07:52 +0000 |
parents | 8623649c967c |
children | e71b3d1dd327 |
comparison
equal
deleted
inserted
replaced
3417:cb56e4bd79ca | 3418:ca92c9d3f882 |
---|---|
154 octave_value (void); | 154 octave_value (void); |
155 octave_value (double d); | 155 octave_value (double d); |
156 octave_value (const Cell& m); | 156 octave_value (const Cell& m); |
157 octave_value (const Matrix& m); | 157 octave_value (const Matrix& m); |
158 octave_value (const DiagMatrix& d); | 158 octave_value (const DiagMatrix& d); |
159 octave_value (const RowVector& v, int pcv = -1); | 159 octave_value (const RowVector& v); |
160 octave_value (const ColumnVector& v, int pcv = -1); | 160 octave_value (const ColumnVector& v); |
161 octave_value (const Complex& C); | 161 octave_value (const Complex& C); |
162 octave_value (const ComplexMatrix& m); | 162 octave_value (const ComplexMatrix& m); |
163 octave_value (const ComplexDiagMatrix& d); | 163 octave_value (const ComplexDiagMatrix& d); |
164 octave_value (const ComplexRowVector& v, int pcv = -1); | 164 octave_value (const ComplexRowVector& v); |
165 octave_value (const ComplexColumnVector& v, int pcv = -1); | 165 octave_value (const ComplexColumnVector& v); |
166 octave_value (bool b); | 166 octave_value (bool b); |
167 octave_value (const boolMatrix& bm); | 167 octave_value (const boolMatrix& bm); |
168 octave_value (char c); | 168 octave_value (char c); |
169 octave_value (const char *s); | 169 octave_value (const char *s); |
170 octave_value (const string& s); | 170 octave_value (const string& s); |
660 // type is what we're really looking for? A positive value means yes. | 660 // type is what we're really looking for? A positive value means yes. |
661 // A negative value means yes, but print a warning message. Zero | 661 // A negative value means yes, but print a warning message. Zero |
662 // means it should be considered an error. | 662 // means it should be considered an error. |
663 extern int Vok_to_lose_imaginary_part; | 663 extern int Vok_to_lose_imaginary_part; |
664 | 664 |
665 // If TRUE, create column vectors when doing assignments like: | |
666 // | |
667 // octave> A(1) = 3; A(2) = 5 | |
668 // | |
669 // (for A undefined). Only matters when resize_on_range_error is also | |
670 // TRUE. | |
671 extern bool Vprefer_column_vectors; | |
672 | |
673 // If TRUE, print the name along with the value. | 665 // If TRUE, print the name along with the value. |
674 extern bool Vprint_answer_id_name; | 666 extern bool Vprint_answer_id_name; |
675 | 667 |
676 // Should operations on empty matrices return empty matrices or an | 668 // Should operations on empty matrices return empty matrices or an |
677 // error? A positive value means yes. A negative value means yes, | 669 // error? A positive value means yes. A negative value means yes, |