- {} curly braces refer to the cell contents.
- () parentheses refer to the cells themselves.
Subtraction inside a cell array
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(1 个)
Stephen23
2020-10-19
编辑:Stephen23
2020-10-19
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:
2 个评论
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!