46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
|
// Copyright (C) 2014 National ICT Australia (NICTA)
|
||
|
//
|
||
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
// -------------------------------------------------------------------
|
||
|
//
|
||
|
// Written by Conrad Sanderson - http://conradsanderson.id.au
|
||
|
|
||
|
|
||
|
//! \addtogroup xtrans_mat
|
||
|
//! @{
|
||
|
|
||
|
|
||
|
template<typename eT, bool do_conj>
|
||
|
class xtrans_mat : public Base<eT, xtrans_mat<eT, do_conj> >
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
typedef eT elem_type;
|
||
|
typedef typename get_pod_type<elem_type>::result pod_type;
|
||
|
|
||
|
static const bool is_row = false;
|
||
|
static const bool is_col = false;
|
||
|
|
||
|
arma_aligned const Mat<eT>& X;
|
||
|
arma_aligned mutable Mat<eT> Y;
|
||
|
|
||
|
arma_aligned const uword n_rows;
|
||
|
arma_aligned const uword n_cols;
|
||
|
arma_aligned const uword n_elem;
|
||
|
|
||
|
inline explicit xtrans_mat(const Mat<eT>& in_X);
|
||
|
|
||
|
inline void extract(Mat<eT>& out) const;
|
||
|
|
||
|
inline eT operator[](const uword ii) const;
|
||
|
inline eT at_alt (const uword ii) const;
|
||
|
|
||
|
arma_inline eT at(const uword in_row, const uword in_col) const;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
//! @}
|