annotate libinterp/operators/op-cell.cc @ 25054:6652d3823428 stable

maint: Update copyright dates in all source files.
author John W. Eaton <jwe@octave.org>
date Fri, 30 Mar 2018 09:19:05 -0400
parents 46440078d73b
children 078b795c5219
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
1 /*
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
2
25054
6652d3823428 maint: Update copyright dates in all source files.
John W. Eaton <jwe@octave.org>
parents: 24540
diff changeset
3 Copyright (C) 1996-2018 John W. Eaton
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
4
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
6
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
7 Octave is free software: you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
8 under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
10 (at your option) any later version.
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
11
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
12 Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
13 WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
15 GNU General Public License for more details.
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
16
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
18 along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
19 <https://www.gnu.org/licenses/>.
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
20
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
21 */
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
22
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21647
diff changeset
23 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21200
diff changeset
24 # include "config.h"
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
25 #endif
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
26
21100
e39e05d90788 Switch gripe_XXX to either err_XXX or warn_XXX naming scheme.
Rik <rik@octave.org>
parents: 21014
diff changeset
27 #include "errwarn.h"
20940
48b2ad5ee801 maint: Rename oct-obj.[cc|h] to ovl.[cc|h] for clarity.
Rik <rik@octave.org>
parents: 20833
diff changeset
28 #include "ovl.h"
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
29 #include "ov.h"
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
30 #include "ov-cell.h"
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
31 #include "ov-scalar.h"
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
32 #include "ov-re-mat.h"
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
33 #include "ov-typeinfo.h"
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7959
diff changeset
34 #include "ov-null-mat.h"
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
35 #include "ops.h"
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
36
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
37 // cell ops.
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
38
4673
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
39 DEFUNOP (transpose, cell)
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
40 {
21647
66cae7a6dc47 eliminate some macros for operator definitions
John W. Eaton <jwe@octave.org>
parents: 21301
diff changeset
41 const octave_cell& v = dynamic_cast<const octave_cell&> (a);
4673
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
42
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
43 if (v.ndims () > 2)
21014
b9d4c3615e89 maint: Capitalize D for dimension in messages and comments.
Rik <rik@octave.org>
parents: 20940
diff changeset
44 error ("transpose not defined for N-D objects");
20833
9c4c87679985 restructure calls to error
John W. Eaton <jwe@octave.org>
parents: 19697
diff changeset
45
9c4c87679985 restructure calls to error
John W. Eaton <jwe@octave.org>
parents: 19697
diff changeset
46 return octave_value (Cell (v.cell_value ().transpose ()));
4673
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
47 }
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
48
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
49 DEFCATOP_FN (c_c, cell, cell, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
50
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
51 DEFASSIGNANYOP_FN (assign, cell, assign);
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
52
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7959
diff changeset
53 DEFNULLASSIGNOP_FN (null_assign, cell, delete_elements)
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7959
diff changeset
54
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
55 void
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
56 install_cell_ops (octave::type_info& ti)
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
57 {
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
58 INSTALL_UNOP_TI (ti, op_transpose, octave_cell, transpose);
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
59 INSTALL_UNOP_TI (ti, op_hermitian, octave_cell, transpose);
4673
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
60
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
61 INSTALL_CATOP_TI (ti, octave_cell, octave_cell, c_c);
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
62
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
63 INSTALL_ASSIGNANYOP_TI (ti, op_asn_eq, octave_cell, assign);
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7959
diff changeset
64
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
65 INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_cell, octave_null_matrix, null_assign);
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
66 INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_cell, octave_null_str, null_assign);
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
67 INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_cell, octave_null_sq_str, null_assign);
3937
e1a2648d9150 [project @ 2002-05-16 15:12:10 by jwe]
jwe
parents:
diff changeset
68 }