MTL 向量点积 示例

此博客给出一段代码,通过包含多个头文件,定义两个向量 x 和 y,计算它们的点积。若点积为 0,则判定两向量正交,否则输出点积值,展示了向量正交性的判断方法。
#include "mtl/mtl.h"
#include "mtl/utils.h"
#include "mtl/linalg_vec.h"


/*

  Sample Output


  [1,2,3,]
  [3,0,-1,]
  Vectors x and y are orthogonal.

  */

using namespace mtl;
using namespace std;

int
main()
{
  //begin
  const int N = 3;
  double dx[] = { 1, 2, 3};
  double dy[] = { 3, 0, -1};
  typedef external_vec<double> Vec;
  Vec x(dx,N), y(dy,N);

  print_vector(x);
  print_vector(y);

  double dotprd = dot(x, y);

  if (dotprd == 0)
    cout << "Vectors x and y are orthogonal." << endl;
  else
    cout << "dot(x,y) = " << dotprd << endl;
  //end

  return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值