Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dot.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__FUNCTIONS__DOT_HPP
2 #define STAN__MATH__FUNCTIONS__DOT_HPP
3 
4 #include <vector>
5 #include <cstddef>
6 
7 namespace stan {
8  namespace math {
9 
10  // x' * y
11  inline double dot(const std::vector<double>& x,
12  const std::vector<double>& y) {
13  double sum = 0.0;
14  for (size_t i = 0; i < x.size(); ++i)
15  sum += x[i] * y[i];
16  return sum;
17  }
18 
19  }
20 }
21 
22 #endif
double dot(const std::vector< double > &x, const std::vector< double > &y)
Definition: dot.hpp:11
double sum(std::vector< double > &x)
Definition: sum.hpp:10

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