How would I go about writing this equation in matlabs?

1 view (last 30 days)
I am relatively new to matlabs, currently using it for a course in college.
I need help in understanding how to write this equation in matlabs.
Image included.

Accepted Answer

Star Strider
Star Strider on 18 Sep 2021
There are several options, depending on what you want to do.
syms x
p(x) = 1/(2*sqrt(sym(pi)))*exp(-(x-5)^2/4)
p(x) = 
figure
fplot(p, [-5 15])
Please explore MATLAB Onramp to understand how to use MATLAB effectively to do what you want.
.

More Answers (0)

Categories

Find more on Function Creation in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!