C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
livecrmat.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: livecrmat.hpp,v 1.24 2014/01/30 17:23:47 cxsc Exp $ */
25
26// Here are definitions for l_ivector x rmatrix-Functions
27#ifndef _CXSC_LIVECRMAT_HPP_INCLUDED
28#define _CXSC_LIVECRMAT_HPP_INCLUDED
29
30namespace cxsc {
31
33 INLINE l_ivector _l_ivector(const rmatrix &sl)
34#if(CXSC_INDEX_CHECK)
35;
36#else
37 noexcept;
38#endif
40 INLINE l_ivector _l_ivector(const rmatrix_slice &sl)
41#if(CXSC_INDEX_CHECK)
42;
43#else
44 noexcept;
45#endif
46
48 INLINE void accumulate(idotprecision &dp, const rmatrix_subv & rv1, const l_ivector &rv2)
49#if(CXSC_INDEX_CHECK)
50;
51#else
52 noexcept;
53#endif
55 INLINE void accumulate(idotprecision &dp, const l_ivector & 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_ivector_slice &rv2)
63#if(CXSC_INDEX_CHECK)
64;
65#else
66 noexcept;
67#endif
69 INLINE void accumulate(idotprecision &dp, const l_ivector_slice & rv1, const rmatrix_subv &rv2)
70#if(CXSC_INDEX_CHECK)
71;
72#else
73 noexcept;
74#endif
75
76
78 INLINE l_ivector operator *(const rmatrix &m,const l_ivector &v)
79#if(CXSC_INDEX_CHECK)
80;
81#else
82 noexcept;
83#endif
85 INLINE l_ivector operator *(const rmatrix_slice &ms,const l_ivector &v)
86#if(CXSC_INDEX_CHECK)
87;
88#else
89 noexcept;
90#endif
92 INLINE l_ivector operator *(const l_ivector &v,const rmatrix &m)
93#if(CXSC_INDEX_CHECK)
94;
95#else
96 noexcept;
97#endif
99 INLINE l_ivector operator *(const l_ivector &v,const rmatrix_slice &ms)
100#if(CXSC_INDEX_CHECK)
101;
102#else
103 noexcept;
104#endif
106 INLINE l_ivector &operator *=(l_ivector &v,const rmatrix &m)
107#if(CXSC_INDEX_CHECK)
108;
109#else
110 noexcept;
111#endif
113 INLINE l_ivector &operator *=(l_ivector &v,const rmatrix_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 rmatrix &m)
122#if(CXSC_INDEX_CHECK)
123;
124#else
125 noexcept;
126#endif
127
128} // namespace cxsc
129
130#endif
131
The namespace cxsc, providing all functionality of the class library C-XSC.
Definition cdot.cpp:29
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.
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