ARTS 2.5.10 (git: 2f1c442c)
|
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const Range &r) |
std::ostream & | operator<< (std::ostream &os, const ConstVectorView &v) |
void | copy (ConstIterator1D origin, const ConstIterator1D &end, Iterator1D target) |
void | copy (Numeric x, Iterator1D target, const Iterator1D &end) ARTS_NOEXCEPT |
Copy a scalar to all elements. | |
void | swap (Vector &v1, Vector &v2) noexcept |
std::ostream & | operator<< (std::ostream &os, const ConstMatrixView &v) |
Output operator. | |
void | copy (ConstIterator2D origin, const ConstIterator2D &end, Iterator2D target) |
Copy data between begin and end to target. | |
void | copy (Numeric x, Iterator2D target, const Iterator2D &end) ARTS_NOEXCEPT |
Copy a scalar to all elements. | |
void | swap (Matrix &m1, Matrix &m2) noexcept |
Swaps two objects. | |
Numeric | operator* (const ConstVectorView &a, const ConstVectorView &b) ARTS_NOEXCEPT |
Scalar product. | |
void | mult (VectorView y, const ConstMatrixView &M, const ConstVectorView &x) |
Matrix-Vector Multiplication. | |
void | mult_general (VectorView y, const ConstMatrixView &M, const ConstVectorView &x) ARTS_NOEXCEPT |
Matrix Vector multiplication. | |
void | mult (MatrixView A, const ConstMatrixView &B, const ConstMatrixView &C) |
Matrix-Matrix Multiplication. | |
void | mult_general (MatrixView A, const ConstMatrixView &B, const ConstMatrixView &C) ARTS_NOEXCEPT |
General matrix multiplication. | |
void | cross3 (VectorView c, const ConstVectorView &a, const ConstVectorView &b) ARTS_NOEXCEPT |
cross3 | |
Numeric | vector_angle (ConstVectorView a, ConstVectorView b) |
void | proj (Vector &c, ConstVectorView a, ConstVectorView b) ARTS_NOEXCEPT |
ConstMatrixView | transpose (ConstMatrixView m) ARTS_NOEXCEPT |
Const version of transpose. | |
MatrixView | transpose (MatrixView m) ARTS_NOEXCEPT |
Returns the transpose. | |
void | transform (VectorView y, double(&my_func)(double), ConstVectorView x) |
A generic transform function for vectors, which can be used to implement mathematical functions operating on all elements. | |
void | transform (MatrixView y, double(&my_func)(double), ConstMatrixView x) |
A generic transform function for matrices, which can be used to implement mathematical functions operating on all elements. | |
Numeric | max (const ConstVectorView &x) ARTS_NOEXCEPT |
Max function, vector version. | |
Numeric | max (const ConstMatrixView &x) ARTS_NOEXCEPT |
Max function, matrix version. | |
Numeric | min (const ConstVectorView &x) ARTS_NOEXCEPT |
Min function, vector version. | |
Numeric | min (const ConstMatrixView &x) ARTS_NOEXCEPT |
Min function, matrix version. | |
Numeric | mean (const ConstVectorView &x) ARTS_NOEXCEPT |
Mean function, vector version. | |
Numeric | nanmean (const ConstVectorView &x) ARTS_NOEXCEPT |
Mean function, vector version ignoring nans and infs. | |
Numeric | mean (const ConstMatrixView &x) ARTS_NOEXCEPT |
Mean function, matrix version. | |
Numeric | debug_matrixview_get_elem (MatrixView &mv, Index r, Index c) |
Helper function to access matrix elements. | |
Variables | |
const Joker | joker = Joker() |
Definition in file matpackI.cc.
void copy | ( | ConstIterator1D | origin, |
const ConstIterator1D & | end, | ||
Iterator1D | target | ||
) |
Target must be a valid area of memory. Note that the strides in the iterators can be different, so that we can for example copy data between different kinds of subvectors.
Definition at line 288 of file matpackI.cc.
Referenced by Matrix::Matrix(), MatrixView::operator=(), VectorView::operator=(), Matrix::operator=(), and Vector::Vector().
void copy | ( | ConstIterator2D | origin, |
const ConstIterator2D & | end, | ||
Iterator2D | target | ||
) |
Copy data between begin and end to target.
Target must be a valid area of memory. Note that the strides in the iterators can be different, so that we can for example copy data between different kinds of subvectors.
Origin, end, and target are 2D iterators, marking rows in a matrix. For each row the 1D iterator is obtained and used to copy the elements.
Definition at line 874 of file matpackI.cc.
References VectorView::begin(), ConstVectorView::begin(), and ConstVectorView::end().
void copy | ( | Numeric | x, |
Iterator1D | target, | ||
const Iterator1D & | end | ||
) |
Copy a scalar to all elements.
Definition at line 299 of file matpackI.cc.
void copy | ( | Numeric | x, |
Iterator2D | target, | ||
const Iterator2D & | end | ||
) |
Copy a scalar to all elements.
Definition at line 886 of file matpackI.cc.
void cross3 | ( | VectorView | c, |
const ConstVectorView & | a, | ||
const ConstVectorView & | b | ||
) |
cross3
Calculates the cross product between two vectors of length 3.
c = a x b, for 3D vectors. The vector c must have length 3 and can not be the same variable as a or b.
param c Out: The cross product vector
a | In: A vector of length 3. |
b | In: A vector of length 3. |
Definition at line 1350 of file matpackI.cc.
References a, ARTS_ASSERT, b, and c.
Referenced by MCAntenna::draw_los(), and specular_losCalc().
Numeric debug_matrixview_get_elem | ( | MatrixView & | mv, |
Index | r, | ||
Index | c | ||
) |
Helper function to access matrix elements.
Because of function inlining the operator() is not accessible from the debuggger. This function helps to access Matrix elements from within the debugger.
mv | MatrixView |
r | Row index |
c | Column index |
Definition at line 1648 of file matpackI.cc.
References c.
Numeric max | ( | const ConstMatrixView & | x | ) |
Max function, matrix version.
Definition at line 1493 of file matpackI.cc.
References ConstVectorView::begin(), ConstVectorView::end(), and max().
Numeric max | ( | const ConstVectorView & | x | ) |
Numeric mean | ( | const ConstMatrixView & | x | ) |
Mean function, matrix version.
Definition at line 1586 of file matpackI.cc.
References ConstVectorView::begin(), ConstVectorView::end(), and mean().
Numeric mean | ( | const ConstVectorView & | x | ) |
Mean function, vector version.
Definition at line 1546 of file matpackI.cc.
References mean().
Referenced by mean().
Numeric min | ( | const ConstMatrixView & | x | ) |
Min function, matrix version.
Definition at line 1527 of file matpackI.cc.
References ConstVectorView::begin(), ConstVectorView::end(), and min().
Numeric min | ( | const ConstVectorView & | x | ) |
void mult | ( | MatrixView | A, |
const ConstMatrixView & | B, | ||
const ConstMatrixView & | C | ||
) |
Matrix-Matrix Multiplication.
Performs the matrix multiplication A = B * C. The dimensions must match, i.e. A must be a m times n matrix, B a m times k matrix and C a k times c matrix. No memory reallocation takes place, only the data is copied. Using this function on overlapping MatrixViews belonging to the same Matrix will lead to unpredictable results. In particular, this means that A and B must not be the same matrix!
If the memory layout allows it, the multiplication is performed using BLAS' _dgemm, which leads to a significant speed up of the operation. To be compatible with BLAS the matrix views A, B and C must satisfy:
That means that A and B can be ConstMatrixView objects corresponding to transposed/non-transposed submatrices of a matrix, that are continuous along their first/second dimension. C must correspond to a non-transposed submatrix of a matrix, that is continuous along its second dimension.
[in,out] | A | The matrix A, that will hold the result of the multiplication. |
[in] | B | The matrix B |
[in] | C | The matrix C |
Definition at line 1199 of file matpackI.cc.
void mult | ( | VectorView | y, |
const ConstMatrixView & | M, | ||
const ConstVectorView & | x | ||
) |
Matrix-Vector Multiplication.
Computes the Matrix-Vector product y = M * x, for a m times n matrix M, a length-m vector y and a length-n vector x.
The product is computed using the dgemv_ routine from the BLAS library if the matrix is contiguous in memory. If this is not the case, the mult_general method is used to compute the product.
No memory is allocated for the computation and the matrix and vector views may not overlap.
[out] | y | The length-m VectorView where the result is stored. |
[in] | M | Reference to the m-times-n ConstMatrixView holding the matrix M. |
[in] | x | Reference to the length-n ConstVectorView holding the vector x. |
Definition at line 1080 of file matpackI.cc.
void mult_general | ( | MatrixView | A, |
const ConstMatrixView & | B, | ||
const ConstMatrixView & | C | ||
) |
General matrix multiplication.
This is the fallback matrix multiplication which works for all ConstMatrixView objects.
[in,out] | A | The matrix A, that will hold the result of the multiplication. |
[in] | B | The matrix B |
[in] | C | The matrix C |
Definition at line 1303 of file matpackI.cc.
void mult_general | ( | VectorView | y, |
const ConstMatrixView & | M, | ||
const ConstVectorView & | x | ||
) |
y = M*x. Note that the order is different from MTL, output comes first! Dimensions of y, M, and x must match. No memory reallocation takes place, only the data is copied. Using this function on overlapping Matrix and VectorViews belonging to the same Matrix will lead to unpredictable results.
The implementation here is different from the other multiplication routines. It does not use iterators but a more drastic approach to gain maximum performance.
Definition at line 1138 of file matpackI.cc.
Referenced by benchmark_mult(), matrix_mult(), and matrix_vector_mult().
Numeric nanmean | ( | const ConstVectorView & | x | ) |
Mean function, vector version ignoring nans and infs.
Definition at line 1561 of file matpackI.cc.
References nanmean().
Referenced by Raw::Reduce::nanfocus(), and nanmean().
Numeric operator* | ( | const ConstVectorView & | a, |
const ConstVectorView & | b | ||
) |
std::ostream & operator<< | ( | std::ostream & | os, |
const ConstMatrixView & | v | ||
) |
Output operator.
This demonstrates how iterators can be used to traverse the matrix. The iterators know which part of the matrix is ‘active’, and also the strides in both directions. This function is a bit more complicated than necessary to illustrate the concept, because the formating should look nice. This means that the first row, and the first element in each row, have to be treated individually.
Definition at line 517 of file matpackI.cc.
std::ostream & operator<< | ( | std::ostream & | os, |
const ConstVectorView & | v | ||
) |
Definition at line 108 of file matpackI.cc.
std::ostream & operator<< | ( | std::ostream & | os, |
const Range & | r | ||
) |
Definition at line 39 of file matpackI.cc.
void proj | ( | Vector & | c, |
ConstVectorView | a, | ||
ConstVectorView | b | ||
) |
Calculates the projection of two vectors of equal length.
c = proj_a(b). Projecting b on a. The vector c must have the same length but can not be the same variable as a or b.
c | Out: The projection of b on a. |
a | In: A vector of length N. |
b | In: A vector of length N. |
Definition at line 1393 of file matpackI.cc.
References a, ARTS_ASSERT, b, and c.
Swaps two objects.
Definition at line 1030 of file matpackI.cc.
Definition at line 401 of file matpackI.cc.
void transform | ( | MatrixView | y, |
double(&)(double) | my_func, | ||
ConstMatrixView | x | ||
) |
A generic transform function for matrices, which can be used to implement mathematical functions operating on all elements.
Because we have this, we don't need explicit functions like sqrt for matrices! The type of the mathematical function is double (&my_func)(double). Numeric would not work here, since mathematical functions for float do not exist!
transform(y,sin,x) computes y = sin(x)
This function can also be used for Vectors, because there is a conversion to MatrixView.
The two Matrix views may be the same one, in which case the conversion happens in place.
y | Output: The results of the function acting on each element of x. |
my_func | A function (e.g., sqrt). |
x | A matrix. |
Definition at line 1461 of file matpackI.cc.
References ARTS_ASSERT, VectorView::begin(), MatrixView::begin(), ConstVectorView::begin(), ConstMatrixView::begin(), ConstVectorView::end(), ConstMatrixView::end(), ConstMatrixView::ncols(), and ConstMatrixView::nrows().
void transform | ( | VectorView | y, |
double(&)(double) | my_func, | ||
ConstVectorView | x | ||
) |
A generic transform function for vectors, which can be used to implement mathematical functions operating on all elements.
Because we have this, we don't need explicit functions like sqrt for matrices! The type of the mathematical function is double (&my_func)(double). Numeric would not work here, since mathematical functions for float do not exist!
transform(y,sin,x) computes y = sin(x)
Although the matrix version of this can also be used for vectors, thanks to the automatic interpretation of a vector as a one column matrix, this one is slightly more efficient. However, the difference is very small (only a few percent).
The two views may be the same one, in which case the conversion happens in place.
y | Output: The results of the function acting on each element of x. |
my_func | A function (e.g., sqrt). |
x | A vector. |
Definition at line 1433 of file matpackI.cc.
References ARTS_ASSERT, VectorView::begin(), ConstVectorView::begin(), ConstVectorView::end(), and ConstVectorView::nelem().
Referenced by GasAbsLookup::Adapt(), asymmetry_parameter(), chk_interpolation_pgrids(), chk_interpolation_pgrids_loose_no_data_check(), itw2p(), p2gridpos(), ppvar_optical_depthFromPpvar_trans_cumulat(), RadarOnionPeelingTableCalc(), test2(), test31(), test6(), test7(), and VectorLogSpace().
ConstMatrixView transpose | ( | ConstMatrixView | m | ) |
Const version of transpose.
Definition at line 1403 of file matpackI.cc.
MatrixView transpose | ( | MatrixView | m | ) |
Returns the transpose.
This creates a special MatrixView for the transpose. The original is not changed!
Definition at line 1409 of file matpackI.cc.
Numeric vector_angle | ( | ConstVectorView | a, |
ConstVectorView | b | ||
) |
Returns numeric angle between two vectors in degrees.
a | In: A vector of length N. |
b | In: A vector of length N. |
Definition at line 1371 of file matpackI.cc.
References a, ARTS_ASSERT, b, RAD2DEG, and sqrt().