![]() |
Header file for all basic Matrix functionality. More...
#include <iomanip>
#include <ostream>
#include <blaze/math/Aliases.h>
#include <blaze/math/Exception.h>
#include <blaze/math/expressions/Matrix.h>
#include <blaze/math/RelaxationFlag.h>
Go to the source code of this file.
Namespaces | |
blaze | |
Namespace of the Blaze C++ math library. | |
Functions | |
Matrix functions | |
template<typename MT , bool SO> | |
bool | blaze::isSymmetric (const Matrix< MT, SO > &m) |
Checks if the given matrix is symmetric. More... | |
template<typename MT , bool SO> | |
bool | blaze::isHermitian (const Matrix< MT, SO > &m) |
Checks if the given matrix is Hermitian. More... | |
template<typename MT , bool SO> | |
bool | blaze::isUniform (const Matrix< MT, SO > &m) |
Checks if the given matrix is a uniform matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isLower (const Matrix< MT, SO > &m) |
Checks if the given matrix is a lower triangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isUniLower (const Matrix< MT, SO > &m) |
Checks if the given matrix is a lower unitriangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isStrictlyLower (const Matrix< MT, SO > &m) |
Checks if the given matrix is a strictly lower triangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isUpper (const Matrix< MT, SO > &m) |
Checks if the given matrix is an upper triangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isUniUpper (const Matrix< MT, SO > &m) |
Checks if the given matrix is an upper unitriangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isStrictlyUpper (const Matrix< MT, SO > &m) |
Checks if the given matrix is a strictly upper triangular matrix. More... | |
template<typename MT , bool SO> | |
bool | blaze::isDiagonal (const Matrix< MT, SO > &m) |
Checks if the give matrix is diagonal. More... | |
template<typename MT , bool SO> | |
bool | blaze::isIdentity (const Matrix< MT, SO > &m) |
Checks if the give matrix is an identity matrix. More... | |
template<typename MT , bool SO> | |
auto | blaze::trace (const Matrix< MT, SO > &m) |
Computes the trace of the given square matrix. More... | |
Matrix operators | |
template<typename MT , bool SO> | |
std::ostream & | blaze::operator<< (std::ostream &os, const Matrix< MT, SO > &m) |
Global output operator for dense and sparse matrices. More... | |
Header file for all basic Matrix functionality.
Copyright (C) 2012-2017 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.