I'm trying to plot the output of an integral, but the plot does not show. The axes show, but not the plot itself. I have tried what I felt was a reasonable range of axes values, but the result is the same. The following is what I'm working with:
function = Exp[I k x] C Exp[-a x^2];
Integrate[function, {x, -\[Infinity], \[Infinity]}]
ConditionalExpression[(C E^(-(k^2/(4 a))) Sqrt[\[Pi]])/Sqrt[a],
Re[a] > 0]
output = %;
Plot[output, {k, -10, 10}]

What is wrong here? Anyone have some suggestions on how to obtain the plot? I'm compelled to think there is some kind of 'automatic' range parameters that can be used with general plots, but I have not found anything in the Documentation center of Mathematica, nor have I found any FAQs here that I've found helpful either.
