Sound with filters
Show older comments
I have created a guitar simulator with digital sound synthesis. I have the output of 6 filters as strings of a guitar and I want to play them together just as in the filterguitar.
The filter I have used as shown below.
%creation of the filter
for u=1:umax
B= [0 b1d(u)];
A = [1 c1d(u) c0d(u)];
g=g+(fe1_mu(u)*filter(B,A,x));
end
I have 6 Gs like that and I want play them together.
Can anyone help, please??
Accepted Answer
More Answers (0)
Categories
Find more on Audio and Video Data 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!