if the cell duplicated put last column in the previous row
Mostrar comentarios más antiguos
i run this code but it gives an error:
j=1;
rowsize=length(defs);
data1=cell([rowsize,C2]); % create array with size [R,C]
for j=1:length(defs) % loop over Mdr of defib
querymdr=data2{j,1}; % save MDR numbers
y=alldata{:,1};
idx= find(y==querymdr); % find in alldata MDR equals def
record=[alldata{idx(1),:}]; % copy the 1st search result
for k=2:length(idx)% over all MDR number of text
record = [record,(alldata(idx(k),6))];
end
data1(j,:)=record; % put combined record into result table
end
what is the wrong thing ?
5 comentarios
Walter Roberson
el 12 de Mayo de 2015
What is the error message and which line of code does it appear on?
Jan
el 13 de Mayo de 2015
@amr: Without seeing the error message and without your input data there is no chance to find the problem of your code.
Amr Hashem
el 14 de Mayo de 2015
Editada: Amr Hashem
el 14 de Mayo de 2015
Walter Roberson
el 14 de Mayo de 2015
What is class(y) and size(y) when the problem occurs?
Also your code does not account for the possibility of there being no match.
Amr Hashem
el 14 de Mayo de 2015
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!