max@0
|
1 // Copyright (C) 2009-2011 NICTA (www.nicta.com.au)
|
max@0
|
2 // Copyright (C) 2009-2011 Conrad Sanderson
|
max@0
|
3 // Copyright (C) 2009-2010 Dimitrios Bouzas
|
max@0
|
4 //
|
max@0
|
5 // This file is part of the Armadillo C++ library.
|
max@0
|
6 // It is provided without any warranty of fitness
|
max@0
|
7 // for any purpose. You can redistribute this file
|
max@0
|
8 // and/or modify it under the terms of the GNU
|
max@0
|
9 // Lesser General Public License (LGPL) as published
|
max@0
|
10 // by the Free Software Foundation, either version 3
|
max@0
|
11 // of the License or (at your option) any later version.
|
max@0
|
12 // (see http://www.opensource.org/licenses for more info)
|
max@0
|
13
|
max@0
|
14
|
max@0
|
15
|
max@0
|
16 //! \addtogroup op_cov
|
max@0
|
17 //! @{
|
max@0
|
18
|
max@0
|
19
|
max@0
|
20
|
max@0
|
21 template<typename eT>
|
max@0
|
22 inline
|
max@0
|
23 void
|
max@0
|
24 op_cov::direct_cov(Mat<eT>& out, const Mat<eT>& A, const uword norm_type)
|
max@0
|
25 {
|
max@0
|
26 arma_extra_debug_sigprint();
|
max@0
|
27
|
max@0
|
28 if(A.is_vec())
|
max@0
|
29 {
|
max@0
|
30 if(A.n_rows == 1)
|
max@0
|
31 {
|
max@0
|
32 out = var(trans(A), norm_type);
|
max@0
|
33 }
|
max@0
|
34 else
|
max@0
|
35 {
|
max@0
|
36 out = var(A, norm_type);
|
max@0
|
37 }
|
max@0
|
38 }
|
max@0
|
39 else
|
max@0
|
40 {
|
max@0
|
41 const uword N = A.n_rows;
|
max@0
|
42 const eT norm_val = (norm_type == 0) ? ( (N > 1) ? eT(N-1) : eT(1) ) : eT(N);
|
max@0
|
43
|
max@0
|
44 const Row<eT> acc = sum(A);
|
max@0
|
45
|
max@0
|
46 out = trans(A) * A;
|
max@0
|
47 out -= (trans(acc) * acc)/eT(N);
|
max@0
|
48 out /= norm_val;
|
max@0
|
49 }
|
max@0
|
50 }
|
max@0
|
51
|
max@0
|
52
|
max@0
|
53
|
max@0
|
54 template<typename T>
|
max@0
|
55 inline
|
max@0
|
56 void
|
max@0
|
57 op_cov::direct_cov(Mat< std::complex<T> >& out, const Mat< std::complex<T> >& A, const uword norm_type)
|
max@0
|
58 {
|
max@0
|
59 arma_extra_debug_sigprint();
|
max@0
|
60
|
max@0
|
61 typedef typename std::complex<T> eT;
|
max@0
|
62
|
max@0
|
63 if(A.is_vec())
|
max@0
|
64 {
|
max@0
|
65 if(A.n_rows == 1)
|
max@0
|
66 {
|
max@0
|
67 const Mat<T> tmp_mat = var(trans(A), norm_type);
|
max@0
|
68 out.set_size(1,1);
|
max@0
|
69 out[0] = tmp_mat[0];
|
max@0
|
70 }
|
max@0
|
71 else
|
max@0
|
72 {
|
max@0
|
73 const Mat<T> tmp_mat = var(A, norm_type);
|
max@0
|
74 out.set_size(1,1);
|
max@0
|
75 out[0] = tmp_mat[0];
|
max@0
|
76 }
|
max@0
|
77 }
|
max@0
|
78 else
|
max@0
|
79 {
|
max@0
|
80 const uword N = A.n_rows;
|
max@0
|
81 const eT norm_val = (norm_type == 0) ? ( (N > 1) ? eT(N-1) : eT(1) ) : eT(N);
|
max@0
|
82
|
max@0
|
83 const Row<eT> acc = sum(A);
|
max@0
|
84
|
max@0
|
85 out = trans(A) * A; // out = strans(conj(A)) * A;
|
max@0
|
86 out -= (trans(acc) * acc)/eT(N); // out -= (strans(conj(acc)) * acc)/eT(N);
|
max@0
|
87 out /= norm_val;
|
max@0
|
88 }
|
max@0
|
89 }
|
max@0
|
90
|
max@0
|
91
|
max@0
|
92
|
max@0
|
93 template<typename T1>
|
max@0
|
94 inline
|
max@0
|
95 void
|
max@0
|
96 op_cov::apply(Mat<typename T1::elem_type>& out, const Op<T1,op_cov>& in)
|
max@0
|
97 {
|
max@0
|
98 arma_extra_debug_sigprint();
|
max@0
|
99
|
max@0
|
100 typedef typename T1::elem_type eT;
|
max@0
|
101
|
max@0
|
102 const unwrap_check<T1> tmp(in.m, out);
|
max@0
|
103 const Mat<eT>& A = tmp.M;
|
max@0
|
104
|
max@0
|
105 const uword norm_type = in.aux_uword_a;
|
max@0
|
106
|
max@0
|
107 op_cov::direct_cov(out, A, norm_type);
|
max@0
|
108 }
|
max@0
|
109
|
max@0
|
110
|
max@0
|
111
|
max@0
|
112 //! @}
|