x = -5:0.1:5;

% sigmoid function
sigmoid_function = 1./(1+exp(-x));

% gaussion funcion
m=1:
sd=5;
gaussion_function = normpdf(x,m,sd);
plot(x,gaussion_function);

grid on

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: