comparison src/DLD-FUNCTIONS/cellfun.cc @ 11833:355d6b8e2111 release-3-0-x

Typo in num2cell's description
author Thomas Weber <thomas.weber.mail@gmail.com>
date Tue, 09 Sep 2008 12:38:18 -0400
parents 4482ba9814b7
children 24c6e1e76add
comparison
equal deleted inserted replaced
11832:5860aaef2f6f 11833:355d6b8e2111
533 */ 533 */
534 534
535 DEFUN_DLD (num2cell, args, , 535 DEFUN_DLD (num2cell, args, ,
536 "-*- texinfo -*-\n\ 536 "-*- texinfo -*-\n\
537 @deftypefn {Loadable Function} {@var{c} =} num2cell (@var{m})\n\ 537 @deftypefn {Loadable Function} {@var{c} =} num2cell (@var{m})\n\
538 @deftypefnx {Loadable Function} {@var{c} =} num2cell (@var{m}, @var{d})\n\ 538 @deftypefnx {Loadable Function} {@var{c} =} num2cell (@var{m}, @var{dim})\n\
539 Convert to matrix @var{m} into a cell array. If @var{d} is defined the\n\ 539 Converts the matrix @var{m} into a cell array. If @var{dim} is defined, the\n\
540 value @var{c} is of dimension 1 in this dimension and the elements of\n\ 540 value @var{c} is of dimension 1 in this dimension and the elements of\n\
541 @var{m} are placed in slices in @var{c}.\n\ 541 @var{m} are placed in slices in @var{c}.\n\
542 @seealso{mat2cell}\n\ 542 @seealso{mat2cell}\n\
543 @end deftypefn") 543 @end deftypefn")
544 { 544 {
631 DEFUN_DLD (mat2cell, args, , 631 DEFUN_DLD (mat2cell, args, ,
632 "-*- texinfo -*-\n\ 632 "-*- texinfo -*-\n\
633 @deftypefn {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{m}, @var{n})\n\ 633 @deftypefn {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{m}, @var{n})\n\
634 @deftypefnx {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{d1}, @var{d2}, @dots{})\n\ 634 @deftypefnx {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{d1}, @var{d2}, @dots{})\n\
635 @deftypefnx {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{r})\n\ 635 @deftypefnx {Loadable Function} {@var{b} =} mat2cell (@var{a}, @var{r})\n\
636 Converts the matrix @var{a} to a cell array If @var{a} is 2-D, then\n\ 636 Converts the matrix @var{a} to a cell array. If @var{a} is 2-D, then\n\
637 it is required that @code{sum (@var{m}) == size (@var{a}, 1)} and\n\ 637 it is required that @code{sum (@var{m}) == size (@var{a}, 1)} and\n\
638 @code{sum (@var{n}) == size (@var{a}, 2)}. Similarly, if @var{a} is\n\ 638 @code{sum (@var{n}) == size (@var{a}, 2)}. Similarly, if @var{a} is\n\
639 a multi-dimensional and the number of dimensional arguments is equal\n\ 639 a multi-dimensional and the number of dimensional arguments is equal\n\
640 to the dimensions of @var{a}, then it is required that @code{sum (@var{di})\n\ 640 to the dimensions of @var{a}, then it is required that @code{sum (@var{di})\n\
641 == size (@var{a}, i)}.\n\ 641 == size (@var{a}, i)}.\n\