Borrar filtros
Borrar filtros

How to convert multiple .mat into .wav ?

2 visualizaciones (últimos 30 días)
Hamzah amee
Hamzah amee el 2 de Abr. de 2014
Comentada: Hamzah amee el 3 de Abr. de 2014
Hi I have (.mat) file containing 19 cropped data as shown in the figure. How can I convert it to (.wav) ?I dont want to convert it one by one.I got this code from a friend, but the (.wav) are empty. Also, the .wav produced are not the same count as the original cropped(I cropped 19 it gave me 25 (.wav)). If the sampling frequency is the issue, I followed the Fs of the original .wav(before I cropped). The code is:
fs = 44100 %change to your sample rate
load('result.mat');
data = whos;
for i = 1:length(data)
wavwrite(data(i).name,fs,num2str(i));
end
Thanks a lot, Hope somebody will help.

Respuestas (1)

Walter Roberson
Walter Roberson el 2 de Abr. de 2014
W = load('result.mat');
fn = fieldnames(W);
for i = 1 : length(fn)
wavwrite( W.fn{K}, fs, num2str(i));
end
  1 comentario
Hamzah amee
Hamzah amee el 3 de Abr. de 2014
Hi @Walter Roberson, Thanks..however I got this error: Undefined function or variable 'K'.
Error in convert_to_wav (line 4) wavwrite( W.fn{K}, fs, num2str(i));
Tq

Iniciar sesión para comentar.

Categorías

Más información sobre Predictive Maintenance Toolbox en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by