What to use instead of simple function?
Show older comments
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
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.
1 Comment
LILIANA FLOREA
on 29 Dec 2019
Categories
Find more on Octave in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!