TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
linalg.hpp
Go to the documentation of this file.
1// Copyright (c) 2021--present, The Simons Foundation
2// This file is part of TRIQS/nda and is licensed under the Apache License, Version 2.0.
3// SPDX-License-Identifier: Apache-2.0
4// See LICENSE in the root of this distribution for details.
5
10
11#pragma once
12
13#include "./blas.hpp"
14#include "./lapack.hpp"
15
17#include "./linalg/det.hpp"
18#include "./linalg/dot.hpp"
19#include "./linalg/eigh.hpp"
20#include "./linalg/inv.hpp"
21#include "./linalg/lu.hpp"
22#include "./linalg/matmul.hpp"
24#include "./linalg/norm.hpp"
26#include "./linalg/qr.hpp"
27#include "./linalg/solve.hpp"
28#include "./linalg/svd.hpp"
29#include "./linalg/utils.hpp"
Includes all BLAS relevant headers.
Provides a cross product for 3-dimensional vectors.
Provides functions to compute the determinant of a matrix.
Provides functions to solve (generalized) eigenvalue problems with a symmetric/hermitian matrices.
Provides functions to compute the inverse of a matrix.
Includes all LAPACK relevant headers.
Provides a generic dot product.
Provides utility functions for the nda::linalg namespace.
Provides functions to get the LU factorization of a matrix.
Provides a generic matrix-matrix multiplication.
Provides a generic matrix-vector multiplication.
Provides the p-norm for general arrays/views of rank 1 and with scalar elements.
Provides a generic outer product function.
Provides functions to get the QR factorization of a matrix.
Provides functions to solve linear systems of equations.
Provides functions to compute the singular value decomposition of a matrix.