How to get a bar plot with unequal bin intervals?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How can I show the following bars (bar_heights) with unequal bin intervals (bin_edges)?
bin_edges = [0 5; 
        5 20;
        20 100];
bar_heights = [20;10;30];
bar(bar_heights)
Basically, I would like to see the bar with height 20 starting at xtick 0 and ending at xtick 5, then the bar with height 10 starting at xtick 5 and ending at xtick 20, and the bar with height 30 from xtick 20 to xtick 100.
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Graph and Network Algorithms in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




