source: mmcs/armadillo_bits/mtSpOp_meat.hpp @ 8daa049

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

Avance del proyecto 60%

  • Property mode set to 100644
File size: 876 bytes
Line 
1// Copyright (C) 2012 Ryan Curtin
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7
8//! \addtogroup mtSpOp
9//! @{
10
11
12
13template<typename out_eT, typename T1, typename op_type>
14inline
15mtSpOp<out_eT, T1, op_type>::mtSpOp(const T1& in_m)
16  : m(in_m)
17  {
18  arma_extra_debug_sigprint();
19  }
20
21
22
23template<typename out_eT, typename T1, typename op_type>
24inline
25mtSpOp<out_eT, T1, op_type>::mtSpOp(const T1& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b)
26  : m(in_m)
27  , aux_uword_a(in_aux_uword_a)
28  , aux_uword_b(in_aux_uword_b)
29  {
30  arma_extra_debug_sigprint();
31  }
32
33
34
35template<typename out_eT, typename T1, typename op_type>
36inline
37mtSpOp<out_eT, T1, op_type>::~mtSpOp()
38  {
39  arma_extra_debug_sigprint();
40  }
Note: See TracBrowser for help on using the repository browser.