Randi except one variable
30 次查看(过去 30 天)
显示 更早的评论
My randi matrix can have random values except one value, how do I generate it?
1 个评论
Kevin Phung
2019-3-18
which value? are you talking about a particular index? and what would that value be?
回答(2 个)
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.
0 个评论
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) );
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!