making loop mat lab

1 次查看(过去 30 天)
sam aldoss
sam aldoss 2018-10-8
编辑: Stephen23 2021-4-26
hello
am working no signals using the code below I want to make this code to run for more then one folder can someone help please
clc,clear ,close all
% get a section of the sound file
[x, fs] = audioread('a14.wav'); % load an audio file
x = x(:, 1); % get the first channel
N = length(x); % signal length
t = (0:N-1)'/fs; % time vector
a14 = table(t, x);
writetable(a14, 'a14.csv', 'Delimiter',',')
  1 个评论
sam aldoss
sam aldoss 2018-10-8
no its not duplicate the code that I got it only load one file at time which good but think if you have more then 3000 file how you can run this code

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2018-10-8
编辑:Stephen23 2021-4-26
"... but think if you have more then 3000 file how you can run this code"
Start by reading the MATLAB documentation:
This example is based on the one in the help:
P = 'directory where the files are saved';
S = dir(fullfile(P,'*.wav'));
S = natsortfiles(S); % optional, see below
for k = 1:numel(S)
[x,fs] = audioread(fullfile(P,S(k).name));
... your processing
S(k).data = any array that you want to store
end
All of the data will be in the data field of the structure S:
If you want the filenames to be read in alphanumeric order then you will need to sort them. An easy way to sort filenames into alphanumeric order is to download my FEX submission natsortfiles.
  2 个评论
sam aldoss
sam aldoss 2018-10-8
hello thanks a lot for you help its load some data which seem to be useful , but in this section its shows
Brace indexing is not supported for variables of this type.
Error in test1 (line 13) [x,fs] = audioread(fullfile(D,N{k}));
Stephen23
Stephen23 2018-10-8
You need to have defined N as a cell array this:
N = {S.name};
or using natsortfiles, as I showed you. Cell arrays use brace indexing.

请先登录,再进行评论。

更多回答(1 个)

Jayant
Jayant 2018-10-8
you can try following
% get a section of the sound file
count=1;
for count=1:NumberOfFiles %% NumberOfFiles==> total number of your audio files
[x, fs] = audioread(['a' count '.wav']); % load an audio file like a1.wav, a2.wav, a3.wav...
x = x(:, 1); % get the first channel
N = length(x); % signal length
t = (0:N-1)'/fs; % time vector
a14 = table(t, x);
end
  1 个评论
sam aldoss
sam aldoss 2018-10-8
its saying Error using audioread (line 74) The filename specified was not found in the MATLAB path.

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by