how to create two bell shape curves
    5 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
with the areas under these curves equal to 1, the same mean but different standard deviations. Thanks!
0 Kommentare
Akzeptierte Antwort
  Wayne King
    
      
 am 24 Apr. 2013
        
      Bearbeitet: Wayne King
    
      
 am 24 Apr. 2013
  
      Do you have the Statistics Toolbox?
   x = -10:0.01:10;
   y = normpdf(x,0,1);
   y1 = normpdf(x,0,sqrt(2));
If you do not have the Statistics Toolbox, you can just use the definition of the Gaussian
      f = @(x) 1/sqrt(2*pi)*exp(-x.^2/2);
      integral(f,-10,10)
      g = @(x) 1/sqrt(2*pi*2)*exp(-x.^2/4);
      integral(g,-10,10)
To see the curves for above:
      fcurv = 1/sqrt(2*pi)*exp(-x.^2/2);
      gcurv = 1/sqrt(2*pi*2)*exp(-x.^2/4);
      plot(x,fcurv); hold on;
      plot(x,gcurv,'r')
0 Kommentare
Weitere Antworten (2)
  Wayne King
    
      
 am 24 Apr. 2013
        Hi Jenka, you cannot just do sum(y), you are forgetting about the very important dx in the integral
   x = -10:0.01:10;
   y = normpdf(x,0,1);
   y1 = normpdf(x,0,sqrt(2));
   dx = mean(diff(x));
   sum(y*dx)
   sum(y1*dx)
Siehe auch
Kategorien
				Mehr zu Linear and Nonlinear Regression finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

