function or algorithm to analyse signal content
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I'm trying to classify an audio signal I have by the following table which is taken from page 15 in this article
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/360730/image.jpeg)
I'm not sure how to do it using matlab. perhaps anyone could refer me to some useful functions? the code I've tried is this one which plots the signal content in time domain:
% get input paths
input = importdata('paths\input_p1.txt');
% create audio object for the algorithm
[signal, fs] = audioread(char(input(index)));
f0 = figure;
t = 0:1/fs:1-1/fs;
signal = resample(signal,1,90)';
plot(t, signal);
title('Signal Content');
And I got something that looks like `Narrowband random signal` ad shown below
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/360733/image.jpeg)
but I wasn't sure I've understood it correctly, so i'de appreciate if anyone could explain to me how exactly can I plot the signal content using matlab.
Thank you
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Audio I/O and Waveform Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!