Mercurial > hg > octave-nkf
annotate src/ov-base-scalar.h @ 8721:e9cb742df9eb
imported patch sort3.diff
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 11 Feb 2009 15:25:53 +0100 |
parents | 1dce30ab0e72 |
children | 3ef774603887 |
rev | line source |
---|---|
3278 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
4 2006, 2007 John W. Eaton | |
3278 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
3278 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
3278 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_base_scalar_h) | |
25 #define octave_base_scalar_h 1 | |
26 | |
27 #include <cstdlib> | |
28 | |
3503 | 29 #include <iostream> |
3278 | 30 #include <string> |
31 | |
32 #include "lo-mappers.h" | |
33 #include "lo-utils.h" | |
34 #include "oct-alloc.h" | |
35 #include "str-vec.h" | |
6376 | 36 #include "MatrixType.h" |
3278 | 37 |
38 #include "ov-base.h" | |
39 #include "ov-typeinfo.h" | |
40 | |
41 // Real scalar values. | |
42 | |
43 template <class ST> | |
44 class | |
45 octave_base_scalar : public octave_base_value | |
46 { | |
47 public: | |
48 | |
49 octave_base_scalar (void) | |
6376 | 50 : octave_base_value (), typ (MatrixType ()) { } |
3278 | 51 |
6376 | 52 octave_base_scalar (const ST& s, const MatrixType& t = MatrixType ()) |
53 : octave_base_value (), scalar (s), typ (t) { } | |
3278 | 54 |
55 octave_base_scalar (const octave_base_scalar& s) | |
6376 | 56 : octave_base_value (), scalar (s.scalar), typ (s.typ) { } |
3278 | 57 |
58 ~octave_base_scalar (void) { } | |
59 | |
5759 | 60 octave_base_value *clone (void) const { return new octave_base_scalar (*this); } |
61 octave_base_value *empty_clone (void) const { return new octave_base_scalar (); } | |
4981 | 62 |
4759 | 63 octave_value squeeze (void) const { return scalar; } |
64 | |
8458
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8307
diff
changeset
|
65 octave_value full_value (void) const { return scalar; } |
d254a21e0120
reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents:
8307
diff
changeset
|
66 |
4247 | 67 octave_value subsref (const std::string& type, |
4219 | 68 const std::list<octave_value_list>& idx); |
3933 | 69 |
7651
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7620
diff
changeset
|
70 octave_value_list subsref (const std::string& type, |
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7620
diff
changeset
|
71 const std::list<octave_value_list>& idx, int) |
443a8f5a50fd
require both subsref variants to be defined in octave_value subclasses
John W. Eaton <jwe@octave.org>
parents:
7620
diff
changeset
|
72 { return subsref (type, idx); } |
4271 | 73 |
4247 | 74 octave_value subsasgn (const std::string& type, |
4219 | 75 const std::list<octave_value_list>& idx, |
3933 | 76 const octave_value& rhs); |
77 | |
3278 | 78 bool is_constant (void) const { return true; } |
79 | |
80 bool is_defined (void) const { return true; } | |
81 | |
4563 | 82 dim_vector dims (void) const { static dim_vector dv (1, 1); return dv; } |
83 | |
5602 | 84 octave_idx_type nnz (void) const { return (scalar != ST ()) ? 1 : 0; } |
85 | |
4901 | 86 octave_value permute (const Array<int>&, bool = false) const |
4875 | 87 { return scalar; } |
88 | |
8307
ec969f3b8955
Add scalar reshape method
David Bateman <dbateman@free.fr>
parents:
7651
diff
changeset
|
89 octave_value reshape (const dim_vector& new_dims) const |
ec969f3b8955
Add scalar reshape method
David Bateman <dbateman@free.fr>
parents:
7651
diff
changeset
|
90 { return array_value ().reshape (new_dims); } |
ec969f3b8955
Add scalar reshape method
David Bateman <dbateman@free.fr>
parents:
7651
diff
changeset
|
91 |
4791 | 92 size_t byte_size (void) const { return sizeof (ST); } |
93 | |
4901 | 94 octave_value all (int = 0) const { return (scalar != ST ()); } |
3278 | 95 |
4901 | 96 octave_value any (int = 0) const { return (scalar != ST ()); } |
3278 | 97 |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7433
diff
changeset
|
98 octave_value diag (octave_idx_type k = 0) const |
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7433
diff
changeset
|
99 { return octave_value (matrix_value (). diag (k)); } |
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7433
diff
changeset
|
100 |
7433 | 101 octave_value sort (octave_idx_type, sortmode) const |
102 { return octave_value (scalar); } | |
103 octave_value sort (Array<octave_idx_type> &sidx, octave_idx_type, | |
104 sortmode) const | |
105 { | |
106 sidx.resize (dim_vector (1, 1)); | |
107 sidx(0) = 0; | |
108 return octave_value (scalar); | |
109 } | |
110 | |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
111 sortmode issorted (sortmode mode = UNSORTED) const |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
112 { return mode ? mode : ASCENDING; } |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
113 |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
114 Array<octave_idx_type> sortrows_idx (sortmode) const |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
115 { return Array<octave_idx_type> (1, 0); } |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
116 |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
117 sortmode issorted_rows (sortmode mode = UNSORTED) const |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
118 { return mode ? mode : ASCENDING; } |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8626
diff
changeset
|
119 |
6376 | 120 MatrixType matrix_type (void) const { return typ; } |
121 MatrixType matrix_type (const MatrixType& _typ) const | |
122 { MatrixType ret = typ; typ = _typ; return ret; } | |
123 | |
3278 | 124 bool is_scalar_type (void) const { return true; } |
125 | |
126 bool is_numeric_type (void) const { return true; } | |
127 | |
8626
1dce30ab0e72
don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents:
8458
diff
changeset
|
128 bool is_true (void) const; |
3278 | 129 |
3523 | 130 void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
3278 | 131 |
3523 | 132 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
3278 | 133 |
3523 | 134 bool print_name_tag (std::ostream& os, const std::string& name) const; |
3278 | 135 |
5900 | 136 // Unsafe. This function exists to support the MEX interface. |
137 // You should not use it anywhere else. | |
138 void *mex_get_data (void) const { return const_cast<ST *> (&scalar); } | |
139 | |
3278 | 140 protected: |
141 | |
142 // The value of this scalar. | |
143 ST scalar; | |
6376 | 144 |
145 mutable MatrixType typ; | |
3278 | 146 }; |
147 | |
148 #endif | |
149 | |
150 /* | |
151 ;;; Local Variables: *** | |
152 ;;; mode: C++ *** | |
153 ;;; End: *** | |
154 */ |