Error when running a script: 'Index exceeds matrix dimensions.' Help
조회 수: 1 (최근 30일)
이전 댓글 표시
I've been given a script to run to merge EEG and psychophysics test files and am having some difficulty running it. Part of the way through the script a new variable ('MatchedEEG') is created from an existing matrix, containing all EEG traces up until a given time point (Endidx):
MatchedEEG = EEGtraces (:,1:Endidx)
I receive an error saying: 'Index exceeds matrix dimensions.' How can the index exceed the matrix dimensions if no pre-determined matrix dimensions are specified for 'MatchedEEG'? Help.
댓글 수: 0
채택된 답변
Adam
2015년 4월 2일
The index 'Endidx' presumably exceeds the size of the 2nd dimension of EEGtraces. It is indexing into that matrix that is causing teh error, not the one you assign to.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
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!