C-XSC - A C++ Class Library for Extended Scientific Computing  2.5.4
livecimat.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: livecimat.hpp,v 1.24 2014/01/30 17:23:47 cxsc Exp $ */
25 
26 // Here are definitions for l_ivector x imatrix-Functions
27 #ifndef _CXSC_LIVECIMAT_HPP_INCLUDED
28 #define _CXSC_LIVECIMAT_HPP_INCLUDED
29 
30 namespace cxsc {
31 
33  INLINE l_ivector _l_ivector(const imatrix &sl)
34 #if(CXSC_INDEX_CHECK)
35 ;
36 #else
37  noexcept;
38 #endif
39  INLINE l_ivector _l_ivector(const imatrix_slice &sl)
41 #if(CXSC_INDEX_CHECK)
42 ;
43 #else
44  noexcept;
45 #endif
46 
48  INLINE void accumulate(idotprecision &dp, const imatrix_subv & rv1, const l_ivector &rv2)
49 #if(CXSC_INDEX_CHECK)
50 ;
51 #else
52  noexcept;
53 #endif
54  INLINE void accumulate(idotprecision &dp, const l_ivector & rv1, const imatrix_subv &rv2)
56 #if(CXSC_INDEX_CHECK)
57 ;
58 #else
59  noexcept;
60 #endif
61  INLINE void accumulate(idotprecision &dp, const imatrix_subv & rv1, const l_ivector_slice &rv2)
63 #if(CXSC_INDEX_CHECK)
64 ;
65 #else
66  noexcept;
67 #endif
68  INLINE void accumulate(idotprecision &dp, const l_ivector_slice & rv1, const imatrix_subv &rv2)
70 #if(CXSC_INDEX_CHECK)
71 ;
72 #else
73  noexcept;
74 #endif
75 
76 
78  INLINE l_ivector operator *(const imatrix &m,const l_ivector &v)
79 #if(CXSC_INDEX_CHECK)
80 ;
81 #else
82  noexcept;
83 #endif
84  INLINE l_ivector operator *(const imatrix_slice &ms,const l_ivector &v)
86 #if(CXSC_INDEX_CHECK)
87 ;
88 #else
89  noexcept;
90 #endif
91  INLINE l_ivector operator *(const l_ivector &v,const imatrix &m)
93 #if(CXSC_INDEX_CHECK)
94 ;
95 #else
96  noexcept;
97 #endif
98  INLINE l_ivector operator *(const l_ivector &v,const imatrix_slice &ms)
100 #if(CXSC_INDEX_CHECK)
101 ;
102 #else
103  noexcept;
104 #endif
105  INLINE l_ivector &operator *=(l_ivector &v,const imatrix &m)
107 #if(CXSC_INDEX_CHECK)
108 ;
109 #else
110  noexcept;
111 #endif
112  INLINE l_ivector &operator *=(l_ivector &v,const imatrix_slice &ms)
114 #if(CXSC_INDEX_CHECK)
115 ;
116 #else
117  noexcept;
118 #endif
119 
121  INLINE l_ivector operator *(const l_ivector_slice &v,const imatrix &m)
122 #if(CXSC_INDEX_CHECK)
123 ;
124 #else
125  noexcept;
126 #endif
127 
128 
130  INLINE l_ivector operator *(const l_rvector &v,const imatrix &m)
131 #if(CXSC_INDEX_CHECK)
132 ;
133 #else
134  noexcept;
135 #endif
136  INLINE l_ivector operator *(const l_rvector &v,const imatrix_slice &ms)
138 #if(CXSC_INDEX_CHECK)
139 ;
140 #else
141  noexcept;
142 #endif
143  INLINE l_ivector operator *(const l_rvector_slice &v,const imatrix &m)
145 #if(CXSC_INDEX_CHECK)
146 ;
147 #else
148  noexcept;
149 #endif
150  INLINE l_ivector operator *(const imatrix &m,const l_rvector &v)
152 #if(CXSC_INDEX_CHECK)
153 ;
154 #else
155  noexcept;
156 #endif
157  INLINE l_ivector operator *(const imatrix_slice &ms,const l_rvector &v)
159 #if(CXSC_INDEX_CHECK)
160 ;
161 #else
162  noexcept;
163 #endif
164 
165 } // namespace cxsc
166 
167 #endif
168 
cxsc::operator*=
cimatrix & operator*=(cimatrix &m, const cinterval &c) noexcept
Implementation of multiplication and allocation operation.
Definition: cimatrix.inl:1605
cxsc::_l_ivector
l_ivector _l_ivector(const l_interval &r) noexcept
Deprecated typecast, which only exist for the reason of compatibility with older versions of C-XSC.
Definition: l_ivector.inl:252
cxsc::operator*
civector operator*(const cimatrix_subv &rv, const cinterval &s) noexcept
Implementation of multiplication operation.
Definition: cimatrix.inl:731
cxsc
The namespace cxsc, providing all functionality of the class library C-XSC.
Definition: cdot.cpp:29