How come I keep getting "Data Clipped" in my Command Window?

조회 수: 2 (최근 30일)
Edgar
Edgar 2014년 4월 29일
댓글: Walter Roberson 2014년 4월 30일

채택된 답변

Star Strider
Star Strider 2014년 4월 29일
편집: Star Strider 2014년 4월 29일
You need to scale fur so that the maximum value is between [-1 +1] with wavwrite. Nice choice, BTW!
  댓글 수: 22
Star Strider
Star Strider 2014년 4월 30일
If you save the files to a format compatible with Windows Media Player or some such, you should be able to play them through it. I don’t have access to the wavwrite documentation, so you will have to explore that to see. I remember that it was possible to save to different formats, but I don’t have recent experience with wavwrite, so I don’t remember the details. You may also have to ask Windows Media Player what it likes. Earlier versions played ‘.wav’ files.
Walter Roberson
Walter Roberson 2014년 4월 30일
1E-5 might be lower than eps(abs(fur)). Instead of
fur/max(abs(fur)+eps);
should use
fur/max(abs(fur)*(1+eps));
or alternately
fur/max(abs(fur)+eps) * (1-eps);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by