Randi except one variable

7 ビュー (過去 30 日間)
Alice Amitrano
Alice Amitrano 2019 年 3 月 18 日
コメント済み: Walter Roberson 2021 年 6 月 18 日
My randi matrix can have random values except one value, how do I generate it?
  1 件のコメント
Kevin Phung
Kevin Phung 2019 年 3 月 18 日
which value? are you talking about a particular index? and what would that value be?

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

回答 (2 件)

Kevin Phung
Kevin Phung 2019 年 3 月 18 日
I would suggest generating a mxn randi matrix, and just changing the one index to whatever value you wanted it to be.

Walter Roberson
Walter Roberson 2019 年 3 月 18 日
Guessing that you mean that you want to randi() over a range of integer values but that there is a particular value that should never be generated, then:
valid_vals = setdiff(low_value:high_value, values_to_exclude);
result = valid_vals( randi(length(valid_vals), number_of_rows, number_of_columns) );
  2 件のコメント
Akana Juliet
Akana Juliet 2021 年 6 月 18 日
@Walter Roberson Hi! for "values_to_exclude" how do you include multiple integers?
Walter Roberson
Walter Roberson 2021 年 6 月 18 日
values_to_exclude = [3, 8, -5:-2]
just create a list.

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

カテゴリ

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