looping through total size and calculating standard deviation of each frame.
2 ビュー (過去 30 日間)
古いコメントを表示
I want my loop to run from 1 to length of x. x contain total 67000 frames and I want that my code loop through each frame at a time and calculate the standard deviation of each frame from 1 to length of x.
folder = fullfile('C:\Users\vvb\Documents\datset\local');
ADS = audioDatastore(folder);
x=read(ADS);
[row,c]=size(x);
for j=1:x
totalframes(j)=j;
local=totalframes;
stdX=std(local);
end
So basically 'x' contains total 67000 frames and I want to loop through each frame of 'x' and calculate the standard deviation of each frame. I have written the above code but its not working.
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 9 月 12 日
I don't have the audio toolbox, but something like this will work
folder = fullfile('C:\Users\vvb\Documents\datset\local');
ADS = audioDatastore(folder);
stdX = [];
while hasdata(ADS)
x = read(ADS);
stdX(end+1) = std(x);
end
2 件のコメント
Ameer Hamza
2020 年 9 月 12 日
This code runs on all the frames in ADS. Is there any error? If you want to store all the signals too then try something like this
folder = fullfile('C:\Users\vvb\Documents\datset\local');
ADS = audioDatastore(folder);
x = {};
stdX = [];
while hasdata(ADS)
x{end+1} = read(ADS);
stdX(end+1) = std(x);
end
参考
カテゴリ
Help Center および File Exchange で Audio Processing Algorithm Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!