plot gaussian and standard deviation on my histogram
    9 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Fatemeh Shomal Zadeh
 el 8 de Sept. de 2020
  
    
    
    
    
    Comentada: Star Strider
      
      
 el 9 de Sept. de 2020
            Hi everyone,
I have this code and have plotted the histogram and now want to have gaussian and standard deviation.
can anyone help me please?
figure('Name','A3{1}.BMd_Img_o_part1')
edges= linspace(0,255,21);
histogram(image1, 'BinEdges',edges,'normalization','pdf')
0 comentarios
Respuesta aceptada
  Star Strider
      
      
 el 8 de Sept. de 2020
        image1 = 42*randn(1,1000)+42*3;                                     % Create Data
figure('Name','A3{1}.BMd_Img_o_part1')
edges= linspace(0,255,21);
[muHat,sgHat] = normfit(image1);
pdfplot = normpdf(edges, muHat, sgHat);
figure
histogram(image1, 'BinEdges',edges,'normalization','pdf')
hold on
plot(edges, pdfplot, '-r', 'LineWidth',2)
hold off
.
14 comentarios
Más respuestas (1)
Ver también
Categorías
				Más información sobre Histograms en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

