GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
op-range.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2024 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-range.h"
34 #include "ov-re-mat.h"
35 #include "ov-typeinfo.h"
36 #include "ov-null-mat.h"
37 #include "ops.h"
38 
40 
41 // Allow +RNG_VAL to avoid conversion to array.
42 DEFUNOP_OP (uplus, range, /* no-op */)
43 
44 CONVDECL (range_to_matrix)
45 {
46  OCTAVE_CAST_BASE_VALUE (const octave_range&, v, a);
47 
48  return new octave_matrix (v.array_value ());
49 }
50 
51 void
52 install_range_ops (octave::type_info& ti)
53 {
55 
56  // FIXME: this would be unnecessary if
57  // octave_base_value::numeric_assign always tried converting lhs
58  // before rhs.
59 
63 
64  // Hmm, this one also seems to be needed.
65 
66  INSTALL_WIDENOP_TI (ti, octave_range, octave_matrix, range_to_matrix);
67 }
68 
69 OCTAVE_END_NAMESPACE(octave)
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
void install_range_ops(octave::type_info &ti)
Definition: op-range.cc:52
#define DEFUNOP_OP(name, t, op)
Definition: ops.h:198
#define INSTALL_ASSIGNCONV_TI(ti, t1, t2, tr)
Definition: ops.h:88
#define OCTAVE_CAST_BASE_VALUE(T, T_VAL, BASE_VAL)
Definition: ops.h:52
#define INSTALL_WIDENOP_TI(ti, t1, t2, f)
Definition: ops.h:92
#define CONVDECL(name)
Definition: ops.h:183
#define INSTALL_UNOP_TI(ti, op, t, f)
Definition: ops.h:62
octave_value op_uplus(const octave_value &a)
Definition: ov.h:1634