How can we plot a random number ina bar graph
조회 수: 5 (최근 30일)
이전 댓글 표시
How we plot random 20000number between -5 to 10 in bar graph.
댓글 수: 0
답변 (1개)
Walter Roberson
2020년 10월 4일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Bar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!