QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
matrix.cpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2007, 2008 Klaus Spanderen
5
6 This file is part of QuantLib, a free-software/open-source library
7 for financial quantitative analysts and developers - http://quantlib.org/
8
9 QuantLib is free software: you can redistribute it and/or modify it
10 under the terms of the QuantLib license. You should have received a
11 copy of the license along with this program; if not, please email
12 <quantlib-dev@lists.sf.net>. The license is also available online at
13 <http://quantlib.org/license.shtml>.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the license for more details.
18*/
19
24#include <ql/math/matrix.hpp>
25#if defined(QL_PATCH_MSVC)
26#pragma warning(push)
27#pragma warning(disable:4180)
28#pragma warning(disable:4127)
29#endif
30
31#if BOOST_VERSION == 106400
32#include <boost/serialization/array_wrapper.hpp>
33#endif
34#include <boost/numeric/ublas/vector_proxy.hpp>
35#include <boost/numeric/ublas/triangular.hpp>
36#include <boost/numeric/ublas/lu.hpp>
37
38#if defined(QL_PATCH_MSVC)
39#pragma warning(pop)
40#endif
41
42namespace QuantLib {
43
44 Matrix inverse(const Matrix& m) {
45 QL_REQUIRE(m.rows() == m.columns(), "matrix is not square");
46
47 boost::numeric::ublas::matrix<Real> a(m.rows(), m.columns());
48
49 std::copy(m.begin(), m.end(), a.data().begin());
50
51 boost::numeric::ublas::permutation_matrix<Size> pert(m.rows());
52
53 // lu decomposition
54 Size singular = 1;
55 try {
56 singular = lu_factorize(a, pert);
57 } catch (const boost::numeric::ublas::internal_logic& e) {
58 QL_FAIL("lu_factorize error: " << e.what());
59 } catch (const boost::numeric::ublas::external_logic& e) {
60 QL_FAIL("lu_factorize error: " << e.what());
61 }
62 QL_REQUIRE(singular == 0, "singular matrix given");
63
64 boost::numeric::ublas::matrix<Real>
65 inverse = boost::numeric::ublas::identity_matrix<Real>(m.rows());
66
67 // backsubstitution
68 try {
69 boost::numeric::ublas::lu_substitute(a, pert, inverse);
70 } catch (const boost::numeric::ublas::internal_logic& e) {
71 QL_FAIL("lu_substitute error: " << e.what());
72 }
73
74 Matrix retVal(m.rows(), m.columns());
75 std::copy(inverse.data().begin(), inverse.data().end(),
76 retVal.begin());
77
78 return retVal;
79 }
80
82 QL_REQUIRE(m.rows() == m.columns(), "matrix is not square");
83
84 boost::numeric::ublas::matrix<Real> a(m.rows(), m.columns());
85 std::copy(m.begin(), m.end(), a.data().begin());
86
87
88 // lu decomposition
89 boost::numeric::ublas::permutation_matrix<Size> pert(m.rows());
90 /* const Size singular = */ lu_factorize(a, pert);
91
92 Real retVal = 1.0;
93
94 for (Size i=0; i < m.rows(); ++i) {
95 if (pert[i] != i)
96 retVal *= -a(i,i);
97 else
98 retVal *= a(i,i);
99 }
100 return retVal;
101 }
102
103}
Matrix used in linear algebra.
Definition: matrix.hpp:41
const_iterator begin() const
Definition: matrix.hpp:327
Size rows() const
Definition: matrix.hpp:504
const_iterator end() const
Definition: matrix.hpp:335
Size columns() const
Definition: matrix.hpp:508
QL_REAL Real
real number
Definition: types.hpp:50
std::size_t Size
size of a container
Definition: types.hpp:58
Definition: any.hpp:35
Real determinant(const Matrix &m)
Definition: matrix.cpp:81
Matrix inverse(const Matrix &m)
Definition: matrix.cpp:44