difference between convolution code and 'conv' function

3 vues (au cours des 30 derniers jours)
hi guys, can anyone tell me what is the different between using convolution code and the 'conv' function to find out system response of convolution computation in signal processing?

Réponse acceptée

John D'Errico
John D'Errico le 16 Sep 2019
No difference at all, IF you are asking about the difference between a hand written code to do a numerical convolution computation. The two would be the same.
Caveat 1: That is true, except for floating point issues, since we do not know the exact sequence of floating point operations that will be performed. This ensures that as long as floating point numbers are involved, there will probably be errors in the least significant bits if the results. If the arguments are all sufficiently small integers to avoid a FLINT overflow, then the result will always be exact.
Caveat 2: If you are asking about the difference between conv and an analytical convolution of two functions, then of course a numerical computation will only be an approximation to an analytical result! As the number of points in the numerical convolution increases in the limit towards infinity, so that both arguments asymptotically approach the symbolic functions they are sampled from, then the differences between the numerical convolution and the analytical result it approximates will decrease towards zero.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by