![]() |
Blaze
3.6
|
Header file for the implementation of the Submatrix view. More...
#include <blaze/math/Aliases.h>
#include <blaze/math/AlignmentFlag.h>
#include <blaze/math/constraints/MutableDataAccess.h>
#include <blaze/math/constraints/RequiresEvaluation.h>
#include <blaze/math/expressions/DeclExpr.h>
#include <blaze/math/expressions/MatEvalExpr.h>
#include <blaze/math/expressions/MatMapExpr.h>
#include <blaze/math/expressions/MatMatAddExpr.h>
#include <blaze/math/expressions/MatMatKronExpr.h>
#include <blaze/math/expressions/MatMatMapExpr.h>
#include <blaze/math/expressions/MatMatMultExpr.h>
#include <blaze/math/expressions/MatMatSubExpr.h>
#include <blaze/math/expressions/Matrix.h>
#include <blaze/math/expressions/MatReduceExpr.h>
#include <blaze/math/expressions/MatScalarDivExpr.h>
#include <blaze/math/expressions/MatScalarMultExpr.h>
#include <blaze/math/expressions/MatSerialExpr.h>
#include <blaze/math/expressions/MatTransExpr.h>
#include <blaze/math/expressions/MatVecMultExpr.h>
#include <blaze/math/expressions/SchurExpr.h>
#include <blaze/math/expressions/TVecMatMultExpr.h>
#include <blaze/math/expressions/VecExpandExpr.h>
#include <blaze/math/expressions/VecTVecMultExpr.h>
#include <blaze/math/IntegerSequence.h>
#include <blaze/math/InversionFlag.h>
#include <blaze/math/ReductionFlag.h>
#include <blaze/math/shims/IsDefault.h>
#include <blaze/math/shims/Serial.h>
#include <blaze/math/typetraits/HasConstDataAccess.h>
#include <blaze/math/typetraits/HasMutableDataAccess.h>
#include <blaze/math/typetraits/IsAligned.h>
#include <blaze/math/typetraits/IsContiguous.h>
#include <blaze/math/typetraits/IsHermitian.h>
#include <blaze/math/typetraits/IsLower.h>
#include <blaze/math/typetraits/IsRestricted.h>
#include <blaze/math/typetraits/IsStrictlyLower.h>
#include <blaze/math/typetraits/IsStrictlyUpper.h>
#include <blaze/math/typetraits/IsSubmatrix.h>
#include <blaze/math/typetraits/IsSymmetric.h>
#include <blaze/math/typetraits/IsUniLower.h>
#include <blaze/math/typetraits/IsUniUpper.h>
#include <blaze/math/typetraits/IsUpper.h>
#include <blaze/math/typetraits/Size.h>
#include <blaze/math/typetraits/TransposeFlag.h>
#include <blaze/math/views/Check.h>
#include <blaze/math/views/column/ColumnData.h>
#include <blaze/math/views/row/RowData.h>
#include <blaze/math/views/submatrix/BaseTemplate.h>
#include <blaze/math/views/submatrix/Dense.h>
#include <blaze/math/views/submatrix/Sparse.h>
#include <blaze/math/views/Subvector.h>
#include <blaze/util/algorithms/Max.h>
#include <blaze/util/algorithms/Min.h>
#include <blaze/util/Assert.h>
#include <blaze/util/DisableIf.h>
#include <blaze/util/EnableIf.h>
#include <blaze/util/FunctionTrace.h>
#include <blaze/util/IntegralConstant.h>
#include <blaze/util/MaybeUnused.h>
#include <blaze/util/SmallArray.h>
#include <blaze/util/StaticAssert.h>
#include <blaze/util/TypeList.h>
#include <blaze/util/Types.h>
#include <blaze/util/typetraits/RemoveReference.h>
Go to the source code of this file.
Namespaces | |
blaze | |
Namespace of the Blaze C++ math library. | |
Functions | |
template<size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &matrix, RSAs... args) |
Creating a view on a specific submatrix of the given matrix. More... | |
template<size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (const Matrix< MT, SO > &matrix, RSAs... args) |
Creating a view on a specific submatrix of the given constant matrix. More... | |
template<size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &&matrix, RSAs... args) |
Creating a view on a specific submatrix of the given temporary matrix. More... | |
template<AlignmentFlag AF, size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &matrix, RSAs... args) |
Creating a view on a specific submatrix of the given matrix. More... | |
template<AlignmentFlag AF, size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (const Matrix< MT, SO > &matrix, RSAs... args) |
Creating a view on a specific submatrix of the given constant matrix. More... | |
template<AlignmentFlag AF, size_t I, size_t J, size_t M, size_t N, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &&matrix, RSAs... args) |
Creating a view on a specific submatrix of the given temporary matrix. More... | |
template<typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given matrix. More... | |
template<typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (const Matrix< MT, SO > &matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given constant matrix. More... | |
template<typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &&matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given temporary matrix. More... | |
template<AlignmentFlag AF, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given matrix. More... | |
template<AlignmentFlag AF, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (const Matrix< MT, SO > &matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given constant matrix. More... | |
template<AlignmentFlag AF, typename MT , bool SO, typename... RSAs> | |
decltype(auto) | blaze::submatrix (Matrix< MT, SO > &&matrix, size_t row, size_t column, size_t m, size_t n, RSAs... args) |
Creating a view on a specific submatrix of the given temporary matrix. More... | |
Header file for the implementation of the Submatrix view.
Copyright (C) 2012-2019 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.