if the cell duplicated put last column in the previous row
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 12 Mag 2015
What is the error message and which line of code does it appear on?
Jan
il 13 Mag 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
il 14 Mag 2015
Modificato: Amr Hashem
il 14 Mag 2015
Walter Roberson
il 14 Mag 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
il 14 Mag 2015
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Whos in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!