Does anyone know how to plot 4 different bar graphs on 1 figure? mine erased one bar, can you advice?
    조회 수: 7 (최근 30일)
  
       이전 댓글 표시
    
Hi , I have a question on how to plot 4 different bar graphs on 1 figure
댓글 수: 1
채택된 답변
  Duijnhouwer
      
 2020년 6월 30일
        
      편집: Duijnhouwer
      
 2020년 6월 30일
  
      your values aren't stacked, they are simply plot on top of each other. The cyan values must be to low and don't stick out above the rest, they are occluded.
Plot the stacked bars in one go by making a single matrix of volstrFX and your other Y-variables as in the example in the bar documentation which plots 4 bars with 3 components each.
y = [2 2 3; 2 5 6; 2 8 9; 2 11 12]; % single matrix
bar(y,'stacked')
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

