Stan Math Library  2.9.0
reverse mode automatic differentiation
sub.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_ARR_FUN_SUB_HPP
2 #define STAN_MATH_PRIM_ARR_FUN_SUB_HPP
3 
4 #include <vector>
5 #include <cstddef>
6 
7 namespace stan {
8  namespace math {
9 
10  inline void sub(std::vector<double>& x, std::vector<double>& y,
11  std::vector<double>& result) {
12  result.resize(x.size());
13  for (size_t i = 0; i < x.size(); ++i)
14  result[i] = x[i] - y[i];
15  }
16 
17  }
18 }
19 
20 #endif
void sub(std::vector< double > &x, std::vector< double > &y, std::vector< double > &result)
Definition: sub.hpp:10

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