trying to do 1D convolution without using inbuilt functions.
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
satnam singh
am 2 Mai 2016
Beantwortet: Sk Group
am 25 Okt. 2021
Hi, I used the following code to do 1D convolution. But getting error:>>
a=[1 2 3];
b=[4 5 6];
K= length(a)+length(b)-1
for i=1:k
K_out(i)= 0
for j=1:length(b)
K_out(i)= K_out(i)+ a(i-j)*b(j)
end
end
The error is: Undefined function or variable 'k'.
But I already defined K.
Thanks
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Sk Group
am 25 Okt. 2021
Convolution without conv function in MATLAB | Complete CODE | Explanation | Example And Output
For complete detailed post visit: https://www.swebllc.com/convolution-without-function-in-matlab/
0 Kommentare
Siehe auch
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
