I want to illustrate the ideal sampling of a signal by a dirac comb. Mathematically it is just the multiplication of the signal with a dirac comb. Therefore I'd like to use the DiracComb function. But I don't understand how to use the DiracComb to evaluate the sampled signal. Can someone give me an example?
Asked
Active
Viewed 583 times
Integrate[Exp[-t^2] DiracComb[t], {t, 0, 10}]? – Michael E2 Sep 27 '16 at 14:07DiscretePlot[signal[t], {t, 0, 10}]? – Michael E2 Sep 27 '16 at 15:32Table[{t, signal[t]}, {t, 0, 10}]? (Visualize withListPlot[].) – Michael E2 Sep 27 '16 at 15:54