Sound with filters
Mostrar comentarios más antiguos
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??
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Audio and Video Data en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!