Hi. . I have datas in .csv file and i want to plot spectrogram of the data. Total 6000 data samples for 6 channel data. I want to individually plot the all the datas. i have attached the sample data file for the reference. Kindlt help to resolve.

3 次查看(过去 30 天)
Previously i tried with some other code but i couldnt resolve it.

采纳的回答

TADA
TADA 2018-12-21
编辑:TADA 2018-12-21
figure();
hold on;
data = readtable('4khz_4.csv', 'HeaderLines', 7, 'Delimiter', ',');
for i = 0:5
channel = data.(['CHANNEL' num2str(i)]);
plot(channel);
end
  7 个评论
Walter Roberson
Walter Roberson 2018-12-24
You have your own file D:\spectrogram.m that is interfering with calling the MATLAB function. When you do
which -all spectrogram
you should see just toolbox/signal/signal/spectrogram.m under your MATLAB installation directory.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Time-Frequency Analysis 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by