![]() |
Blaze 3.9
|
Header file for the LAPACK general matrix eigenvalue functions (gges) More...
#include <memory>
#include <blaze/math/Aliases.h>
#include <blaze/math/constraints/Adaptor.h>
#include <blaze/math/constraints/BLASCompatible.h>
#include <blaze/math/constraints/Computation.h>
#include <blaze/math/constraints/Contiguous.h>
#include <blaze/math/constraints/MutableDataAccess.h>
#include <blaze/math/Exception.h>
#include <blaze/math/expressions/DenseMatrix.h>
#include <blaze/math/expressions/DenseVector.h>
#include <blaze/math/lapack/clapack/gges.h>
#include <blaze/math/shims/Equal.h>
#include <blaze/system/MacroDisable.h>
#include <blaze/util/algorithms/Max.h>
#include <blaze/util/Assert.h>
#include <blaze/util/Complex.h>
#include <blaze/util/constraints/Builtin.h>
#include <blaze/util/constraints/Complex.h>
#include <blaze/util/EnableIf.h>
#include <blaze/util/NumericCast.h>
#include <blaze/util/typetraits/IsComplex.h>
Go to the source code of this file.
Functions | |
LAPACK generalized Schur factorization functions (gges) | |
template<typename MT1 , bool SO1, typename MT2 , bool SO2, typename VT1 , bool TF1, typename VT2 , bool TF2> | |
void | blaze::gges (DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, DenseVector< VT1, TF1 > &alpha, DenseVector< VT2, TF2 > &beta) |
LAPACK kernel for computing the generalized Schur factorization of the given pair of dense general matrices. More... | |
template<typename MT1 , bool SO1, typename MT2 , bool SO2, typename VT1 , bool TF1, typename VT2 , bool TF2, typename Select > | |
void | blaze::gges (DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, DenseVector< VT1, TF1 > &alpha, DenseVector< VT2, TF2 > &beta, Select select) |
LAPACK kernel for computing the generalized Schur factorization of the given pair of dense general matrices. More... | |
template<typename MT1 , bool SO1, typename MT2 , bool SO2, typename MT3 , bool SO3, typename VT1 , bool TF1, typename VT2 , bool TF2, typename MT4 , bool SO4> | |
void | blaze::gges (DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, DenseMatrix< MT3, SO3 > &VSL, DenseVector< VT1, TF1 > &alpha, DenseVector< VT2, TF2 > &beta, DenseMatrix< MT4, SO4 > &VSR) |
LAPACK kernel for computing the generalized Schur factorization of the given pair of dense general matrices. More... | |
template<typename MT1 , bool SO1, typename MT2 , bool SO2, typename MT3 , bool SO3, typename VT1 , bool TF1, typename VT2 , bool TF2, typename MT4 , bool SO4, typename Select > | |
void | blaze::gges (DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, DenseMatrix< MT3, SO3 > &VSL, DenseVector< VT1, TF1 > &alpha, DenseVector< VT2, TF2 > &beta, DenseMatrix< MT4, SO4 > &VSR, Select select) |
LAPACK kernel for computing the generalized Schur factorization of the given pair of dense general matrices. More... | |
Header file for the LAPACK general matrix eigenvalue functions (gges)
Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
This file is part of the Blaze library. You can redistribute it and/or modify it under the terms of the New (Revised) BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.