GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
op-cell.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2021 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if defined (HAVE_CONFIG_H)
27 # include "config.h"
28 #endif
29 
30 #include "errwarn.h"
31 #include "ovl.h"
32 #include "ov.h"
33 #include "ov-cell.h"
34 #include "ov-scalar.h"
35 #include "ov-re-mat.h"
36 #include "ov-typeinfo.h"
37 #include "ov-null-mat.h"
38 #include "ops.h"
39 
40 // cell ops.
41 
43 {
44  const octave_cell& v = dynamic_cast<const octave_cell&> (a);
45 
46  if (v.ndims () > 2)
47  error ("transpose not defined for N-D objects");
48 
49  return octave_value (Cell (v.cell_value ().transpose ()));
50 }
51 
52 DEFCATOP_FN (c_c, cell, cell, concat)
53 
54 DEFASSIGNANYOP_FN (assign, cell, assign);
55 
56 DEFNULLASSIGNOP_FN (null_assign, cell, delete_elements)
57 
58 void
59 install_cell_ops (octave::type_info& ti)
60 {
63 
65 
66  INSTALL_ASSIGNANYOP_TI (ti, op_asn_eq, octave_cell, assign);
67 
69  null_assign);
70  INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_cell, octave_null_str, null_assign);
72  null_assign);
73 }
ComplexNDArray concat(NDArray &ra, ComplexNDArray &rb, const Array< octave_idx_type > &ra_idx)
Definition: CNDArray.cc:418
Array< T > transpose(void) const
Size of the specified dimension.
Definition: Array.cc:1599
Definition: Cell.h:43
int ndims(void) const
Definition: ov-base-mat.h:116
Cell cell_value(void) const
Definition: ov-cell.h:137
void error(const char *fmt,...)
Definition: error.cc:968
void install_cell_ops(octave::type_info &ti)
Definition: op-cell.cc:59
return octave_value(v1.char_array_value() . concat(v2.char_array_value(), ra_idx),((a1.is_sq_string()||a2.is_sq_string()) ? '\'' :'"'))
#define INSTALL_ASSIGNANYOP_TI(ti, op, t1, f)
Definition: ops.h:69
#define DEFNULLASSIGNOP_FN(name, t, f)
Definition: ops.h:100
#define DEFASSIGNANYOP_FN(name, t1, f)
Definition: ops.h:156
#define DEFCATOP_FN(name, t1, t2, f)
Definition: ops.h:336
#define DEFUNOP(name, t)
Definition: ops.h:179
#define INSTALL_CATOP_TI(ti, t1, t2, f)
Definition: ops.h:60
#define INSTALL_UNOP_TI(ti, op, t, f)
Definition: ops.h:47
#define INSTALL_ASSIGNOP_TI(ti, op, t1, t2, f)
Definition: ops.h:64
octave_value op_transpose(const octave_value &a)
Definition: ov.h:1540
octave_value op_hermitian(const octave_value &a)
Definition: ov.h:1541
static void transpose(octave_idx_type N, const octave_idx_type *ridx, const octave_idx_type *cidx, octave_idx_type *ridx2, octave_idx_type *cidx2)
Definition: symrcm.cc:389