我正在使用 Eigen,我有一个矩阵:
MatrixXi x = MatrixXi::Random(5);
我想使用随机绘制的排列随机排列行和列(行和列只有一个排列),即如果我有一个发送索引 [0,1,2,3,4] 的排列 -> [3,4,2,1,0] 比我想用相同的排列重新排序行和列。
第 1 部分:我在网上找不到 PermutationMatrix 的示例,并且无法弄清楚语法。
第 2 部分:如何获得一个随机排列的索引向量以传递给它?也许std :: random_shuffle?
更新:
这是一种(可能效率低下)获得一组打乱索引的方法:
std::vector<int> perm;
for (int i=0; i<5; ++i) {
perm.push_back(i);
}
std::random_shuffle(perm.begin(), perm.end());
所以现在的问题是我如何重新排序我的矩阵 x 以便它的行/列按 perm 排序?
更新2:
越来越近,这可行(想法来源:cplusplus.com):
int myrandom (int i) { return std::rand()%i;}
PermutationMatrix<Dynamic,Dynamic> perm(5);
perm.setIdentity();
for (int i=dim-1; i>0; --i) {
swap (perm.indices()[i],perm.indices()[myrandom(i+1)]);
}
cout << "original x" << x << endl << endl;
cout << "permuted x" << perm * x * perm << endl << endl;
任何人都知道如何用 random_shuffle 做到这一点?(请参阅下面不起作用的尝试。)
(奖励:如果 perm 是一个 1e4 x 1e4 矩阵,关于 perm * x * perm 是否有效的任何想法?)