C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
lrvecrmat.hpp
1/*
2** CXSC is a C++ library for eXtended Scientific Computing (V 2.5.4)
3**
4** Copyright (C) 1990-2000 Institut fuer Angewandte Mathematik,
5** Universitaet Karlsruhe, Germany
6** (C) 2000-2014 Wiss. Rechnen/Softwaretechnologie
7** Universitaet Wuppertal, Germany
8**
9** This library is free software; you can redistribute it and/or
10** modify it under the terms of the GNU Library General Public
11** License as published by the Free Software Foundation; either
12** version 2 of the License, or (at your option) any later version.
13**
14** This library is distributed in the hope that it will be useful,
15** but WITHOUT ANY WARRANTY; without even the implied warranty of
16** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17** Library General Public License for more details.
18**
19** You should have received a copy of the GNU Library General Public
20** License along with this library; if not, write to the Free
21** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22*/
23
24/* CVS $Id: lrvecrmat.hpp,v 1.24 2014/01/30 17:23:47 cxsc Exp $ */
25
26// Here are definitions for l_rvector x rmatrix-Functions
27#ifndef _CXSC_LRVECRMAT_HPP_INCLUDED
28#define _CXSC_LRVECRMAT_HPP_INCLUDED
29
30namespace cxsc {
31
33 INLINE l_rvector _l_rvector(const rmatrix &sl)
34#if(CXSC_INDEX_CHECK)
35;
36#else
37 noexcept;
38#endif
40 INLINE l_rvector _l_rvector(const rmatrix_slice &sl)
41#if(CXSC_INDEX_CHECK)
42;
43#else
44 noexcept;
45#endif
46
48 INLINE void accumulate(dotprecision &dp, const rmatrix_subv & rv1, const l_rvector &rv2)
49#if(CXSC_INDEX_CHECK)
50;
51#else
52 noexcept;
53#endif
55 INLINE void accumulate(dotprecision &dp, const l_rvector & rv1, const rmatrix_subv &rv2)
56#if(CXSC_INDEX_CHECK)
57;
58#else
59 noexcept;
60#endif
62 INLINE void accumulate(idotprecision &dp, const rmatrix_subv & rv1, const l_rvector &rv2)
63#if(CXSC_INDEX_CHECK)
64;
65#else
66 noexcept;
67#endif
69 INLINE void accumulate(idotprecision &dp, const l_rvector & rv1, const rmatrix_subv &rv2)
70#if(CXSC_INDEX_CHECK)
71;
72#else
73 noexcept;
74#endif
76 INLINE void accumulate(dotprecision &dp, const rmatrix_subv & rv1, const l_rvector_slice &rv2)
77#if(CXSC_INDEX_CHECK)
78;
79#else
80 noexcept;
81#endif
83 INLINE void accumulate(dotprecision &dp, const l_rvector_slice & rv1, const rmatrix_subv &rv2)
84#if(CXSC_INDEX_CHECK)
85;
86#else
87 noexcept;
88#endif
90 INLINE void accumulate(idotprecision &dp, const rmatrix_subv & rv1, const l_rvector_slice &rv2)
91#if(CXSC_INDEX_CHECK)
92;
93#else
94 noexcept;
95#endif
97 INLINE void accumulate(idotprecision &dp, const l_rvector_slice & rv1, const rmatrix_subv &rv2)
98#if(CXSC_INDEX_CHECK)
99;
100#else
101 noexcept;
102#endif
103
105 INLINE l_rvector operator *(const rmatrix &m,const l_rvector &v)
106#if(CXSC_INDEX_CHECK)
107;
108#else
109 noexcept;
110#endif
112 INLINE l_rvector operator *(const rmatrix_slice &ms,const l_rvector &v)
113#if(CXSC_INDEX_CHECK)
114;
115#else
116 noexcept;
117#endif
119 INLINE l_rvector operator *(const l_rvector &v,const rmatrix &m)
120#if(CXSC_INDEX_CHECK)
121;
122#else
123 noexcept;
124#endif
126 INLINE l_rvector operator *(const l_rvector &v,const rmatrix_slice &ms)
127#if(CXSC_INDEX_CHECK)
128;
129#else
130 noexcept;
131#endif
133 INLINE l_rvector &operator *=(l_rvector &v,const rmatrix &m)
134#if(CXSC_INDEX_CHECK)
135;
136#else
137 noexcept;
138#endif
140 INLINE l_rvector &operator *=(l_rvector &v,const rmatrix_slice &ms)
141#if(CXSC_INDEX_CHECK)
142;
143#else
144 noexcept;
145#endif
146
148 INLINE l_rvector operator *(const l_rvector_slice &v,const rmatrix &m)
149#if(CXSC_INDEX_CHECK)
150;
151#else
152 noexcept;
153#endif
154
155} // namespace cxsc
156
157#endif
158
The namespace cxsc, providing all functionality of the class library C-XSC.
Definition cdot.cpp:29
INLINE l_rvector _l_rvector(const rmatrix_subv &rs) noexcept
Deprecated typecast, which only exist for the reason of compatibility with older versions of C-XSC.
cimatrix & operator*=(cimatrix &m, const cinterval &c) noexcept
Implementation of multiplication and allocation operation.
civector operator*(const cimatrix_subv &rv, const cinterval &s) noexcept
Implementation of multiplication operation.
Definition cimatrix.inl:731