source: mmcs/armadillo_bits/glue_cor_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: 907 bytes
Line 
1// Copyright (C) 2009-2010 Conrad Sanderson
2// Copyright (C) 2009-2010 NICTA (www.nicta.com.au)
3// Copyright (C) 2009-2010 Dimitrios Bouzas
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
9
10
11//! \addtogroup glue_cor
12//! @{
13
14
15
16class glue_cor
17  {
18  public:
19
20  template<typename eT> inline static void direct_cor(Mat<eT>&                out, const Mat<eT>&                A, const Mat<eT>&                B, const uword norm_type);
21  template<typename T>  inline static void direct_cor(Mat< std::complex<T> >& out, const Mat< std::complex<T> >& A, const Mat< std::complex<T> >& B, const uword norm_type);
22 
23  template<typename T1, typename T2> inline static void apply(Mat<typename T1::elem_type>& out, const Glue<T1,T2,glue_cor>& X);
24  };
25
26
27
28//! @}
29
Note: See TracBrowser for help on using the repository browser.