Creating Histogram using .mat file
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello,
I am trying to create a histogram. I used a .mat file to create a 1x5000 structure. I am trying to plot only 1000 out of the 5000, so I call 'a' and set the length to 1000 in a for loop, but it says it is only plotting one data point instead of them all. Any idea what I am doing wrong? Thanks!
댓글 수: 2
Stephen23
2020년 8월 18일
1000 is a scalar number, so length(1000) is one, so your loop will iterate exactly once.
채택된 답변
Cris LaPierre
2020년 8월 18일
I suspect your don't really want to create 1000 histograms. You don't need a for loop.
Try
histogram([a(1:1000).time])
댓글 수: 7
Cris LaPierre
2020년 8월 18일
I think you'd have to do it like this:
histogram([a(1:1000).time]/1e3)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!