Sound files with 4 channels in MATLAB

조회 수: 1 (최근 30일)
high speed
high speed 2023년 1월 31일
답변: Rik 2023년 1월 31일
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
  댓글 수: 3
high speed
high speed 2023년 1월 31일
@Rik How can I replicate it in MATLAB please
Star Strider
Star Strider 2023년 1월 31일
Perhaps this —
v1 = rand(5,1)
v1 = 5×1
0.0323 0.5666 0.5766 0.9202 0.0240
v4 = v1 * ones(1,4)
v4 = 5×4
0.0323 0.0323 0.0323 0.0323 0.5666 0.5666 0.5666 0.5666 0.5766 0.5766 0.5766 0.5766 0.9202 0.9202 0.9202 0.9202 0.0240 0.0240 0.0240 0.0240
.

댓글을 달려면 로그인하십시오.

채택된 답변

Rik
Rik 2023년 1월 31일
S = load('handel');
new_y = repmat(S.y,1,4);
size(new_y)
ans = 1×2
73113 4
Now you can no longer use the sound function, as that only supports mono and stereo.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by