source: mmcs/armadillo_bits/mtGlueCube_bones.hpp @ 8ad4484

matrices
Last change on this file since 8ad4484 was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

  • Property mode set to 100644
File size: 1022 bytes
Line 
1// Copyright (C) 2008-2011 Conrad Sanderson
2// Copyright (C) 2008-2011 NICTA (www.nicta.com.au)
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
8
9//! \addtogroup mtGlueCube
10//! @{
11
12
13
14template<typename out_eT, typename T1, typename T2, typename glue_type>
15class mtGlueCube : public BaseCube<out_eT, mtGlueCube<out_eT, T1, T2, glue_type> >
16  {
17  public:
18 
19  typedef          out_eT                       elem_type;
20  typedef typename get_pod_type<out_eT>::result pod_type;
21 
22  arma_inline  mtGlueCube(const T1& in_A, const T2& in_B);
23  arma_inline  mtGlueCube(const T1& in_A, const T2& in_B, const uword in_aux_uword);
24  arma_inline ~mtGlueCube();
25 
26  arma_aligned const T1&   A;         //!< first operand
27  arma_aligned const T2&   B;         //!< second operand
28  arma_aligned       uword aux_uword; //!< storage of auxiliary data, uword format
29  };
30
31
32
33//! @}
Note: See TracBrowser for help on using the repository browser.