how to filter EEG excel data(2562*11) using matlab.
조회 수: 3 (최근 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!