comparison armadillo-3.900.4/include/armadillo_bits/OpCube_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) 2008-2011 NICTA (www.nicta.com.au)
2 // Copyright (C) 2008-2011 Conrad Sanderson
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 OpCube
10 //! @{
11
12
13
14 template<typename T1, typename op_type>
15 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m)
16 : m(in_m.get_ref())
17 {
18 arma_extra_debug_sigprint();
19 }
20
21
22
23 template<typename T1, typename op_type>
24 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const typename T1::elem_type in_aux)
25 : m(in_m.get_ref())
26 , aux(in_aux)
27 {
28 arma_extra_debug_sigprint();
29 }
30
31
32 template<typename T1, typename op_type>
33 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const typename T1::elem_type in_aux, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c)
34 : m(in_m.get_ref())
35 , aux(in_aux)
36 , aux_uword_a(in_aux_uword_a)
37 , aux_uword_b(in_aux_uword_b)
38 , aux_uword_c(in_aux_uword_c)
39 {
40 arma_extra_debug_sigprint();
41 }
42
43
44
45
46 template<typename T1, typename op_type>
47 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b)
48 : m(in_m.get_ref())
49 , aux_uword_a(in_aux_uword_a)
50 , aux_uword_b(in_aux_uword_b)
51 {
52 arma_extra_debug_sigprint();
53 }
54
55
56
57 template<typename T1, typename op_type>
58 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c)
59 : m(in_m.get_ref())
60 , aux_uword_a(in_aux_uword_a)
61 , aux_uword_b(in_aux_uword_b)
62 , aux_uword_c(in_aux_uword_c)
63 {
64 arma_extra_debug_sigprint();
65 }
66
67
68
69 template<typename T1, typename op_type>
70 OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c, const uword in_aux_uword_d, const char)
71 : m(in_m.get_ref())
72 , aux_uword_a(in_aux_uword_a)
73 , aux_uword_b(in_aux_uword_b)
74 , aux_uword_c(in_aux_uword_c)
75 , aux_uword_d(in_aux_uword_d)
76 {
77 arma_extra_debug_sigprint();
78 }
79
80
81
82 template<typename T1, typename op_type>
83 OpCube<T1, op_type>::~OpCube()
84 {
85 arma_extra_debug_sigprint();
86 }
87
88
89
90 //! @}