フィルターのクリア

Error using randi Size inputs must be scalar (Matlab)

2 ビュー (過去 30 日間)
high speed
high speed 2021 年 4 月 12 日
コメント済み: Jan 2021 年 4 月 13 日
I have entries parameters A and B, and I have to obtain C with for loop, where C is the random subset of B of size Ai
I program this
for i=1:n
C=randi([0,1],B,A(i));
end
But I get the error (Error using randi ==> inputs must be scalar)
How can I fixe the problem
  1 件のコメント
Rik
Rik 2021 年 4 月 12 日
How are you making sure B and A(i) are positive scalars?

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

採用された回答

Jan
Jan 2021 年 4 月 12 日
編集済み: Jan 2021 年 4 月 12 日
"C is the random subset of B of size Ai" :
for i = 1:n
% Without repetitions:
C = B(randperm(numel(B), A(i)));
% Or with repetitions:
C = B(randi([1, numel(B)], 1, A(i)));
... use C now
end
  5 件のコメント
high speed
high speed 2021 年 4 月 13 日
@Jan Unfortunately, that's not what I want. Because I must program in a way that C is the random subset of B of size Ai. And in your example you didn't consider the size Ai
Jan
Jan 2021 年 4 月 13 日
@high speed: Sorry, what? Yes, in my example, I've used 4 to clarify what "repetition" means. You have asked for this detail. But the code in my answer does contain A(i).

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by