Randomly assign a value to each column of a matrix

2 ビュー (過去 30 日間)
Peter Harrington
Peter Harrington 2019 年 6 月 17 日
編集済み: dpb 2019 年 6 月 18 日
I can't figure out why this code doesn't work. I would like to have one true value in each row that is randomly assigned to a column like so
[1 0 0;
0 1 0;
1 0 1;
0 0 1]
mt = 5;
npart = 3;
seqS = false(mt, npart);
t = randi([1, 3], mt, 1);
seqS(:, t) = true; %should work, why not?
Thanks in advance,
Pete

採用された回答

dpb
dpb 2019 年 6 月 18 日
Not way subscript expansion works as written...use
seqS(sub2ind(size(seqS),[1:mt].',t)) = true;
instead
  2 件のコメント
Peter Harrington
Peter Harrington 2019 年 6 月 18 日
Thanks for the help, your code works great!
dpb
dpb 2019 年 6 月 18 日
編集済み: dpb 2019 年 6 月 18 日
No problem, glad to help...it's one of those syntax things that superficially does look like should work as you expected but doesn't.
If would, go ahead and Accept answer if for no other reason to indicate to others there is a solution to the question. (And, while I never started this with the intent of garnering points, as of this instant, you'd be the one to hit the 10K mark... :) )

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by