Stan Math Library  2.8.0
reverse mode automatic differentiation
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Groups
scaled_add.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_ARR_FUN_SCALED_ADD_HPP
2 #define STAN_MATH_PRIM_ARR_FUN_SCALED_ADD_HPP
3 
4 #include <vector>
5 #include <cstddef>
6 
7 namespace stan {
8  namespace math {
9 
10  // x <- x + lambda * y
11  inline void scaled_add(std::vector<double>& x,
12  const std::vector<double>& y,
13  const double lambda) {
14  for (size_t i = 0; i < x.size(); ++i)
15  x[i] += lambda * y[i];
16  }
17 
18  }
19 }
20 
21 #endif
void scaled_add(std::vector< double > &x, const std::vector< double > &y, const double lambda)
Definition: scaled_add.hpp:11

     [ Stan Home Page ] © 2011–2015, Stan Development Team.