hi, i wanna plot gaussion shape function with any arbitrrary number . how can i plot that?
    1 vue (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Mili Kian
 le 17 Août 2020
  
    
    
    
    
    Réponse apportée : Alan Stevens
      
      
 le 17 Août 2020
            hi, i wanna plot gaussion shape function with any arbitrrary number .
how can i plot that?
f(x) = a*exp(-(x-b).^2)/2*(c.^2);
0 commentaires
Réponse acceptée
  Alan Stevens
      
      
 le 17 Août 2020
        Define it as a function:
f = @(x,a,b,c) a*exp(-(x-b).^2)/(2*c^2);
then define your constants a, b and c, specify the range of values of x, call the function and plot the results.  For example
a = 1; b = 2; c = 3;
x = -2:0.1:8;
y = f(x,a,b,c);
plot(x,y)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

