C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
lrvecivec.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: lrvecivec.hpp,v 1.25 2014/01/30 17:23:47 cxsc Exp $ */
25
26// Here are definitions for imatrix x cmatrix-Functions
27#ifndef _CXSC_LRVECIVEC_HPP_INCLUDED
28#define _CXSC_LRVECIVEC_HPP_INCLUDED
29
30#include "l_interval.hpp"
31
32namespace cxsc {
33
35 INLINE void accumulate(idotprecision &dp, const l_rvector & rv1, const ivector &rv2)
36#if(CXSC_INDEX_CHECK)
37;
38#else
39 noexcept;
40#endif
42 INLINE void accumulate(idotprecision &dp, const ivector & rv1, const l_rvector &rv2)
43#if(CXSC_INDEX_CHECK)
44;
45#else
46 noexcept;
47#endif
49 INLINE void accumulate(idotprecision &dp, const l_rvector_slice & sl, const ivector &rv)
50#if(CXSC_INDEX_CHECK)
51;
52#else
53 noexcept;
54#endif
56 INLINE void accumulate(idotprecision &dp,const ivector_slice &sl,const l_rvector &rv)
57#if(CXSC_INDEX_CHECK)
58;
59#else
60 noexcept;
61#endif
63 INLINE void accumulate(idotprecision &dp, const l_rvector &rv, const ivector_slice &sl)
64#if(CXSC_INDEX_CHECK)
65;
66#else
67 noexcept;
68#endif
70 INLINE void accumulate(idotprecision &dp,const ivector &rv,const l_rvector_slice &sl)
71#if(CXSC_INDEX_CHECK)
72;
73#else
74 noexcept;
75#endif
77 INLINE void accumulate(idotprecision &dp, const ivector_slice & sl1, const l_rvector_slice &sl2)
78#if(CXSC_INDEX_CHECK)
79;
80#else
81 noexcept;
82#endif
84 INLINE void accumulate(idotprecision &dp, const l_rvector_slice & sl1, const ivector_slice &sl2)
85#if(CXSC_INDEX_CHECK)
86;
87#else
88 noexcept;
89#endif
90
92 INLINE l_interval operator *(const l_rvector & rv1, const ivector &rv2)
93#if(CXSC_INDEX_CHECK)
94;
95#else
96 noexcept;
97#endif
99 INLINE l_interval operator *(const l_rvector_slice &sl, const ivector &rv)
100#if(CXSC_INDEX_CHECK)
101;
102#else
103 noexcept;
104#endif
106 INLINE l_interval operator *(const l_rvector &rv, const ivector_slice &sl)
107#if(CXSC_INDEX_CHECK)
108;
109#else
110 noexcept;
111#endif
113 INLINE l_interval operator *(const l_rvector_slice & sl1, const ivector_slice &sl2)
114#if(CXSC_INDEX_CHECK)
115;
116#else
117 noexcept;
118#endif
119
121 INLINE l_interval operator *(const ivector & rv1, const l_rvector &rv2)
122#if(CXSC_INDEX_CHECK)
123;
124#else
125 noexcept;
126#endif
128 INLINE l_interval operator *(const ivector_slice &sl, const l_rvector &rv)
129#if(CXSC_INDEX_CHECK)
130;
131#else
132 noexcept;
133#endif
135 INLINE l_interval operator *(const ivector &rv, const l_rvector_slice &sl)
136#if(CXSC_INDEX_CHECK)
137;
138#else
139 noexcept;
140#endif
142 INLINE l_interval operator *(const ivector_slice & sl1, const l_rvector_slice &sl2)
143#if(CXSC_INDEX_CHECK)
144;
145#else
146 noexcept;
147#endif
148
149} // namespace cxsc
150
151#endif
152
The namespace cxsc, providing all functionality of the class library C-XSC.
Definition cdot.cpp:29
civector operator*(const cimatrix_subv &rv, const cinterval &s) noexcept
Implementation of multiplication operation.
Definition cimatrix.inl:731