码迷,mamicode.com
首页 > 其他好文 > 详细

求向量间的点积

时间:2018-08-25 15:34:19      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:roman   ble   push   fir   template   temp   class   cout   ++   

#include <iostream>
#include <vector>
#include <numeric>

int main() {
  double a[]={1, 3, 5.4};
  double b[]={1, 5, 7};

  std::vector<double> v_a, v_b;

  for(size_t i=0;i<sizeof(a)/sizeof(a[0]);++i) {
    v_a.push_back(a[i]);
    v_b.push_back(b[i]);
  }

  std::cout<<"inner product: "<<inner_product(v_a.begin(), v_a.end(), v_b.begin(), 0.0)<<std::endl;

  return 0;
}

inner_product()算法定义在名字空间std里,由<numeric>给出:

template <class In, class In2, class T>
T inner_product(In first, In last, In2 first2, T init) {
  while(first != last)
    init=init + *first++ * *first2++;

  return init;
}

求向量间的点积

标签:roman   ble   push   fir   template   temp   class   cout   ++   

原文地址:https://www.cnblogs.com/donggongdechen/p/9534183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!