I am new in Mathematica so I hope I'm doing this right..
Currently, I am trying to take the Fourier transform(characteristic function) of a normal distribution and then plot it. However, the plot function does not draw any graph. What am I doing wrong??
My code is as below.
graph1 := NormalDistribution[3, 1]
Plot[{PDF[graph1, x]}, {x, 0, 16}]
(The output shows a normal distribution graph that I wanted)
Plot[{CharacteristicFunction[graph1, t]}, {t, 0, 16}]
(The output shows an x-axis and a y-axis but no graph is drawn)
