annotate src/OPERATORS/op-str-str.cc @ 9931:fb6b6fcafa62

untabify files in src/OPERATORS directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:49:48 -0500
parents 95a30d00f779
children ac4b97c6bf8b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9700
95a30d00f779 fix typo from last patch
Jaroslav Hajek <highegg@gmail.com>
parents: 9699
diff changeset
1 /*
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
2
9931
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
3 Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2005, 2007,
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
4 2008, 2009John W. Eaton
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
5
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
7
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6456
diff changeset
10 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6456
diff changeset
11 option) any later version.
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
12
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
16 for more details.
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
17
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
18 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: 6456
diff changeset
19 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6456
diff changeset
20 <http://www.gnu.org/licenses/>.
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
21
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
22 */
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
23
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
24 #ifdef HAVE_CONFIG_H
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
25 #include <config.h>
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
26 #endif
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
27
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
28 #include "gripes.h"
4055
7690958e7726 [project @ 2002-08-18 01:56:58 by jwe]
jwe
parents: 3538
diff changeset
29 #include "oct-obj.h"
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
30 #include "ov.h"
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
31 #include "ov-str-mat.h"
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
32 #include "ov-typeinfo.h"
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
33 #include "ov-null-mat.h"
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
34 #include "ops.h"
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
35
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
36 // string unary ops.
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
37
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
38 DEFUNOP (transpose, char_matrix_str)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
39 {
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
40 CAST_UNOP_ARG (const octave_char_matrix_str&);
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
41
4673
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
42 if (v.ndims () > 2)
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
43 {
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
44 error ("transpose not defined for N-d objects");
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
45 return octave_value ();
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
46 }
6639c2574023 [project @ 2003-12-10 16:11:54 by jwe]
jwe
parents: 4192
diff changeset
47 else
9699
d896036d975b additional octave_value character array constructor update
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
48 return octave_value (v.char_matrix_value().transpose (),
9931
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
49 a.is_sq_string () ? '\'' : '"');
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
50 }
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
51
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
52 // string by string ops.
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
53
9931
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
54 #define DEFCHARNDBINOP_FN(name, op, t1, t2, e1, e2, f) \
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
55 BINOPDECL (name, a1, a2) \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
56 { \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
57 dim_vector a1_dims = a1.dims (); \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
58 dim_vector a2_dims = a2.dims (); \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
59 \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
60 bool a1_is_scalar = a1_dims.all_ones (); \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
61 bool a2_is_scalar = a2_dims.all_ones (); \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
62 \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
63 CAST_BINOP_ARGS (const octave_ ## t1&, const octave_ ## t2&); \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
64 \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
65 if (a1_is_scalar) \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
66 { \
9931
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
67 if (a2_is_scalar) \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
68 return octave_value ((v1.e1 ## _value ())(0) op (v2.e2 ## _value ())(0)); \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
69 else \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
70 return octave_value (f ((v1.e1 ## _value ())(0), v2.e2 ## _value ())); \
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
71 } \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
72 else \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
73 { \
9931
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
74 if (a2_is_scalar) \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
75 return octave_value (f (v1.e1 ## _value (), (v2.e2 ## _value ())(0))); \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
76 else \
fb6b6fcafa62 untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents: 9700
diff changeset
77 return octave_value (f (v1.e1 ## _value (), v2.e2 ## _value ())); \
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
78 } \
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
79 }
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
80
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
81 DEFCHARNDBINOP_FN (lt, <, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_lt)
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
82 DEFCHARNDBINOP_FN (le, <=, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_le)
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
83 DEFCHARNDBINOP_FN (eq, ==, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_eq)
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
84 DEFCHARNDBINOP_FN (ge, >=, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_ge)
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
85 DEFCHARNDBINOP_FN (gt, >, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_gt)
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
86 DEFCHARNDBINOP_FN (ne, !=, char_matrix_str, char_matrix_str, char_array, char_array, mx_el_ne)
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
87
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
88 DEFASSIGNOP (assign, char_matrix_str, char_matrix_str)
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
89 {
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
90 CAST_BINOP_ARGS (octave_char_matrix_str&, const octave_char_matrix_str&);
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
91
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
92 v1.assign (idx, v2.char_matrix_value ());
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
93 return octave_value ();
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
94 }
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
95
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
96 DEFNULLASSIGNOP_FN (null_assign, char_matrix_str, delete_elements)
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
97
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
98 DEFNDCHARCATOP_FN (str_str, char_matrix_str, char_matrix_str, concat)
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
99
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
100 void
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
101 install_str_str_ops (void)
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
102 {
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3203
diff changeset
103 INSTALL_UNOP (op_transpose, octave_char_matrix_str, transpose);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
104 INSTALL_UNOP (op_transpose, octave_char_matrix_sq_str, transpose);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
105
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3203
diff changeset
106 INSTALL_UNOP (op_hermitian, octave_char_matrix_str, transpose);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
107 INSTALL_UNOP (op_hermitian, octave_char_matrix_sq_str, transpose);
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 2928
diff changeset
108
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
109 INSTALL_BINOP (op_lt, octave_char_matrix_str, octave_char_matrix_str, lt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
110 INSTALL_BINOP (op_lt, octave_char_matrix_str, octave_char_matrix_sq_str, lt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
111 INSTALL_BINOP (op_lt, octave_char_matrix_sq_str, octave_char_matrix_str, lt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
112 INSTALL_BINOP (op_lt, octave_char_matrix_sq_str, octave_char_matrix_sq_str, lt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
113
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
114 INSTALL_BINOP (op_le, octave_char_matrix_str, octave_char_matrix_str, le);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
115 INSTALL_BINOP (op_le, octave_char_matrix_str, octave_char_matrix_sq_str, le);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
116 INSTALL_BINOP (op_le, octave_char_matrix_sq_str, octave_char_matrix_str, le);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
117 INSTALL_BINOP (op_le, octave_char_matrix_sq_str, octave_char_matrix_sq_str, le);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
118
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3203
diff changeset
119 INSTALL_BINOP (op_eq, octave_char_matrix_str, octave_char_matrix_str, eq);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
120 INSTALL_BINOP (op_eq, octave_char_matrix_str, octave_char_matrix_sq_str, eq);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
121 INSTALL_BINOP (op_eq, octave_char_matrix_sq_str, octave_char_matrix_str, eq);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
122 INSTALL_BINOP (op_eq, octave_char_matrix_sq_str, octave_char_matrix_sq_str, eq);
6456
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
123
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
124 INSTALL_BINOP (op_ge, octave_char_matrix_str, octave_char_matrix_str, ge);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
125 INSTALL_BINOP (op_ge, octave_char_matrix_str, octave_char_matrix_sq_str, ge);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
126 INSTALL_BINOP (op_ge, octave_char_matrix_sq_str, octave_char_matrix_str, ge);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
127 INSTALL_BINOP (op_ge, octave_char_matrix_sq_str, octave_char_matrix_sq_str, ge);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
128
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
129 INSTALL_BINOP (op_gt, octave_char_matrix_str, octave_char_matrix_str, gt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
130 INSTALL_BINOP (op_gt, octave_char_matrix_str, octave_char_matrix_sq_str, gt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
131 INSTALL_BINOP (op_gt, octave_char_matrix_sq_str, octave_char_matrix_str, gt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
132 INSTALL_BINOP (op_gt, octave_char_matrix_sq_str, octave_char_matrix_sq_str, gt);
7f5316cadaa2 [project @ 2007-03-26 16:18:26 by jwe]
jwe
parents: 5533
diff changeset
133
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3203
diff changeset
134 INSTALL_BINOP (op_ne, octave_char_matrix_str, octave_char_matrix_str, ne);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
135 INSTALL_BINOP (op_ne, octave_char_matrix_str, octave_char_matrix_sq_str, ne);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
136 INSTALL_BINOP (op_ne, octave_char_matrix_sq_str, octave_char_matrix_str, ne);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
137 INSTALL_BINOP (op_ne, octave_char_matrix_sq_str, octave_char_matrix_sq_str, ne);
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
138
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
139 INSTALL_CATOP (octave_char_matrix_str, octave_char_matrix_str, str_str);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
140 INSTALL_CATOP (octave_char_matrix_str, octave_char_matrix_sq_str, str_str);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
141 INSTALL_CATOP (octave_char_matrix_sq_str, octave_char_matrix_str, str_str);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
142 INSTALL_CATOP (octave_char_matrix_sq_str, octave_char_matrix_sq_str, str_str);
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4673
diff changeset
143
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3203
diff changeset
144 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_char_matrix_str, assign);
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
145 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_char_matrix_sq_str, assign);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
146 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_char_matrix_str, assign);
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5164
diff changeset
147 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_char_matrix_sq_str, assign);
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
148
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
149 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_null_matrix, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
150 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_null_str, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
151 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_null_sq_str, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
152 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_null_matrix, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
153 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_null_str, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
154 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_null_sq_str, null_assign);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
155
2928
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
156 }
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
157
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
158 /*
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
159 ;;; Local Variables: ***
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
160 ;;; mode: C++ ***
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
161 ;;; End: ***
295f037b4b3e [project @ 1997-05-05 05:32:33 by jwe]
jwe
parents:
diff changeset
162 */