Mercurial > hg > octave-nkf
comparison src/ov-usr-fcn.cc @ 3258:4964d5391acc
[project @ 1999-07-21 21:51:33 by jwe]
author | jwe |
---|---|
date | Wed, 21 Jul 1999 21:52:04 +0000 |
parents | 4d33b1e56bff |
children | 6923abb04e16 |
comparison
equal
deleted
inserted
replaced
3257:5e61a7a62e2e | 3258:4964d5391acc |
---|---|
590 } | 590 } |
591 | 591 |
592 void | 592 void |
593 symbols_of_ov_usr_fcn (void) | 593 symbols_of_ov_usr_fcn (void) |
594 { | 594 { |
595 DEFVAR (default_return_value, Matrix (), 0, 0, | 595 DEFVAR (default_return_value, Matrix (), 0, |
596 "the default for value for unitialized variables returned from\n\ | 596 "the default for value for unitialized variables returned from\n\ |
597 functions. Only used if the variable initialize_return_values is\n\ | 597 functions. Only used if the variable initialize_return_values is\n\ |
598 nonzero."); | 598 nonzero."); |
599 | 599 |
600 DEFVAR (define_all_return_values, 0.0, 0, define_all_return_values, | 600 DEFVAR (define_all_return_values, 0.0, define_all_return_values, |
601 "control whether values returned from functions should have a\n\ | 601 "control whether values returned from functions should have a\n\ |
602 value even if one has not been explicitly assigned. See also\n\ | 602 value even if one has not been explicitly assigned. See also\n\ |
603 default_return_value"); | 603 default_return_value"); |
604 | 604 |
605 DEFVAR (max_recursion_depth, 256.0, 0, max_recursion_depth, | 605 DEFVAR (max_recursion_depth, 256.0, max_recursion_depth, |
606 "maximum nesting level for functions called recursively.\n\ | 606 "maximum nesting level for functions called recursively.\n\ |
607 The default value is 256."); | 607 The default value is 256."); |
608 | 608 |
609 DEFVAR (return_last_computed_value, 0.0, 0, return_last_computed_value, | 609 DEFVAR (return_last_computed_value, 0.0, return_last_computed_value, |
610 "if a function does not return any values explicitly, return the\n\ | 610 "if a function does not return any values explicitly, return the\n\ |
611 last computed value"); | 611 last computed value"); |
612 } | 612 } |
613 | 613 |
614 /* | 614 /* |