#include <iomanip>
#include <iostream>
#include <sstream>
#include <vector>
#include <queue>
#include "Array-util.h"
#include "byte-swap.h"
#include "lo-utils.h"
#include "quit.h"
#include "oct-locbuf.h"
#include "defun.h"
#include "error.h"
#include "ov-cell.h"
#include "oct-obj.h"
#include "unwind-prot.h"
#include "utils.h"
#include "ov-base-mat.h"
#include "ov-base-mat.cc"
#include "ov-re-mat.h"
#include "ov-scalar.h"
#include "pr-output.h"
#include "gripes.h"
#include "ls-oct-ascii.h"
#include "ls-oct-binary.h"
#include "ls-hdf5.h"
#include "ls-utils.h"
Defines | |
#define | CELL_ELT_TAG "<cell-element>" |
Functions | |
DEFINE_OCTAVE_ALLOCATOR (octave_cell) | |
DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_cell,"cell","cell") | |
DEFUN (iscell, args,,"-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} iscell (@var{x})\n\ Return true if @var{x} is a cell array object. Otherwise, return\n\ false.\n\ @end deftypefn") | |
DEFUN (cell, args,,"-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} cell (@var{x})\n\ @deftypefnx {Built-in Function} {} cell (@var{n}, @var{m})\n\ Create a new cell array object. If invoked with a single scalar\n\ argument, @code{cell} returns a square cell array with the dimension\n\ specified. If you supply two scalar arguments, @code{cell} takes\n\ them to be the number of rows and columns. If given a vector with two\n\ elements, @code{cell} uses the values of the elements as the number of\n\ rows and columns, respectively.\n\ @end deftypefn") | |
DEFUN (iscellstr, args,,"-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} iscellstr (@var{cell})\n\ Return true if every element of the cell array @var{cell} is a\n\ character string\n\ @end deftypefn") | |
DEFUN (cellstr, args,,"-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} cellstr (@var{string})\n\ Create a new cell array object from the elements of the string\n\ array @var{string}.\n\ @end deftypefn") | |
DEFUN (struct2cell, args,,"-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} struct2cell (@var{S})\n\ Create a new cell array from the objects stored in the struct object.\n\ If @var{f} is the number of fields in the structure, the resulting\n\ cell array will have a dimension vector corresponding to\n\ @code{[@var{F} size(@var{S})]}.\n\ @seealso{cell2struct, fieldnames}\n\ @end deftypefn") |
#define CELL_ELT_TAG "<cell-element>" |
DEFINE_OCTAVE_ALLOCATOR | ( | octave_cell | ) |
DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA | ( | octave_cell | , | |
"cell" | , | |||
"cell" | ||||
) |
DEFUN | ( | struct2cell | , | |
args | ||||
) |
DEFUN | ( | cellstr | , | |
args | ||||
) |
DEFUN | ( | iscellstr | , | |
args | ||||
) |
DEFUN | ( | cell | , | |
args | ||||
) |
DEFUN | ( | iscell | , | |
args | ||||
) |