1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
/*
Copyright (C) 2000, 2001, 2002 RiskMap srl
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it under the
terms of the QuantLib license. You should have received a copy of the
license along with this program; if not, please email ferdinando@ametrano.net
The license is also available online at http://quantlib.org/html/license.html
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
/*! \file matrix.hpp
\brief matrix used in linear algebra.
\fullpath
ql/Math/%matrix.hpp
*/
// $Id: matrix.hpp,v 1.8 2002/01/16 14:42:29 nando Exp $
#ifndef quantlib_matrix_h
#define quantlib_matrix_h
#include <ql/array.hpp>
#include <ql/Utilities/steppingiterator.hpp>
namespace QuantLib {
//! Mathematical functions and classes
/*! See sect. \ref math */
namespace Math {
//! %matrix used in linear algebra.
/*! This class implements the concept of vector as used in linear
algebra. As such, it is <b>not</b> meant to be used as a
container.
*/
class Matrix {
public:
//! \name Constructors, destructor, and assignment
//@{
//! creates a null matrix
Matrix();
//! creates a matrix with the given dimensions
Matrix(Size rows, Size columns);
//! creates the matrix and fills it with <tt>value</tt>
Matrix(Size rows, Size columns, double value);
Matrix(const Matrix&);
~Matrix();
Matrix& operator=(const Matrix&);
//@}
//! \name Algebraic operators
/*! \pre all matrices involved in an algebraic expression must have
the same size.
*/
//@{
Matrix& operator+=(const Matrix&);
Matrix& operator-=(const Matrix&);
Matrix& operator*=(double);
Matrix& operator/=(double);
//@}
typedef double* iterator;
typedef const double* const_iterator;
typedef QL_REVERSE_ITERATOR(iterator,double) reverse_iterator;
typedef QL_REVERSE_ITERATOR(const_iterator,double)
const_reverse_iterator;
typedef double* row_iterator;
typedef const double* const_row_iterator;
typedef QL_REVERSE_ITERATOR(row_iterator,double)
reverse_row_iterator;
typedef QL_REVERSE_ITERATOR(const_row_iterator,double)
const_reverse_row_iterator;
typedef Utilities::stepping_iterator<double*> column_iterator;
typedef Utilities::stepping_iterator<const double*>
const_column_iterator;
typedef QL_REVERSE_ITERATOR(column_iterator,double)
reverse_column_iterator;
typedef QL_REVERSE_ITERATOR(const_column_iterator,double)
const_reverse_column_iterator;
//! \name Iterator access
//@{
const_iterator begin() const;
iterator begin();
const_iterator end() const;
iterator end();
const_reverse_iterator rbegin() const;
reverse_iterator rbegin();
const_reverse_iterator rend() const;
reverse_iterator rend();
const_row_iterator row_begin(Size i) const;
row_iterator row_begin(Size i);
const_row_iterator row_end(Size i) const;
row_iterator row_end(Size i);
const_reverse_row_iterator row_rbegin(Size i) const;
reverse_row_iterator row_rbegin(Size i);
const_reverse_row_iterator row_rend(Size i) const;
reverse_row_iterator row_rend(Size i);
const_column_iterator column_begin(Size i) const;
column_iterator column_begin(Size i);
const_column_iterator column_end(Size i) const;
column_iterator column_end(Size i);
const_reverse_column_iterator column_rbegin(Size i) const;
reverse_column_iterator column_rbegin(Size i);
const_reverse_column_iterator column_rend(Size i) const;
reverse_column_iterator column_rend(Size i);
//@}
//! \name Element access
//@{
const_row_iterator operator[](Size) const;
row_iterator operator[](Size);
Array diagonal(void) const;
//@}
//! \name Inspectors
//@{
Size rows() const;
Size columns() const;
//@}
private:
void allocate_(Size rows, Size columns);
void copy_(const Matrix&);
private:
double* pointer_;
Size rows_, columns_;
};
// algebraic operators
/*! \relates Matrix */
Matrix operator+(const Matrix&, const Matrix&);
/*! \relates Matrix */
Matrix operator-(const Matrix&, const Matrix&);
/*! \relates Matrix */
Matrix operator*(const Matrix&, double);
/*! \relates Matrix */
Matrix operator*(double, const Matrix&);
/*! \relates Matrix */
Matrix operator/(const Matrix&, double);
// vectorial products
/*! \relates Matrix */
Array operator*(const Array&, const Matrix&);
/*! \relates Matrix */
Array operator*(const Matrix&, const Array&);
/*! \relates Matrix */
Matrix operator*(const Matrix&, const Matrix&);
// misc. operations
/*! \relates Matrix */
Matrix transpose(const Matrix&);
/*! \relates Matrix */
Matrix outerProduct(const Array &v1, const Array &v2);
//! returns the square root of a real symmetric matrix
/*! \relates Matrix */
Matrix matrixSqrt(const Matrix &realSymmetricMatrix);
// inline definitions
inline Matrix::Matrix()
: pointer_(0), rows_(0), columns_(0) {}
inline Matrix::Matrix(Size rows, Size columns)
: pointer_(0), rows_(0), columns_(0) {
if (rows > 0 && columns > 0)
allocate_(rows,columns);
}
inline Matrix::Matrix(Size rows,
Size columns,
double value)
: pointer_(0), rows_(0), columns_(0) {
if (rows > 0 && columns > 0)
allocate_(rows,columns);
std::fill(begin(),end(),value);
}
inline Matrix::Matrix(const Matrix& from)
: pointer_(0), rows_(0), columns_(0) {
allocate_(from.rows(), from.columns());
copy_(from);
}
inline Matrix::~Matrix() {
if (pointer_ != 0 && rows_ != 0 && columns_ != 0)
delete[] pointer_;
pointer_ = 0;
rows_ = columns_ = 0;
}
inline Matrix& Matrix::operator=(const Matrix& from) {
if (this != &from) {
allocate_(from.rows(),from.columns());
copy_(from);
}
return *this;
}
inline void Matrix::allocate_(Size rows, Size columns) {
if (rows_ == rows && columns_ == columns)
return;
if (pointer_ != 0 && rows_ != 0 && columns_ != 0)
delete[] pointer_;
if (rows == 0 || columns == 0) {
pointer_ = 0;
rows_ = columns_ = 0;
} else {
pointer_ = new double[rows*columns];
rows_ = rows;
columns_ = columns;
}
}
inline void Matrix::copy_(const Matrix& from) {
std::copy(from.begin(),from.end(),begin());
}
inline Matrix& Matrix::operator+=(const Matrix& m) {
#ifdef QL_DEBUG
QL_REQUIRE(rows_ == m.rows_ && columns_ == m.columns_,
"matrices with different sizes cannot be added");
#endif
std::transform(begin(),end(),m.begin(),begin(),std::plus<double>());
return *this;
}
inline Matrix& Matrix::operator-=(const Matrix& m) {
#ifdef QL_DEBUG
QL_REQUIRE(rows_ == m.rows_ && columns_ == m.columns_,
"matrices with different sizes cannot be subtracted");
#endif
std::transform(begin(),end(),m.begin(),begin(),
std::minus<double>());
return *this;
}
inline Matrix& Matrix::operator*=(double x) {
std::transform(begin(),end(),begin(),
std::bind2nd(std::multiplies<double>(),x));
return *this;
}
inline Matrix& Matrix::operator/=(double x) {
std::transform(begin(),end(),begin(),
std::bind2nd(std::divides<double>(),x));
return *this;
}
inline Matrix::const_iterator Matrix::begin() const {
return pointer_;
}
inline Matrix::iterator Matrix::begin() {
return pointer_;
}
inline Matrix::const_iterator Matrix::end() const {
return pointer_+rows_*columns_;
}
inline Matrix::iterator Matrix::end() {
return pointer_+rows_*columns_;
}
inline Matrix::const_reverse_iterator Matrix::rbegin() const {
return const_reverse_iterator(end());
}
inline Matrix::reverse_iterator Matrix::rbegin() {
return reverse_iterator(end());
}
inline Matrix::const_reverse_iterator Matrix::rend() const {
return const_reverse_iterator(begin());
}
inline Matrix::reverse_iterator Matrix::rend() {
return reverse_iterator(begin());
}
inline Matrix::const_row_iterator
Matrix::row_begin(Size i) const {
return pointer_+columns_*i;
}
inline Matrix::row_iterator Matrix::row_begin(Size i) {
return pointer_+columns_*i;
}
inline Matrix::const_row_iterator Matrix::row_end(Size i) const{
return pointer_+columns_*(i+1);
}
inline Matrix::row_iterator Matrix::row_end(Size i) {
return pointer_+columns_*(i+1);
}
inline Matrix::const_reverse_row_iterator
Matrix::row_rbegin(Size i) const {
return const_reverse_row_iterator(row_end(i));
}
inline Matrix::reverse_row_iterator Matrix::row_rbegin(Size i) {
return reverse_row_iterator(row_end(i));
}
inline Matrix::const_reverse_row_iterator
Matrix::row_rend(Size i) const {
return const_reverse_row_iterator(row_begin(i));
}
inline Matrix::reverse_row_iterator Matrix::row_rend(Size i) {
return reverse_row_iterator(row_begin(i));
}
inline Matrix::const_column_iterator
Matrix::column_begin(Size i) const {
return const_column_iterator(pointer_+i,columns_);
}
inline Matrix::column_iterator Matrix::column_begin(Size i) {
return column_iterator(pointer_+i,columns_);
}
inline Matrix::const_column_iterator
Matrix::column_end(Size i) const {
return column_begin(i)+rows_;
}
inline Matrix::column_iterator Matrix::column_end(Size i) {
return column_begin(i)+rows_;
}
inline Matrix::const_reverse_column_iterator
Matrix::column_rbegin(Size i) const {
return const_reverse_column_iterator(column_end(i));
}
inline Matrix::reverse_column_iterator
Matrix::column_rbegin(Size i) {
return reverse_column_iterator(column_end(i));
}
inline Matrix::const_reverse_column_iterator
Matrix::column_rend(Size i) const {
return const_reverse_column_iterator(column_begin(i));
}
inline Matrix::reverse_column_iterator
Matrix::column_rend(Size i) {
return reverse_column_iterator(column_begin(i));
}
inline Matrix::const_row_iterator
Matrix::operator[](Size i) const {
return row_begin(i);
}
inline Matrix::row_iterator Matrix::operator[](Size i) {
return row_begin(i);
}
inline Array Matrix::diagonal(void) const{
Size arraySize = QL_MIN(rows(),columns());
Array tmp(arraySize);
for(Size i = 0; i < arraySize; i++)
tmp[i] = (*this)[i][i];
return tmp;
}
inline Size Matrix::rows() const {
return rows_;
}
inline Size Matrix::columns() const {
return columns_;
}
inline Matrix operator+(const Matrix& m1, const Matrix& m2) {
#ifdef QL_DEBUG
QL_REQUIRE(m1.rows() == m2.rows() &&
m1.columns() == m2.columns(),
"matrices with different sizes cannot be added");
#endif
Matrix temp(m1.rows(),m1.columns());
std::transform(m1.begin(),m1.end(),m2.begin(),temp.begin(),
std::plus<double>());
return temp;
}
inline Matrix operator-(const Matrix& m1, const Matrix& m2) {
#ifdef QL_DEBUG
QL_REQUIRE(m1.rows() == m2.rows() &&
m1.columns() == m2.columns(),
"matrices with different sizes cannot be subtracted");
#endif
Matrix temp(m1.rows(),m1.columns());
std::transform(m1.begin(),m1.end(),m2.begin(),temp.begin(),
std::minus<double>());
return temp;
}
inline Matrix operator*(const Matrix& m, double x) {
Matrix temp(m.rows(),m.columns());
std::transform(m.begin(),m.end(),temp.begin(),
std::bind2nd(std::multiplies<double>(),x));
return temp;
}
inline Matrix operator*(double x, const Matrix& m) {
Matrix temp(m.rows(),m.columns());
std::transform(m.begin(),m.end(),temp.begin(),
std::bind2nd(std::multiplies<double>(),x));
return temp;
}
inline Matrix operator/(const Matrix& m, double x) {
Matrix temp(m.rows(),m.columns());
std::transform(m.begin(),m.end(),temp.begin(),
std::bind2nd(std::divides<double>(),x));
return temp;
}
inline Array operator*(const Array& v, const Matrix& m) {
#ifdef QL_DEBUG
QL_REQUIRE(v.size() == m.rows(),
"vectors and matrices with different sizes "
"cannot be multiplied");
#endif
Array result(m.columns());
for (Size i=0; i<result.size(); i++)
result[i] =
std::inner_product(v.begin(),v.end(),m.column_begin(i),0.0);
return result;
}
inline Array operator*(const Matrix& m, const Array& v) {
#ifdef QL_DEBUG
QL_REQUIRE(v.size() == m.columns(),
"vectors and matrices with different sizes "
"cannot be multiplied");
#endif
Array result(m.rows());
for (Size i=0; i<result.size(); i++)
result[i] =
std::inner_product(v.begin(),v.end(),m.row_begin(i),0.0);
return result;
}
inline Matrix operator*(const Matrix& m1, const Matrix& m2) {
#ifdef QL_DEBUG
QL_REQUIRE(m1.columns() == m2.rows(),
"matrices with different sizes cannot be multiplied");
#endif
Matrix result(m1.rows(),m2.columns());
for (Size i=0; i<result.rows(); i++)
for (Size j=0; j<result.columns(); j++)
result[i][j] =
std::inner_product(m1.row_begin(i), m1.row_end(i),
m2.column_begin(j), 0.0);
return result;
}
inline Matrix transpose(const Matrix& m) {
Matrix result(m.columns(),m.rows());
for (Size i=0; i<m.rows(); i++)
std::copy(m.row_begin(i),m.row_end(i),result.column_begin(i));
return result;
}
inline Matrix outerProduct(const Array &v1, const Array &v2){
QL_REQUIRE(v1.size() > 0 && v2.size() > 0,
"outerProduct: vectors must have non-null dimension");
Matrix result(v1.size(),v2.size());
for(Size i = 0; i < v1.size(); i++)
std::transform(v2.begin(),v2.end(),result.row_begin(i),
std::bind1st(std::multiplies<double>(),v1[i]));
return result;
}
}
}
#endif
|