Subtraction inside a cell array
이전 댓글 표시
Hello,
My data consists of several long EEG signals, and i would like to split these signal up into even smaller epochs.
My problem is that matlab is angry with me for trying to subtract inside a cell array.
I've tried the following code:
for b=1:20
for m = 1:20
rawData.sub1.run.epochs.run{b}.movement{m} = cz{b}(:,locs(m)-2*fs:locs(m)+2*fs);
end
end
As well as the same with cellfun
rawData.sub1.run.epochs.run{b}.movement{m} = cellfun(locs(m)-2*fs:locs(m)+2*fs,cz{b});
However, both methods give the error message
"Undefined function 'minus' for input arguments of type 'cell'."
Does anyone have any suggestions?
Thanks in advance.
답변 (1개)
You will have to get the numeric data out of the cell array before performing any numeric operations on it.
Although you did not actually given enough information in your question (or upload the relevant data) I am guessing that locs is a cell array containing numeric arrays, in which case you need to use curly braces to access its contents:
locs{m}
The difference is very simple:
- {} curly braces refer to the cell contents.
- () parentheses refer to the cells themselves.
댓글 수: 2
Tim Johansson
2020년 10월 19일
편집: Walter Roberson
2022년 10월 25일
Stephen23
2020년 10월 19일
@Tim Johansson: if my answer resolved your original question then please accept it.
'i am now getting a new error "First input must be a function handle." '
If you post the entire error message (this means all of the red text) then we could help you with that too.
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!