Eigen 数学库中向量幅度的成员函数
我一直在尝试找到一种计算特征向量大小的方法,但没能成功。有人可以为我提供函数名称,如果它不存在吗?
我可以创建一个全局方法来完成这项工作,但我不喜欢这样做。
I have been trying to find a method that computes the magnitude of a vector in Eigen and I was not able to. Can somebody provide me with the function name of just if it doesn't exist?
I can create a global method that does the job but I prefer not to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 .norm()。请注意,还有 .squaredNorm()、.normalized() 和 .normalize()。
You want .norm(). Note that there's also .squaredNorm(), .normalized() and .normalize().
您正在寻找的方法是
.norm()
。The method you're looking for is
.norm()
.