annotate src/OPERATORS/op-range.cc @ 10186:095a1e670e68

make dbstep work with keyboard function
author John W. Eaton <jwe@octave.org>
date Fri, 22 Jan 2010 07:30:44 -0500
parents ac4b97c6bf8b
children fd0a3ac60b0e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
1 /*
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
2
8920
eb63fbe60fab update copyright notices
John W. Eaton <jwe@octave.org>
parents: 8855
diff changeset
3 Copyright (C) 1996, 1997, 1998, 2000, 2002, 2004, 2005, 2007, 2008, 2009
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
4 John W. Eaton
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
5
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
7
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
dddfaa93a99c [project @ 1998-11-03 04:04:37 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: 5307
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: 5307
diff changeset
11 option) any later version.
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
12
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
16 for more details.
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
17
dddfaa93a99c [project @ 1998-11-03 04:04:37 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: 5307
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: 5307
diff changeset
20 <http://www.gnu.org/licenses/>.
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
21
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
22 */
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
23
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
24 #ifdef HAVE_CONFIG_H
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
25 #include <config.h>
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
26 #endif
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
27
dddfaa93a99c [project @ 1998-11-03 04:04:37 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"
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
30 #include "ov.h"
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
31 #include "ov-range.h"
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
32 #include "ov-ch-mat.h"
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
33 #include "ov-scalar.h"
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
34 #include "ov-re-mat.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
35 #include "ov-flt-re-mat.h"
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
36 #include "ov-complex.h"
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
37 #include "ov-cx-mat.h"
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
38 #include "ov-bool.h"
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
39 #include "ov-bool-mat.h"
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
40 #include "ov-typeinfo.h"
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
41 #include "ov-null-mat.h"
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
42 #include "ops.h"
9103
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
43 #include "xpow.h"
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
44
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
45 // range unary ops.
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
46
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
47 DEFUNOP (not, range)
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
48 {
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
49 CAST_UNOP_ARG (const octave_range&);
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
50
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
51 return octave_value (! v.matrix_value());
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
52 }
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
53
4965
c0d8e8afa82f [project @ 2004-09-06 20:19:57 by jwe]
jwe
parents: 4915
diff changeset
54 DEFUNOP_OP (uplus, range, /* no-op */)
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
55 DEFUNOP_OP (uminus, range, -)
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
56
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
57 DEFUNOP (transpose, range)
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
58 {
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
59 CAST_UNOP_ARG (const octave_range&);
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
60
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
61 return octave_value (v.matrix_value().transpose ());
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
62 }
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
63
8553
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
64 DEFBINOP_OP (addrs, range, scalar, +)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
65 DEFBINOP_OP (addsr, scalar, range, +)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
66 DEFBINOP_OP (subrs, range, scalar, -)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
67 DEFBINOP_OP (subsr, scalar, range, -)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
68 DEFBINOP_OP (mulrs, range, scalar, *)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
69 DEFBINOP_OP (mulsr, scalar, range, *)
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
70
9103
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
71 DEFBINOP_FN (el_powsr, scalar, range, elem_xpow)
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
72 DEFBINOP_FN (el_powcsr, complex, range, elem_xpow)
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
73
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
74 DEFNDCATOP_FN (r_r, range, range, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
75 DEFNDCATOP_FN (r_s, range, scalar, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
76 DEFNDCATOP_FN (r_m, range, matrix, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
77 DEFNDCATOP_FN (r_cs, range, complex, array, complex_array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
78 DEFNDCATOP_FN (r_cm, range, complex_matrix, array, complex_array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
79 DEFNDCATOP_FN (r_b, range, bool, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
80 DEFNDCATOP_FN (r_bm, range, bool_matrix, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
81 DEFNDCATOP_FN (r_chm, range, char_matrix, array, char_array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
82 DEFNDCATOP_FN (s_r, scalar, range, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
83 DEFNDCATOP_FN (m_r, matrix, range, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
84 DEFNDCATOP_FN (cs_r, complex, range, complex_array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
85 DEFNDCATOP_FN (cm_r, complex_matrix, range, complex_array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
86 DEFNDCATOP_FN (b_r, bool, range, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
87 DEFNDCATOP_FN (bm_r, bool_matrix, range, array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
88 DEFNDCATOP_FN (chm_r, char_matrix, range, char_array, array, concat)
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
89
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
90 CONVDECL (range_to_matrix)
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
91 {
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
92 CAST_CONV_ARG (const octave_range&);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
93
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
94 return new octave_matrix (v.array_value ());
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
95 }
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
96
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
97 void
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
98 install_range_ops (void)
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
99 {
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3207
diff changeset
100 INSTALL_UNOP (op_not, octave_range, not);
4965
c0d8e8afa82f [project @ 2004-09-06 20:19:57 by jwe]
jwe
parents: 4915
diff changeset
101 INSTALL_UNOP (op_uplus, octave_range, uplus);
3538
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3207
diff changeset
102 INSTALL_UNOP (op_uminus, octave_range, uminus);
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3207
diff changeset
103 INSTALL_UNOP (op_transpose, octave_range, transpose);
0ff7323dab8b [project @ 2000-02-02 12:36:25 by jwe]
jwe
parents: 3207
diff changeset
104 INSTALL_UNOP (op_hermitian, octave_range, transpose);
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
105
8553
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
106 INSTALL_BINOP (op_add, octave_range, octave_scalar, addrs);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
107 INSTALL_BINOP (op_add, octave_scalar, octave_range, addsr);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
108 INSTALL_BINOP (op_sub, octave_range, octave_scalar, subrs);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
109 INSTALL_BINOP (op_sub, octave_scalar, octave_range, subsr);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
110 INSTALL_BINOP (op_mul, octave_range, octave_scalar, mulrs);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
111 INSTALL_BINOP (op_mul, octave_scalar, octave_range, mulsr);
c7ff200e45f5 optimize range-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8333
diff changeset
112
9103
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
113 INSTALL_BINOP (op_el_pow, octave_scalar, octave_range, el_powsr);
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
114 INSTALL_BINOP (op_el_pow, octave_complex, octave_range, el_powcsr);
10bed8fbec99 optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents: 8920
diff changeset
115
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
116 INSTALL_CATOP (octave_range, octave_range, r_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
117 INSTALL_CATOP (octave_range, octave_scalar, r_s);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
118 INSTALL_CATOP (octave_range, octave_matrix, r_m);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
119 INSTALL_CATOP (octave_range, octave_complex, r_cs);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
120 INSTALL_CATOP (octave_range, octave_complex_matrix, r_cm);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
121 INSTALL_CATOP (octave_range, octave_bool, r_b);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
122 INSTALL_CATOP (octave_range, octave_bool_matrix, r_bm);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
123 INSTALL_CATOP (octave_range, octave_char_matrix, r_chm);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
124 INSTALL_CATOP (octave_scalar, octave_range, s_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
125 INSTALL_CATOP (octave_matrix, octave_range, m_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
126 INSTALL_CATOP (octave_complex, octave_range, cs_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
127 INSTALL_CATOP (octave_complex_matrix, octave_range, cm_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
128 INSTALL_CATOP (octave_bool, octave_range, b_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
129 INSTALL_CATOP (octave_bool_matrix, octave_range, bm_r);
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4192
diff changeset
130 INSTALL_CATOP (octave_char_matrix, octave_range, chm_r);
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
131
8333
9238637cb81c style fixes
John W. Eaton <jwe@octave.org>
parents: 8150
diff changeset
132 // FIXME -- this would be unneccessary if
9238637cb81c style fixes
John W. Eaton <jwe@octave.org>
parents: 8150
diff changeset
133 // octave_base_value::numeric_assign always tried converting lhs
9238637cb81c style fixes
John W. Eaton <jwe@octave.org>
parents: 8150
diff changeset
134 // before rhs.
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
135
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
136 INSTALL_ASSIGNCONV (octave_range, octave_null_matrix, octave_matrix);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
137 INSTALL_ASSIGNCONV (octave_range, octave_null_str, octave_matrix);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
138 INSTALL_ASSIGNCONV (octave_range, octave_null_sq_str, octave_matrix);
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
139
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
140 // However, this should probably be here just in case we need it.
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
141
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
142 INSTALL_WIDENOP (octave_range, octave_matrix, range_to_matrix);
3207
dddfaa93a99c [project @ 1998-11-03 04:04:37 by jwe]
jwe
parents:
diff changeset
143 }