~ubuntu-branches/ubuntu/wily/r-cran-rcpparmadillo/wily

« back to all changes in this revision

Viewing changes to inst/include/armadillo_bits/op_repmat_bones.hpp

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2015-08-17 06:00:00 UTC
  • mfrom: (1.1.31)
  • Revision ID: package-import@ubuntu.com-20150817060000-1ai46se2u88axf3u
Tags: 0.5.400.2.0-1
* New upstream release

* debian/control: Set Build-Depends: to current R version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 2009-2010 Conrad Sanderson
2
 
// Copyright (C) 2009-2010 NICTA (www.nicta.com.au)
 
1
// Copyright (C) 2009-2015 Conrad Sanderson
 
2
// Copyright (C) 2009-2015 NICTA (www.nicta.com.au)
3
3
// Copyright (C) 2009-2010 Dimitrios Bouzas
4
4
// 
5
5
// This Source Code Form is subject to the terms of the Mozilla Public
16
16
class op_repmat
17
17
  {
18
18
  public:
 
19
  
 
20
  template<typename obj> inline static void apply_noalias(Mat<typename obj::elem_type>& out, const obj& X, const uword copies_per_row, const uword copies_per_col);
 
21
  
19
22
  template<typename T1> inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_repmat>& in);
20
23
  };
21
24