making a matrice with conditions
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
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
2020 年 11 月 14 日
You use min, because you want MATLAB to take the SMALLER of x+2 and 20. Ergo, min.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!