select random values from vector
3 ビュー (過去 30 日間)
古いコメントを表示
I have a vector:
[R1,R2]= Where R1 = 7 3 3 5 3
R2 = 5 5 5 4 6
I want to randomly select one of these pairs, like [7,5]. How I can do this in Matlab?
0 件のコメント
回答 (2 件)
Azzi Abdelmalek
2015 年 2 月 4 日
idx1=randi(numel(R1))
idx2=randi(numel(R2))
out=[R1(idx1) R2(idx2)]
0 件のコメント
Stalin Samuel
2015 年 2 月 4 日
c1 = randi([1 numel(R1)],1,1)
c2 = randi([1 numel(R2)],1,1)
result = [R1(c1) R2(c2)]
or
result = [R1(c1) R2(c1)]
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!