What to use instead of simple function?

2 views (last 30 days)
LILIANA FLOREA
LILIANA FLOREA on 29 Dec 2019
Commented: LILIANA FLOREA on 29 Dec 2019
In a ifourier function if is used simple function, the return is correct mathematically, but if I will use simplify function is not running.
What can I use instead to be correct?
exemple:
syms a real
F = exp(-w^2/(4*a^2))
f = ifourier(F)
f = simple(f)
return
a*exp(-x^2*a^2)/pi^(1/2) .... witch is correct
but if I will use simplify is not running.
I tried this way:
syms w a real
F = exp(-w^2/(4*a^2));
ifourier(F,x)
return is exp(-a^2*x^2)/(2*pi^(1/2)*(1/(4*a^2))^(1/2))
witch is not correct mathematicaly.
Can you help me?
Thank you!

Answers (1)

David Goodmanson
David Goodmanson on 29 Dec 2019
Hi Liliana,
1/(2*pi^(1/2)*(1/(4*a^2))^(1/2))
may not be pretty, but it does equal a/sqrt(pi) so it is mathematically correct.

Products

Community Treasure Hunt

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

Start Hunting!