binning the x-axis of a plot
조회 수: 8 (최근 30일)
이전 댓글 표시
I need to create bins for the x-axis of my plot. The axis goes from 0 to 20, and I need to make bins corresponding to every .10 of a value; i.e. 5.0 to 5.10. How would I go about doing this?
댓글 수: 0
답변 (1개)
Walter Roberson
2016년 2월 9일
xbins = 0 : 0.10 : 20;
댓글 수: 4
Walter Roberson
2016년 2월 9일
xbins = 0 : 0.10 : 20;
plot(r,txx2);
set(gca, 'xtick', xbins)
But what I suspect you want is something closer to
bar(r, txx2)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!