How can we plot a random number ina bar graph
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How we plot random 20000number between -5 to 10 in bar graph.
0 commentaires
Réponses (1)
Walter Roberson
le 4 Oct 2020
r = rand(1,20000) * 15 - 5; %random -5 exclusive to +10 exclusive
bar(r)
This assumes you are looking for continuous numbers. If you are looking for integers, then use randi() to generate the numbers.
0 commentaires
Voir également
Catégories
En savoir plus sur Bar Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!