making a matrice with conditions

1 回表示 (過去 30 日間)
Jens Petit-jean
Jens Petit-jean 2020 年 11 月 14 日
コメント済み: Jens Petit-jean 2020 年 11 月 14 日
Hello,
I have a column variable with 20 random numbers between 0 and 19. How do I add +2 to all numbers but the numbers can be maximum 20?
Thanks in advance

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 11 月 14 日
編集済み: Ameer Hamza 2020 年 11 月 14 日
You can use min()
x = randi([0 19], 1, 20);
y = min(x+2, 20);
  3 件のコメント
John D'Errico
John D'Errico 2020 年 11 月 14 日
You use min, because you want MATLAB to take the SMALLER of x+2 and 20. Ergo, min.
Jens Petit-jean
Jens Petit-jean 2020 年 11 月 14 日
ah thanks!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by