I want to use fonction (find) to return many values,but why he just returns the least value ? thank you
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
d={ 'a12' ;'a15';'a16';'a14';'a13';'a11'}; H={ 'a11';'a13';'a12' ;'a15';'a16';'a14';'a13'} ; for i=1:1:7 c=find(strcmp(d,H(i)));
end
Antworten (1)
Julia
am 1 Okt. 2014
1 Stimme
Hi,
c is overwritten in each loop iteration.
Define c as a matrix and you can store each result in a line of this matrix.
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!