source: mmcs/armadillo_bits/op_symmat_bones.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: 663 bytes
Line 
1// Copyright (C) 2011-2014 Conrad Sanderson
2// Copyright (C) 2011-2014 NICTA (www.nicta.com.au)
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 op_symmat
10//! @{
11
12
13
14class op_symmat
15  {
16  public:
17 
18  template<typename T1>
19  inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_symmat>& in);
20  };
21
22
23
24class op_symmat_cx
25  {
26  public:
27 
28  template<typename T1>
29  inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_symmat_cx>& in);
30  };
31
32
33
34//! @}
Note: See TracBrowser for help on using the repository browser.