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

2 visualizaciones (últimos 30 días)
Edgar
Edgar el 29 de Abr. de 2014
Comentada: Walter Roberson el 30 de Abr. de 2014

Respuesta aceptada

Star Strider
Star Strider el 29 de Abr. de 2014
Editada: Star Strider el 29 de Abr. de 2014
You need to scale fur so that the maximum value is between [-1 +1] with wavwrite. Nice choice, BTW!
  22 comentarios
Star Strider
Star Strider el 30 de Abr. de 2014
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 el 30 de Abr. de 2014
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);

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by