Could anyone please help me to solve the issue in the following command line.

1 回表示 (過去 30 日間)
jaah navi
jaah navi 2021 年 11 月 9 日
回答済み: jaah navi 2021 年 11 月 9 日
When I run the following command line
randi(10,5,2)
I am getting the following result
ans =
7 4
3 5
6 8
9 8
1 7
But I want to have the result in the following manner
7 4
3 5
6 8
9 2
1 10
such that the numbers should not be repeated again. Could anyone please help me on this.

採用された回答

Stephen23
Stephen23 2021 年 11 月 9 日
M = reshape(randperm(10),5,2)
M = 5×2
7 4 6 1 10 2 3 5 8 9

その他の回答 (1 件)

jaah navi
jaah navi 2021 年 11 月 9 日
Thanks for your help.

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by