what is your idea to solve this?

2 次查看(过去 30 天)
i have this two tables :
and i want to extract from them this table
i use this code :
for Q=1:length(querymdr)
for k=2:length(text)
if alltext{Q,1}==textmdr{k,1}
alltext = [alltext{text(k),6}];
elseif alltext{Q,1}~=textmdr{k,1}
alltext{Q+1,Q} = [text(k+1,:)]
end
but it didn't work...
it gives me error : Index exceeds matrix dimensions.
Error in data2002New (line 51) alltext{Q+1,Q} = [text(k+1,:)]
any help please?

采纳的回答

Fiction
Fiction 2015-5-15
I think you should use curly brackets '{ }' to refer to the content of the cell. Like in text{....}; if you use () like in text(k+1,:) you will get all the cells in that row. Does that helps?

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by