Sound files with 4 channels in MATLAB
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
high speed
el 31 de En. de 2023
Respondida: Rik
el 31 de En. de 2023
Dear,
When I try to read the handel.wav audio in MATLAB, I found that it is a mono (1 channel) sound (p=1).
Can you suggest please an audio with 4 channels. It means Its not mono or stereo. I have to fing p=4
Respuesta aceptada
Rik
el 31 de En. de 2023
S = load('handel');
new_y = repmat(S.y,1,4);
size(new_y)
Now you can no longer use the sound function, as that only supports mono and stereo.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!