Info
この質問は閉じられています。 編集または回答するには再度開いてください。
could anyone help me how to run the line without using randsample
1 回表示 (過去 30 日間)
古いコメントを表示
could anyone help me how to run the line without using randsample rows=unused_rows(randsample(length(unused_rows),N_UE_rows))
0 件のコメント
回答 (2 件)
Image Analyst
2018 年 4 月 13 日
Try randperm().
2 件のコメント
Walter Roberson
2018 年 4 月 16 日
In the output you show, the number of rows is the same each time, 2 rows each time.
Walter Roberson
2018 年 4 月 16 日
rows = unused_rows(randperm(length(unused_rows),N_UE_rows))
3 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!