ARTS  2.3.1285(git:92a29ea9-dirty)
matpackII.cc File Reference

Implementation of sparse matrices. More...

#include "matpackII.h"
#include <Eigen/Core>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <iterator>
#include <set>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const Sparse &M)
 Output operator for Sparse. More...
 
void abs (Sparse &A, const Sparse &B)
 Absolute value of sparse matrix elements. More...
 
void mult (VectorView y, const Sparse &M, ConstVectorView x)
 Sparse matrix - Vector multiplication. More...
 
void transpose_mult (VectorView y, const Sparse &M, ConstVectorView x)
 Sparse matrix - Vector multiplication. More...
 
void mult (MatrixView A, const Sparse &B, const ConstMatrixView &C)
 SparseMatrix - Matrix multiplication. More...
 
void mult (MatrixView A, const ConstMatrixView &B, const Sparse &C)
 Matrix - SparseMatrix multiplication. More...
 
void transpose (Sparse &A, const Sparse &B)
 Transpose of sparse matrix. More...
 
void mult (Sparse &A, const Sparse &B, const Sparse &C)
 Sparse - Sparse multiplication. More...
 
void add (Sparse &A, const Sparse &B, const Sparse &C)
 Sparse - Sparse addition. More...
 
void id_mat (Sparse &A)
 Sparse identity matrix. More...
 
void sub (Sparse &A, const Sparse &B, const Sparse &C)
 Sparse - Sparse subtraction. More...
 

Detailed Description

Implementation of sparse matrices.

Author
Stefan Buehler sbueh.nosp@m.ler@.nosp@m.ltu.s.nosp@m.e
Mattias Ekstroem
Oliver Lemke
Simon Pfreundschuh simon.nosp@m.pf@c.nosp@m.halme.nosp@m.rs.s.nosp@m.e (Eigen interface)
Date
Wed Jan 06 10:17:15 2016

Notes:

There are two different ways to index: S.rw(3,4) = 1; // Read and write cout << S.ro(3,4); // Read only

This distinction is necessary, because rw() creates elements if they don't already exist.

The normal index operator "()" correspondes to ro, so "S(3,4)" is the same as S.ro(3,4).

Definition in file matpackII.cc.

Function Documentation

◆ abs()

void abs ( Sparse A,
const Sparse B 
)

Absolute value of sparse matrix elements.

Computes the absolute values of the elements in sparse matrix B.

The output matrix A must have been initialized with the correct size.

Parameters
AOutput: Absolute value matrix.
BOriginal matrix.
Author
Mattias Ekstrom
Date
2005-03-21

Definition at line 394 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), and Sparse::nrows().

◆ add()

void add ( Sparse A,
const Sparse B,
const Sparse C 
)

Sparse - Sparse addition.

Calculates A = B+C, where result A is sparse, and B and C are also sparse.

Output comes first!

Dimensions of B, and C must match. A will be resized.

Parameters
AOutput: Result matrix.
BFirst summand matrix.
CSecond summand matrix.
Author
Oliver Lemke
Date
2009-09-03

Definition at line 630 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), Sparse::nrows(), and Sparse::resize().

Referenced by test49(), and test_sparse_arithmetic().

◆ id_mat()

void id_mat ( Sparse A)

Sparse identity matrix.

Set the given Sparse matrix object to the identity matrix. The matrix must be square.

Parameters
AThe matrix to be set to the identity matrix.

Definition at line 647 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), and Sparse::nrows().

◆ mult() [1/4]

void mult ( VectorView  y,
const Sparse M,
ConstVectorView  x 
)

Sparse matrix - Vector multiplication.

This calculates the product

y = M*x, where M is sparse.

Output comes first!

Dimensions of y, M, and x must match. No memory reallocation takes place, only the data is copied.

Parameters
yOutput: The multiplication result.
MMatrix for multiplication (sparse).
xVector for multiplication.

Definition at line 417 of file matpackII.cc.

References data, Range::get_start(), Range::get_stride(), Sparse::matrix, ConstVectorView::mdata, ConstVectorView::mrange, Sparse::ncols(), ConstVectorView::nelem(), and Sparse::nrows().

◆ mult() [2/4]

void mult ( MatrixView  A,
const Sparse B,
const ConstMatrixView C 
)

SparseMatrix - Matrix multiplication.

Calculates the matrix product:

A = B*C, where B is sparse.

Output comes first!

Dimensions of A, B, and C must match. No memory reallocation takes place, only the data is copied.

Parameters
AOutput: Result matrix (full).
BFirst matrix to multiply (sparse).
CSecond matrix to multiply (full).
Author
Stefan Buehler sbueh.nosp@m.ler@.nosp@m.ltu.s.nosp@m.e
Date
Tue Jul 15 15:05:40 2003

Definition at line 490 of file matpackII.cc.

References data, Range::get_start(), Range::get_stride(), Sparse::matrix, ConstMatrixView::mcr, ConstMatrixView::mdata, ConstMatrixView::mrr, Sparse::ncols(), ConstMatrixView::ncols(), Sparse::nrows(), and ConstMatrixView::nrows().

◆ mult() [3/4]

void mult ( MatrixView  A,
const ConstMatrixView B,
const Sparse C 
)

Matrix - SparseMatrix multiplication.

Calculates the matrix product:

A = B*C, where C is sparse.

Output comes first!

Dimensions of A, B, and C must match. No memory reallocation takes place, only the data is copied.

Parameters
AOutput: Result matrix (full).
BFirst matrix to multiply (sparse).
CSecond matrix to multiply (full).
Author
Stefan Buehler sbueh.nosp@m.ler@.nosp@m.ltu.s.nosp@m.e
Date
Tue Jul 15 15:05:40 2003

Definition at line 539 of file matpackII.cc.

References data, Range::get_start(), Range::get_stride(), Sparse::matrix, ConstMatrixView::mcr, ConstMatrixView::mdata, ConstMatrixView::mrr, Sparse::ncols(), ConstMatrixView::ncols(), Sparse::nrows(), and ConstMatrixView::nrows().

◆ mult() [4/4]

void mult ( Sparse A,
const Sparse B,
const Sparse C 
)

Sparse - Sparse multiplication.

Calculates A = B*C, where result A is sparse, and B and C are also sparse.

Output comes first!

Dimensions of A, B, and C must match. No memory reallocation takes place, only the data is copied.

Parameters
AOutput: Result matrix.
BFirst product matrix.
CSecond product matrix.
Author
Mattias Ekstroem
Date
2003-08-06

Definition at line 606 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), and Sparse::nrows().

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const Sparse M 
)

Output operator for Sparse.

Parameters
osOutput stream.
vSparse matrix to print.
Returns
Output stream.

Definition at line 375 of file matpackII.cc.

References Sparse::matrix.

◆ sub()

void sub ( Sparse A,
const Sparse B,
const Sparse C 
)

Sparse - Sparse subtraction.

Calculates A = B-C, where result A is sparse, and B and C are also sparse.

Output comes first!

Dimensions of B, and C must match. A will be resized.

Parameters
AOutput: Result matrix.
BFirst subtrahend matrix.
CSecond subtrahend matrix.
Author
Oliver Lemke
Date
2009-09-03

Definition at line 667 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), Sparse::nrows(), and Sparse::resize().

Referenced by sensor_responseBackendFrequencySwitching(), test49(), and test_sparse_arithmetic().

◆ transpose()

void transpose ( Sparse A,
const Sparse B 
)

Transpose of sparse matrix.

Computes the transpose of the sparse matrix B.

The output matrix A must have been initialized with the correct size.

Parameters
AOutput: Transposed matrix.
BOriginal matrix.
Author
Mattias Ekstroem
Date
2003-08-05

Definition at line 582 of file matpackII.cc.

References Sparse::matrix, Sparse::ncols(), and Sparse::nrows().

◆ transpose_mult()

void transpose_mult ( VectorView  y,
const Sparse M,
ConstVectorView  x 
)

Sparse matrix - Vector multiplication.

This calculates the product

y = M*x, where M is sparse.

Output comes first!

Dimensions of y, M, and x must match. No memory reallocation takes place, only the data is copied.

Parameters
yOutput: The multiplication result.
MMatrix for multiplication (sparse).
xVector for multiplication.

Definition at line 452 of file matpackII.cc.

References data, Range::get_start(), Range::get_stride(), Sparse::matrix, ConstVectorView::mdata, ConstVectorView::mrange, Sparse::ncols(), ConstVectorView::nelem(), and Sparse::nrows().

Referenced by mult().