Mercurial > hg > octave-avbm
comparison src/pr-output.cc @ 4661:12b6fbd57436
[project @ 2003-11-25 05:41:35 by jwe]
author | jwe |
---|---|
date | Tue, 25 Nov 2003 05:41:36 +0000 |
parents | c8829691db47 |
children | bf7272f8ba8c |
comparison
equal
deleted
inserted
replaced
4660:5df5c9c5c166 | 4661:12b6fbd57436 |
---|---|
1352 else | 1352 else |
1353 os << plus_format_chars[2]; | 1353 os << plus_format_chars[2]; |
1354 } | 1354 } |
1355 | 1355 |
1356 void | 1356 void |
1357 octave_print_internal (std::ostream& os, double d, bool pr_as_read_syntax) | 1357 octave_print_internal (std::ostream& os, double d, |
1358 bool /* pr_as_read_syntax */) | |
1358 { | 1359 { |
1359 if (plus_format) | 1360 if (plus_format) |
1360 { | 1361 { |
1361 pr_plus_format (os, d); | 1362 pr_plus_format (os, d); |
1362 } | 1363 } |
1612 os << "c"; | 1613 os << "c"; |
1613 } | 1614 } |
1614 | 1615 |
1615 void | 1616 void |
1616 octave_print_internal (std::ostream& os, const Complex& c, | 1617 octave_print_internal (std::ostream& os, const Complex& c, |
1617 bool pr_as_read_syntax) | 1618 bool /* pr_as_read_syntax */) |
1618 { | 1619 { |
1619 if (plus_format) | 1620 if (plus_format) |
1620 { | 1621 { |
1621 pr_plus_format (os, c); | 1622 pr_plus_format (os, c); |
1622 } | 1623 } |
1962 } | 1963 } |
1963 } | 1964 } |
1964 | 1965 |
1965 void | 1966 void |
1966 octave_print_internal (std::ostream& os, const charNDArray& nda, | 1967 octave_print_internal (std::ostream& os, const charNDArray& nda, |
1967 bool pr_as_read_syntax, int extra_indent, | 1968 bool pr_as_read_syntax, int /* extra_indent */, |
1968 bool pr_as_string) | 1969 bool pr_as_string) |
1969 { | 1970 { |
1970 switch (nda.ndims ()) | 1971 switch (nda.ndims ()) |
1971 { | 1972 { |
1972 case 1: | 1973 case 1: |