present 2 histograms in the same X axis values
    10 views (last 30 days)
  
       Show older comments
    
Hi,
I'm trying to  plot 2 histograms in the same x axis. they suppose to have common peaks and I'd like to present them at the same scale so the peaks will overlap. is theres a way to do it?
this is the result I want to achive, but in here I used histcount and it made some other troubles.

5 Comments
Answers (1)
  sani
 on 26 Mar 2020
        
      Edited: Adam Danz
    
      
 on 27 Mar 2020
  
      
      6 Comments
  Akira Agata
    
      
 on 27 Mar 2020
				
      Edited: Akira Agata
    
      
 on 27 Mar 2020
  
			It's not clear for me what should be done.
Previously, you said that "need both of the histograms to contain the same number of bins and that the peaks but when I wried to set the bins number I got a mess". So I adjusted edge resolution ( = bin width) and (I think) achieved "both of the histograms to contain the same number of bins" avoiding to "got a mess (figure)".
Or, you mean you want plot only details of the histogram around Energy of ~500 [keV] ?
  Adam Danz
    
      
 on 27 Mar 2020
				I'm also struggling a bit to understand the end goal but from what I understand, you have two data sets, one with n values and the other with m values (n ~= m) and you'd like the histogram bins to match.  Is that correct?
If so, try this:
combinedData = [data1(:); data2(:)];
edges = linspace(min(combinedData), max(combinedData), 20);  % the 20 is the number of bins
histogram(data1, edges); 
hold on
histogram(data2, edges); 
See Also
Categories
				Find more on Data Distribution Plots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





