annotate src/ov-base-scalar.cc @ 12134:6c54ad0fde04 release-3-4-x ss-3-3-90

update copyright and version info for release branch
author John W. Eaton <jwe@octave.org>
date Sat, 22 Jan 2011 13:50:32 -0500
parents 12df7854fa7c
children 72c96de7a403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
1 /*
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
2
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 11129
diff changeset
3 Copyright (C) 1996-2011 John W. Eaton
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
4
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
6
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
8 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
9 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
10 option) any later version.
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
11
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
15 for more details.
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
16
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
17 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
18 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
19 <http://www.gnu.org/licenses/>.
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
20
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
21 */
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
22
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
24 #include <config.h>
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
25 #endif
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
26
3503
d14c483b3c12 [project @ 2000-02-01 04:06:07 by jwe]
jwe
parents: 3277
diff changeset
27 #include <iostream>
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
28
4055
7690958e7726 [project @ 2002-08-18 01:56:58 by jwe]
jwe
parents: 3933
diff changeset
29 #include "oct-obj.h"
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
30 #include "ov-base.h"
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
31 #include "ov-cx-mat.h"
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
32 #include "ov-re-mat.h"
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
33 #include "ov-base-scalar.h"
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
34 #include "pr-output.h"
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
35
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
36 template <class ST>
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
37 octave_value
4247
fc9a075d10fb [project @ 2002-12-30 23:05:27 by jwe]
jwe
parents: 4219
diff changeset
38 octave_base_scalar<ST>::subsref (const std::string& type,
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
39 const std::list<octave_value_list>& idx)
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
40 {
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
41 octave_value retval;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
42
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
43 switch (type[0])
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
44 {
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
45 case '(':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
46 retval = do_index_op (idx.front ());
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
47 break;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
48
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
49 case '{':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
50 case '.':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
51 {
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
52 std::string nm = type_name ();
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
53 error ("%s cannot be indexed with %c", nm.c_str (), type[0]);
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
54 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
55 break;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
56
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
57 default:
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
58 panic_impossible ();
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
59 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
60
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
61 return retval.next_subsref (type, idx);
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
62 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
63
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
64 template <class ST>
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
65 octave_value
4247
fc9a075d10fb [project @ 2002-12-30 23:05:27 by jwe]
jwe
parents: 4219
diff changeset
66 octave_base_scalar<ST>::subsasgn (const std::string& type,
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
67 const std::list<octave_value_list>& idx,
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
68 const octave_value& rhs)
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
69 {
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
70 octave_value retval;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
71
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
72 switch (type[0])
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
73 {
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
74 case '(':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
75 {
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
76 if (type.length () == 1)
8437
f00578b495e9 remove valid_as_scalar_index
Jaroslav Hajek <highegg@gmail.com>
parents: 7017
diff changeset
77 retval = numeric_assign (type, idx, rhs);
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
78 else
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
79 {
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
80 std::string nm = type_name ();
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
81 error ("in indexed assignment of %s, last rhs index must be ()",
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
82 nm.c_str ());
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
83 }
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
84 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
85 break;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
86
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
87 case '{':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
88 case '.':
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
89 {
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
90 std::string nm = type_name ();
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
91 error ("%s cannot be indexed with %c", nm.c_str (), type[0]);
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
92 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
93 break;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
94
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
95 default:
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
96 panic_impossible ();
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
97 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
98
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
99 return retval;
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
100 }
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
101
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
102 template <class ST>
10545
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
103 octave_value
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
104 octave_base_scalar<ST>::permute (const Array<int>& vec, bool inv) const
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
105 {
11570
57632dea2446 attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
106 return Array<ST> (dim_vector (1, 1), scalar).permute (vec, inv);
10545
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
107 }
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
108
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
109 template <class ST>
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
110 octave_value
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
111 octave_base_scalar<ST>::reshape (const dim_vector& new_dims) const
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
112 {
11570
57632dea2446 attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
113 return Array<ST> (dim_vector (1, 1), scalar).reshape (new_dims);
10545
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
114 }
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
115
ffe28cdc6fe2 fix reshape() and permute() for scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10315
diff changeset
116 template <class ST>
10816
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
117 octave_value
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
118 octave_base_scalar<ST>::diag (octave_idx_type k) const
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
119 {
11570
57632dea2446 attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
120 return Array<ST> (dim_vector (1, 1), scalar).diag (k);
10816
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
121 }
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
122
7fa044155982 fix diag() with complex scalars
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
123 template <class ST>
8626
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
124 bool
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
125 octave_base_scalar<ST>::is_true (void) const
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
126 {
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
127 bool retval = false;
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
128
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
129 if (xisnan (scalar))
11129
0de5cc44e690 use gripe functions for NaN to logical and NaN to character conversions more consistently
John W. Eaton <jwe@octave.org>
parents: 10816
diff changeset
130 gripe_nan_to_logical_conversion ();
8626
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
131 else
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
132 retval = (scalar != ST ());
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
133
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
134 return retval;
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
135 }
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
136
1dce30ab0e72 don't convert NaN to logical in bool expressions
John W. Eaton <jwe@octave.org>
parents: 8437
diff changeset
137 template <class ST>
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
138 void
3523
b80bbb43a1a9 [project @ 2000-02-02 10:25:52 by jwe]
jwe
parents: 3503
diff changeset
139 octave_base_scalar<ST>::print (std::ostream& os, bool pr_as_read_syntax) const
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
140 {
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
141 print_raw (os, pr_as_read_syntax);
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
142 newline (os);
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
143 }
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
144
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
145 template <class ST>
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
146 void
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
147 octave_base_scalar<ST>::print_raw (std::ostream& os,
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
148 bool pr_as_read_syntax) const
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
149 {
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
150 indent (os);
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
151 octave_print_internal (os, scalar, pr_as_read_syntax);
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
152 }
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
153
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
154 template <class ST>
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
155 bool
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3523
diff changeset
156 octave_base_scalar<ST>::print_name_tag (std::ostream& os,
10315
57a59eae83cc untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents: 10160
diff changeset
157 const std::string& name) const
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
158 {
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
159 indent (os);
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
160 os << name << " = ";
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11570
diff changeset
161 return false;
3277
9a1ac83591c0 [project @ 1999-10-12 06:03:19 by jwe]
jwe
parents:
diff changeset
162 }
10670
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
163
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
164 template <class ST>
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
165 bool
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
166 octave_base_scalar<ST>::fast_elem_insert_self (void *where, builtin_type_t btyp) const
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
167 {
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
168
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
169 // Don't use builtin_type () here to avoid an extra VM call.
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
170 if (btyp == class_to_btyp<ST>::btyp)
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
171 {
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
172 *(reinterpret_cast<ST *>(where)) = scalar;
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
173 return true;
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
174 }
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
175 else
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
176 return false;
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10545
diff changeset
177 }