Read wav file in hexa
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I want to read wav file in hexa, how i'm supposed to do that?
rawsignal=wavread('tes.wav','native');
above code returns me sample data in int16, can i convert it to hexa ? or even it's possible?
0 comentarios
Respuesta aceptada
per isakson
el 28 de Feb. de 2013
Try something:
>> dec2hex(int8([126:127]),2)
ans =
7E
7F
and
>> dec2hex(int16([32765:32767]),4)
ans =
7FFD
7FFE
7FFF
8 comentarios
Walter Roberson
el 28 de Feb. de 2013
I'm not sure what kind of summary you expect for characters anyhow?
The summary in the workspace browser is just a convenience and has no effect on the program.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!