Eigen
文章平均质量分 71
jaygold
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Eigen中与Matlab对应的 sort操作
#include "Eigen\Core" using namespace Eigen; template struct ColComparator { const Derived& matrix; const int row; ColComparator(const MatrixBase& m, int r) : matrix(m.derived()), row(r) {}原创 2014-02-27 14:53:11 · 3168 阅读 · 2 评论 -
通过数组创建矩阵
本来小白一个,没想写什么博客,来优快云纯粹是为了查找资料! 最近使用Eigen数学运算库才发现国内关于这个库的使用介绍比较少... 本人英语又不好...程序猿的硬伤!! 反正就是各种吭... 找了很多资料,稍微知道怎么用..写点东西算是给自己的笔记.... double dbX[9] = {1,2,3,4,5,6,7,8,9};//这里是列优先... MatrixXd T2 = Ma原创 2013-11-08 09:35:51 · 1275 阅读 · 0 评论
分享