Is Conv2 based on direct convolution?
Ältere Kommentare anzeigen
Is the conv2 function in Matlab 2023a, in particular the way it operates on 1d vectors, based on direct convolution or fft? I understand that you do not want to share all details on how this function is implemented, but for making use of this function in a scientific work where round-off errors and computational cost enter, it would be good to state with confidence that the method is either direct-based or fft-based.
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 4 Dez. 2023
2 Stimmen
Historically, MATLAB implemented several different cases according to size and data type (and matters such as complex-valued or not.) The general case was done by direct convolution -- but possibly by calls into high speed libraries. The special cases involved decomposition into kernels and some kind of transform.
The source code for the direct convolution used to be visible. The decomposition etc., was something I do not recall ever seeing the source code for (that is, it might have been present in MATLAB source form in sufficiently old versions in the time before I thought to look for it.)
2 Kommentare
Walter Roberson
am 4 Dez. 2023
Note: historically, conv2() was implemented as a series of calls to conv() with transposes between.
Håkon Hoel
am 5 Dez. 2023
Bearbeitet: Håkon Hoel
am 5 Dez. 2023
Kategorien
Mehr zu Fourier Analysis and Filtering finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
