Write this without a for loop?
Show older comments
for c= delaySamples+1:length(audioVec)
EchoVec(c)=audioVec(c)+z(c-(delaySamples)*EchoGain);
end
4 Comments
Andrei Bobrov
on 3 Mar 2019
Edited: Andrei Bobrov
on 3 Mar 2019
What is z, EchoGain?
Michelle
on 3 Mar 2019
madhan ravi
on 3 Mar 2019
Edited: madhan ravi
on 3 Mar 2019
when a third person runs your code (it is not possible to run) , nobody has the power to know what is in your computer
Walter Roberson
on 15 Nov 2020
Michelle, if you feel that the question is unclear, then as you are the person who posted the question, you should be the one who clarifies it to make it more clear.
Answers (1)
Alex Mcaulley
on 4 Mar 2019
If audioVec is a column array and you ensure that (delaySamples)*EchoGain is a valid index:
c = delaySamples+1:length(audioVec);
EchoVec(delaySamples+1:length(audioVec))=audioVec(delaySamples+1:end)+z(c-(delaySamples)*EchoGain);
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!