vector repetition number counting
Ältere Kommentare anzeigen
Hi,I have this vector,x=[2 4 4 1 1].I want the result to be:
1 4
2 1
4 2
4 3
1 5
I tried this small program but it skips the last row in the desired result.Could you find the mistake
d=[];
>> for i=1:4
for j=i+1:5
c=[];
if w(j)== w(i)
c=[c w(j) j];
else
c=[c w(i) i];
end
d=[d;c];
end
end
b=unique(d,'rows')
4 Kommentare
Azzi Abdelmalek
am 6 Apr. 2014
What your code is doing?
Azzi Abdelmalek
am 6 Apr. 2014
Post the expected result
yousef Yousef
am 7 Apr. 2014
Azzi Abdelmalek
am 7 Apr. 2014
Ok, then what is the result for your example, I'm not asking what the result is explaining, just post the result.
Antworten (1)
yousef Yousef
am 6 Apr. 2014
0 Stimmen
2 Kommentare
Azzi Abdelmalek
am 6 Apr. 2014
Bearbeitet: Azzi Abdelmalek
am 6 Apr. 2014
Yousef don't use an answer section to add a comment. Just click on comment on this answer
yousef Yousef
am 7 Apr. 2014
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!