Mercurial > hg > octave-lyh
comparison src/mappers.cc @ 3362:49ae660cdb39
[project @ 1999-11-19 21:25:44 by jwe]
author | jwe |
---|---|
date | Fri, 19 Nov 1999 21:25:44 +0000 |
parents | 4f40efa995c1 |
children | a4cd1e9d9962 |
comparison
equal
deleted
inserted
replaced
3361:4f40efa995c1 | 3362:49ae660cdb39 |
---|---|
541 toascii (\"ASCII\")\n\ | 541 toascii (\"ASCII\")\n\ |
542 @result{} [ 65, 83, 67, 73, 73 ]\n\ | 542 @result{} [ 65, 83, 67, 73, 73 ]\n\ |
543 @end group\n\ | 543 @end group\n\ |
544 \n\ | 544 \n\ |
545 @end example\n\ | 545 @end example\n\ |
546 @end deftypefn") | 546 @end deftypefn"); |
547 | 547 |
548 DEFUN_MAPPER (tolower, xtolower, 0, 0, 0, 0, 0, 0.0, 0.0, 2, | 548 DEFUN_MAPPER (tolower, xtolower, 0, 0, 0, 0, 0, 0.0, 0.0, 2, |
549 "-*- texinfo -*-\n\ | 549 "-*- texinfo -*-\n\ |
550 @deftypefn {Mapping Function} {} tolower (@var{s})\n\ | 550 @deftypefn {Mapping Function} {} tolower (@var{s})\n\ |
551 Return a copy of the string @var{s}, with each upper-case character\n\ | 551 Return a copy of the string @var{s}, with each upper-case character\n\ |
554 \n\ | 554 \n\ |
555 @example\n\ | 555 @example\n\ |
556 tolower (\"MiXeD cAsE 123\")\n\ | 556 tolower (\"MiXeD cAsE 123\")\n\ |
557 @result{} \"mixed case 123\"\n\ | 557 @result{} \"mixed case 123\"\n\ |
558 @end example\n\ | 558 @end example\n\ |
559 @end deftypefn") | 559 @end deftypefn"); |
560 | 560 |
561 DEFUN_MAPPER (toupper, xtoupper, 0, 0, 0, 0, 0, 0.0, 0.0, 2, | 561 DEFUN_MAPPER (toupper, xtoupper, 0, 0, 0, 0, 0, 0.0, 0.0, 2, |
562 "-*- texinfo -*-\n\ | 562 "-*- texinfo -*-\n\ |
563 @deftypefn {Function File} {} toupper (@var{s})\n\ | 563 @deftypefn {Function File} {} toupper (@var{s})\n\ |
564 Return a copy of the string @var{s}, with each lower-case character\n\ | 564 Return a copy of the string @var{s}, with each lower-case character\n\ |
569 @group\n\ | 569 @group\n\ |
570 toupper (\"MiXeD cAsE 123\") | 570 toupper (\"MiXeD cAsE 123\") |
571 @result{} \"MIXED CASE 123\"\n\ | 571 @result{} \"MIXED CASE 123\"\n\ |
572 @end group\n\ | 572 @end group\n\ |
573 @end example\n\ | 573 @end example\n\ |
574 @end deftypefn") | 574 @end deftypefn"); |
575 | 575 |
576 DEFALIAS (gammaln, lgamma); | 576 DEFALIAS (gammaln, lgamma); |
577 | 577 |
578 DEFALIAS (isfinite, finite); | 578 DEFALIAS (isfinite, finite); |
579 | 579 |