Can't Run ICA EEGLab
조회 수: 13 (최근 30일)
이전 댓글 표시
Hello everyone!
We have troubles running the ICA. The following error occurs:
Error using sqrtm (line 35)
Expected input to be finite.
Error in runica (line 749)
sphere = 2.0*inv(sqrtm(double(cov(data')))); % find the "sphering" matrix = spher()
Error in pop_runica (line 399)
[EEG.icaweights,EEG.icasphere] = runica( tmpdata, 'lrate', 0.001, g.options{:} );
Visual inspection did not show any abonormalities in that file and the rest of the files are running fine! What could be the issue here?
Any info will be greatly appreciated! Thanks in advance!
댓글 수: 0
답변 (1개)
Arnaud Delorme
2019년 5월 1일
Dear Alina,
This might be because you have linear dependencies in your input data. Could you try something like
[EEG.icaweights,EEG.icasphere] = runica( rand(20,10000), 'lrate', 0.001);
Best wishes,
Arno
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!