From eda5bc26f44ee9a6f83dcf8c91f17296d7fc509d Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 12 Feb 2024 14:52:43 +0100 Subject: Move into version control --- .../include/armadillo_bits/spdiagview_bones.hpp | 113 +++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 src/armadillo/include/armadillo_bits/spdiagview_bones.hpp (limited to 'src/armadillo/include/armadillo_bits/spdiagview_bones.hpp') diff --git a/src/armadillo/include/armadillo_bits/spdiagview_bones.hpp b/src/armadillo/include/armadillo_bits/spdiagview_bones.hpp new file mode 100644 index 0000000..238e8a3 --- /dev/null +++ b/src/armadillo/include/armadillo_bits/spdiagview_bones.hpp @@ -0,0 +1,113 @@ +// SPDX-License-Identifier: Apache-2.0 +// +// Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au) +// Copyright 2008-2016 National ICT Australia (NICTA) +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------------------------------------------ + + +//! \addtogroup spdiagview +//! @{ + + +//! Class for storing data required to extract and set the diagonals of a sparse matrix +template +class spdiagview : public SpBase< eT, spdiagview > + { + public: + + typedef eT elem_type; + typedef typename get_pod_type::result pod_type; + + arma_aligned const SpMat& m; + + static constexpr bool is_row = false; + static constexpr bool is_col = true; + static constexpr bool is_xvec = false; + + const uword row_offset; + const uword col_offset; + + const uword n_rows; // equal to n_elem + const uword n_elem; + + static constexpr uword n_cols = 1; + + + protected: + + arma_inline spdiagview(const SpMat& in_m, const uword in_row_offset, const uword in_col_offset, const uword len); + + + public: + + inline ~spdiagview(); + inline spdiagview() = delete; + + inline void operator=(const spdiagview& x); + + inline void operator+=(const eT val); + inline void operator-=(const eT val); + inline void operator*=(const eT val); + inline void operator/=(const eT val); + + template inline void operator= (const Base& x); + template inline void operator+=(const Base& x); + template inline void operator-=(const Base& x); + template inline void operator%=(const Base& x); + template inline void operator/=(const Base& x); + + template inline void operator= (const SpBase& x); + template inline void operator+=(const SpBase& x); + template inline void operator-=(const SpBase& x); + template inline void operator%=(const SpBase& x); + template inline void operator/=(const SpBase& x); + + inline SpMat_MapMat_val operator[](const uword ii); + inline eT operator[](const uword ii) const; + + inline SpMat_MapMat_val at(const uword ii); + inline eT at(const uword ii) const; + + inline SpMat_MapMat_val operator()(const uword ii); + inline eT operator()(const uword ii) const; + + inline SpMat_MapMat_val at(const uword in_n_row, const uword); + inline eT at(const uword in_n_row, const uword) const; + + inline SpMat_MapMat_val operator()(const uword in_n_row, const uword in_n_col); + inline eT operator()(const uword in_n_row, const uword in_n_col) const; + + + inline void replace(const eT old_val, const eT new_val); + + inline void clean(const pod_type threshold); + + inline void clamp(const eT min_val, const eT max_val); + + inline void fill(const eT val); + inline void zeros(); + inline void ones(); + inline void randu(); + inline void randn(); + + + inline static void extract(SpMat& out, const spdiagview& in); + inline static void extract( Mat& out, const spdiagview& in); + + + friend class SpMat; + }; + + +//! @} -- cgit v1.2.1