random numbers can be divided b
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
fatima alansari
am 15 Jun. 2019
Beantwortet: Star Strider
am 15 Jun. 2019
hello,
how can i generate random numbers within a range that all generated numbers can be divided by 5??
meaning:
random number = r
r%5 = 0
regards
0 Kommentare
Akzeptierte Antwort
Star Strider
am 15 Jun. 2019
Try this:
r5 = randi(10,1,20)*5; % Creates 20 Random Integers From 5 To 50, All Of Which Can Be Divided Evenly By 5
Test = rem(r5,5)
The ‘Test’ vector will have elements only equal to 0.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Random Number Generation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!