annotate liboctave/numeric/CollocWt.h @ 31606:dfa5d9c3ae72

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents db8735ee84da e88a07dec498
children 23664317f0d3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 30394
diff changeset
3 // Copyright (C) 1993-2022 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
25
20791
f7084eae3318 maint: Use Octave coding conventions for #if statements.
Rik <rik@octave.org>
parents: 19697
diff changeset
26 #if ! defined (octave_CollocWt_h)
382
e02d6b664394 [project @ 1994-03-09 21:08:03 by jwe]
jwe
parents: 238
diff changeset
27 #define octave_CollocWt_h 1
e02d6b664394 [project @ 1994-03-09 21:08:03 by jwe]
jwe
parents: 238
diff changeset
28
21244
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 20955
diff changeset
29 #include "octave-config.h"
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 20955
diff changeset
30
8950
d865363208d6 include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents: 7017
diff changeset
31 #include <iosfwd>
465
4caf8fbeb778 [project @ 1994-06-06 01:05:09 by jwe]
jwe
parents: 384
diff changeset
32
4caf8fbeb778 [project @ 1994-06-06 01:05:09 by jwe]
jwe
parents: 384
diff changeset
33 #include "dMatrix.h"
4caf8fbeb778 [project @ 1994-06-06 01:05:09 by jwe]
jwe
parents: 384
diff changeset
34 #include "dColVector.h"
384
7e870a4ec9bc [project @ 1994-03-09 21:40:04 by jwe]
jwe
parents: 382
diff changeset
35
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 30564
diff changeset
36 OCTAVE_BEGIN_NAMESPACE(octave)
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 30564
diff changeset
37
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
38 class OCTAVE_API CollocWt
17769
49a5a4be04a1 maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents: 17744
diff changeset
39 {
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
40 public:
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
41
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
42 CollocWt (void)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
43 : m_n (0), m_inc_left (0), m_inc_right (0), m_lb (0.0), m_rb (1.0),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
44 m_alpha (0.0), m_beta (0.0), m_r (), m_q (), m_A (), m_B (),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
45 m_initialized (false)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
46 { }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
47
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
48 CollocWt (octave_idx_type nc, octave_idx_type il, octave_idx_type ir)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
49 : m_n (nc), m_inc_left (il), m_inc_right (ir), m_lb (0.0), m_rb (1.0),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
50 m_alpha (0.0), m_beta (0.0), m_r (), m_q (), m_A (), m_B (),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
51 m_initialized (false)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
52 { }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
53
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
54 CollocWt (octave_idx_type nc, octave_idx_type il, octave_idx_type ir,
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
55 double l, double rr)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
56 : m_n (nc), m_inc_left (il), m_inc_right (ir), m_lb (l), m_rb (rr),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
57 m_alpha (0.0), m_beta (0.0), m_r (), m_q (), m_A (), m_B (),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
58 m_initialized (false)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
59 { }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
60
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
61 CollocWt (octave_idx_type nc, double a, double b, octave_idx_type il,
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
62 octave_idx_type ir)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
63 : m_n (nc), m_inc_left (il), m_inc_right (ir), m_lb (0.0), m_rb (1.0),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
64 m_alpha (a), m_beta (b), m_r (), m_q (), m_A (), m_B (),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
65 m_initialized (false)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
66 { }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
67
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
68 CollocWt (octave_idx_type nc, double a, double b, octave_idx_type il,
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
69 octave_idx_type ir,
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
70 double ll, double rr)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
71 : m_n (nc), m_inc_left (il), m_inc_right (ir), m_lb (ll), m_rb (rr),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
72 m_alpha (a), m_beta (b), m_r (), m_q (), m_A (), m_B (),
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
73 m_initialized (false)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
74 { }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
75
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
76 CollocWt (const CollocWt& a) = default;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
77
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
78 CollocWt& operator = (const CollocWt& a) = default;
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
79
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
80 ~CollocWt (void) = default;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
81
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
82 CollocWt& resize (octave_idx_type nc)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
83 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
84 m_n = nc;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
85 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
86 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
87 }
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
88
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
89 CollocWt& add_left (void)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
90 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
91 m_inc_left = 1;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
92 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
93 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
94 }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
95
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
96 CollocWt& delete_left (void)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
97 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
98 m_inc_left = 0;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
99 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
100 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
101 }
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
102
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
103 CollocWt& set_left (double val);
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
104
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
105 CollocWt& add_right (void)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
106 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
107 m_inc_right = 1;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
108 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
109 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
110 }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
111
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
112 CollocWt& delete_right (void)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
113 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
114 m_inc_right = 0;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
115 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
116 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
117 }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
118
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
119 CollocWt& set_right (double val);
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
120
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
121 CollocWt& set_alpha (double val)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
122 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
123 m_alpha = val;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
124 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
125 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
126 }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
127
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
128 CollocWt& set_beta (double val)
30394
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
129 {
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
130 m_beta = val;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
131 m_initialized = false;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
132 return *this;
f3f3e3793fb5 maint: style check C++ files in liboctave/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 29954
diff changeset
133 }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
134
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
135 octave_idx_type ncol (void) const { return m_n; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
136
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
137 octave_idx_type left_included (void) const { return m_inc_left; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
138 octave_idx_type right_included (void) const { return m_inc_right; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
139
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
140 double left (void) const { return m_lb; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
141 double right (void) const { return m_rb; }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
142
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
143 double width (void) const { return m_rb - m_lb; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
144
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
145 double alpha (void) const { return m_alpha; }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
146 double beta (void) const { return m_beta; }
1528
dc527156c38c [project @ 1995-10-05 01:44:18 by jwe]
jwe
parents: 1315
diff changeset
147
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
148 ColumnVector roots (void)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
149 {
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
150 if (! m_initialized)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
151 init ();
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
152
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
153 return m_r;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
154 }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
155
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
156 ColumnVector quad (void)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
157 {
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
158 if (! m_initialized)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
159 init ();
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
160
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
161 return m_q;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
162 }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
163
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
164 ColumnVector quad_weights (void) { return quad (); }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
165
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
166 Matrix first (void)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
167 {
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
168 if (! m_initialized)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
169 init ();
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
170
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
171 return m_A;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
172 }
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
173
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
174 Matrix second (void)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
175 {
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
176 if (! m_initialized)
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
177 init ();
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
178
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
179 return m_B;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
180 }
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
181
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
182 friend std::ostream& operator << (std::ostream&, const CollocWt&);
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
183
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
184 protected:
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
185
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
186 octave_idx_type m_n;
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
187
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
188 octave_idx_type m_inc_left;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
189 octave_idx_type m_inc_right;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
190
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
191 double m_lb;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
192 double m_rb;
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
193
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
194 double m_alpha;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
195 double m_beta;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
196
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
197 ColumnVector m_r;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
198 ColumnVector m_q;
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
199
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
200 Matrix m_A;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
201 Matrix m_B;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
202
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
203 bool m_initialized;
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
204
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
205 void init (void);
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
206
29681
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
207 void error (const char *msg);
25246c1a1645 move CollocWt class inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29680
diff changeset
208 };
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 30564
diff changeset
209
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 30564
diff changeset
210 OCTAVE_END_NAMESPACE(octave)
3
9a4c07481e61 [project @ 1993-08-08 01:20:23 by jwe]
jwe
parents:
diff changeset
211
29954
4c88a452519c rename OCTAVE_USE_DEPRECATED_FUNCTIONS macro and attempt to make it work
John W. Eaton <jwe@octave.org>
parents: 29681
diff changeset
212 #endif