Removing Reverse Rows in a Permutation Matrix in Matlab

I'm looking for a quick way in Matlab to do the following:
Given a permutation matrix of a vector, say [1 2 3], I would like to remove all duplicate reverse rows.
So the matrix P=perms([1 2 3])
3 2 1
3 1 2
2 3 1
2 1 3
1 3 2
1 2 3
becomes
3 2 1
3 1 2
2 3 1

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 9 月 15 日
編集済み: KALYAN ACHARJYA 2020 年 9 月 15 日

0 投票

P=perms([1 2 3]);
result=P(unique(P(:,2)),:)
result =
3 2 1
3 1 2
2 3 1

カテゴリ

ヘルプ センター および File ExchangeProgramming についてさらに検索

タグ

質問済み:

2020 年 9 月 15 日

編集済み:

2020 年 9 月 15 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by