Value Storage from Cells with Matlab
이전 댓글 표시
for j=1:200
x1c{j,1}=[FM{1,j}{1,2},FM{1,j}{1,3},FM{1,j}{1,4}];
end
I have this cell and I want the extract the values with respect to a logical operation:
mn=1
for kn=1:199
for sn=1:19973
if abs((x1c{kn+1,1}(sn))-(x1c{kn,1}(sn)))>=20
extract{mn}=x1c{kn,1}(sn)
mn=mn+1;
end
end
end
I am getting the error of "Index exceeds matrix dimensions."
How can I deal with this?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!