In a loop: Operands to the || and && operators must be convertible to logical scalar values
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi! I need to analyze some EEGs comparing all the EEGs between the files called CSC14 and CSC24 to one called CSC1. So inside the loop of the analysis I've inserted this one:
for fl=1:length(filenames) filename = filenames{fl}; tetname=filename(regexp(filename,'\d')); %extracts the tetrode number from the file name tetnum=str2double(tetname); if tetnum<14 tetnum>24;
continue;
end
But for some reasons I get this error:
Operands to the || and && operators must be convertible to logical scalar values
How can I solve it? Thanks a lot.
댓글 수: 0
채택된 답변
José-Luis
2014년 6월 23일
if tetnum<14 tetnum>24
I assume you meant:
if (tetnum <14 || tetnum>24)
or something similar
추가 답변 (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!