Mercurial > hg > octave-thorsten
comparison src/ov.cc @ 3361:4f40efa995c1
[project @ 1999-11-19 21:19:37 by jwe]
author | jwe |
---|---|
date | Fri, 19 Nov 1999 21:19:44 +0000 |
parents | 8623649c967c |
children | 9db3ff0b6913 |
comparison
equal
deleted
inserted
replaced
3360:48bd8127e19b | 3361:4f40efa995c1 |
---|---|
1519 { | 1519 { |
1520 DEFVAR (do_fortran_indexing, 0.0, do_fortran_indexing, | 1520 DEFVAR (do_fortran_indexing, 0.0, do_fortran_indexing, |
1521 "allow single indices for matrices"); | 1521 "allow single indices for matrices"); |
1522 | 1522 |
1523 DEFVAR (implicit_str_to_num_ok, 0.0, implicit_str_to_num_ok, | 1523 DEFVAR (implicit_str_to_num_ok, 0.0, implicit_str_to_num_ok, |
1524 "allow implicit string to number conversion"); | 1524 "-*- texinfo -*-\n\ |
1525 @defvr {Built-in Variable} implicit_str_to_num_ok\n\ | |
1526 If the value of @code{implicit_str_to_num_ok} is nonzero, implicit\n\ | |
1527 conversions of strings to their numeric ASCII equivalents are allowed.\n\ | |
1528 Otherwise, an error message is printed and control is returned to the\n\ | |
1529 top level. The default value is 0.\n\ | |
1530 @end defvr") | |
1525 | 1531 |
1526 DEFVAR (ok_to_lose_imaginary_part, "warn", ok_to_lose_imaginary_part, | 1532 DEFVAR (ok_to_lose_imaginary_part, "warn", ok_to_lose_imaginary_part, |
1527 "silently convert from complex to real by dropping imaginary part"); | 1533 "silently convert from complex to real by dropping imaginary part"); |
1528 | 1534 |
1529 DEFVAR (prefer_column_vectors, 1.0, prefer_column_vectors, | 1535 DEFVAR (prefer_column_vectors, 1.0, prefer_column_vectors, |
1542 | 1548 |
1543 DEFVAR (resize_on_range_error, 1.0, resize_on_range_error, | 1549 DEFVAR (resize_on_range_error, 1.0, resize_on_range_error, |
1544 "enlarge matrices on assignment"); | 1550 "enlarge matrices on assignment"); |
1545 | 1551 |
1546 DEFVAR (struct_levels_to_print, 2.0, struct_levels_to_print, | 1552 DEFVAR (struct_levels_to_print, 2.0, struct_levels_to_print, |
1547 "number of levels of structure elements to print"); | 1553 "-*- texinfo -*-\n\ |
1554 @defvr {Built-in Variable} struct_levels_to_print\n\ | |
1555 You can tell Octave how many structure levels to display by setting the\n\ | |
1556 built-in variable @code{struct_levels_to_print}. The default value is 2.\n\ | |
1557 @end defvr") | |
1548 | 1558 |
1549 DEFVAR (warn_divide_by_zero, 1.0, warn_divide_by_zero, | 1559 DEFVAR (warn_divide_by_zero, 1.0, warn_divide_by_zero, |
1550 "if TRUE, warn about division by zero"); | 1560 "if TRUE, warn about division by zero"); |
1551 } | 1561 } |
1552 | 1562 |