dear all:I have a 6* 3 matrix. I wanna choose 4rows randomly. how can I selecete all array in a rows randomly without replacement?
1 回表示 (過去 30 日間)
古いコメントを表示
for example:
A=[1 2 3;2 3 5;6 4 1;8 6 0;2 4 1;1 4 7;8 4 2];
and the answer is:
[1 2 3;6 4 1;8 6 0;8 4 2];
0 件のコメント
採用された回答
Azzi Abdelmalek
2016 年 7 月 27 日
編集済み: Azzi Abdelmalek
2016 年 7 月 27 日
A=[1 2 3;2 3 5;6 4 1;8 6 0;2 4 1;1 4 7;8 4 2]
B=A(randperm(6,4),:)
4 件のコメント
Azzi Abdelmalek
2016 年 7 月 27 日
編集済み: Azzi Abdelmalek
2016 年 7 月 27 日
idx=sort(randperm(6,4))
B=A(idx,:)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!