split an audio file
이전 댓글 표시
Hi everyone, i need your help. I'm a newbie in using matlab, so could you help me code this exercise : " Using reshape to split a file wav into some small files."
Thank you very much if you help me .
답변 (1개)
Star Strider
2021년 10월 20일
1 개 추천
It only operates on one vector at a time, and returns a matrix of column vectors (regardless of the original vector orientation), so for a stereo signal, it will be necessary to do this for each column (channel) separately.
.
댓글 수: 4
Thanh Vu Phuong
2021년 10월 21일
The ‘some small files’ requirement is a bit ambiguous.
Choose an integral divisor of the number of rows in the file, then choose that number to be the second argument to reshape (the first is the matrix itself), then go for it!
wavmatrix = [1:20; 21:40]';
newmatrix = reshape(wavmatrix, 10, [])
The first and second columns are the left channel, and the third and fourth columns are the right channel.
I leave the rest to you!
.
Thanh Vu Phuong
2021년 10월 21일
Star Strider
2021년 10월 21일
My pleasure!
.
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!