Filter löschen
Filter löschen

what is your idea to solve this?

2 Ansichten (letzte 30 Tage)
Amr Hashem
Amr Hashem am 15 Mai 2015
Beantwortet: Fiction am 15 Mai 2015
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?

Akzeptierte Antwort

Fiction
Fiction am 15 Mai 2015
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?

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by