Mercurial > hg > octave-lyh
annotate src/ov-base-scalar.h @ 10313:f3b65e1ae355
untabify src header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:16:43 -0500 |
parents | cd96d29c5efa |
children | 9961fc022d9d |
rev | line source |
---|---|
3278 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
8920 | 4 2006, 2007, 2008, 2009 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 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
29 #include <iosfwd> |
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) | |
9686
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
50 : octave_base_value () { } |
3278 | 51 |
9686
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
52 octave_base_scalar (const ST& s) |
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
53 : octave_base_value (), scalar (s) { } |
3278 | 54 |
55 octave_base_scalar (const octave_base_scalar& s) | |
9686
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
56 : octave_base_value (), scalar (s.scalar) { } |
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, |
10313 | 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, |
10313 | 71 const std::list<octave_value_list>& idx, int) |
7651
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, |
10313 | 75 const std::list<octave_value_list>& idx, |
76 const octave_value& rhs); | |
3933 | 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, | |
10313 | 104 sortmode) const |
7433 | 105 { |
106 sidx.resize (dim_vector (1, 1)); | |
107 sidx(0) = 0; | |
108 return octave_value (scalar); | |
109 } | |
110 | |
8734
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
111 sortmode is_sorted (sortmode mode = UNSORTED) const |
8721
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 |
8733
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8721
diff
changeset
|
114 Array<octave_idx_type> sort_rows_idx (sortmode) const |
8721
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 |
8734
767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents:
8733
diff
changeset
|
117 sortmode is_sorted_rows (sortmode mode = UNSORTED) const |
8721
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 |
9686
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
120 MatrixType matrix_type (void) const { return MatrixType::Diagonal; } |
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
121 MatrixType matrix_type (const MatrixType&) const |
5e433877634f
don't store MatrixType with scalars
Jaroslav Hajek <highegg@gmail.com>
parents:
8950
diff
changeset
|
122 { return matrix_type (); } |
6376 | 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; | |
144 }; | |
145 | |
146 #endif |