Mercurial > hg > segmenter-vamp-plugin
comparison armadillo-3.900.4/include/armadillo_bits/SpOp_meat.hpp @ 49:1ec0e2823891
Switch to using subrepo copies of qm-dsp, nnls-chroma, vamp-plugin-sdk; update Armadillo version; assume build without external BLAS/LAPACK
author | Chris Cannam |
---|---|
date | Thu, 13 Jun 2013 10:25:24 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:69251e11a913 | 49:1ec0e2823891 |
---|---|
1 // Copyright (C) 2012 Conrad Sanderson | |
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 SpOp | |
9 //! @{ | |
10 | |
11 | |
12 | |
13 template<typename T1, typename op_type> | |
14 inline | |
15 SpOp<T1, op_type>::SpOp(const T1& in_m) | |
16 : m(in_m) | |
17 { | |
18 arma_extra_debug_sigprint(); | |
19 } | |
20 | |
21 | |
22 | |
23 template<typename T1, typename op_type> | |
24 inline | |
25 SpOp<T1, op_type>::SpOp(const T1& in_m, const typename T1::elem_type in_aux) | |
26 : m(in_m) | |
27 , aux(in_aux) | |
28 { | |
29 arma_extra_debug_sigprint(); | |
30 } | |
31 | |
32 | |
33 | |
34 template<typename T1, typename op_type> | |
35 inline | |
36 SpOp<T1, op_type>::SpOp(const T1& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b) | |
37 : m(in_m) | |
38 , aux_uword_a(in_aux_uword_a) | |
39 , aux_uword_b(in_aux_uword_b) | |
40 { | |
41 arma_extra_debug_sigprint(); | |
42 } | |
43 | |
44 | |
45 | |
46 template<typename T1, typename op_type> | |
47 inline | |
48 SpOp<T1, op_type>::~SpOp() | |
49 { | |
50 arma_extra_debug_sigprint(); | |
51 } | |
52 | |
53 | |
54 | |
55 //! @} |