how to filter EEG excel data(2562*11) using matlab.
1 次查看(过去 30 天)
显示 更早的评论
I have a excel EEG data sets.how an i filter(butterworth or chebsheborelliptic) it using matlab.How to use for loop to select specific coloum
0 个评论
回答(2 个)
Rohan Kale
2017-8-5
There is no need to use any for loops. Just use colon operator to extract a particular column from the matrix (formed after importing data from excel). Later, use that column as an input to the filter.
0 个评论
Jan
2017-8-5
data = rand(2562, 11);
[b, a] = butter(8, 0.4);
data(:, 3) = filter(b, a, data(:, 3));
data(:, 6:8) = filter(b, a, data(:, 6:8));
What exactly is the problem?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 EEG/MEG/ECoG 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!