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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2013-09-29 16:03:43 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130929160343-8ed4fww4vzoq8067
Tags: 0.3.920.1-1
* New upstream release

* debian/control: Tightened Build-Depends on r-cran-rcpp to (>= 0.10.5)

Show diffs side-by-side

added added

removed removed

Lines of Context:
429
429
  inline
430
430
  static
431
431
  void
432
 
  apply( Mat<eT>& C, const TA& A, const eT alpha = eT(1), const eT beta = eT(0) )
 
432
  apply( Mat<eT>& C, const TA& A, const eT alpha = eT(1), const eT beta = eT(0), const typename arma_not_cx<eT>::result* junk = 0 )
433
433
    {
434
434
    arma_ignore(C);
435
435
    arma_ignore(A);
436
436
    arma_ignore(alpha);
437
437
    arma_ignore(beta);
 
438
    arma_ignore(junk);
438
439
    
439
440
    // herk() cannot be used by non-complex matrices
440
441