vector repetition number counting

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 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 6 日
What your code is doing?
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 6 日
Post the expected result
yousef Yousef
yousef Yousef 2014 年 4 月 7 日
the result explains that 1 is repeated 2 times in the positions 4&5 also 2 is not repeated.the position is at 1 4 is repeated 2 times in postions 2&3
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 7 日
Ok, then what is the result for your example, I'm not asking what the result is explaining, just post the result.

サインインしてコメントする。

回答 (1 件)

yousef Yousef
yousef Yousef 2014 年 4 月 6 日

0 投票

the result explains that 1 is repeated 2 times in the positions 4&5 also 2 is not repeated.the position is at 1 4 is repeated 2 times in postions 2&3

2 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 6 日
編集済み: Azzi Abdelmalek 2014 年 4 月 6 日
Yousef don't use an answer section to add a comment. Just click on comment on this answer
yousef Yousef
yousef Yousef 2014 年 4 月 7 日
the result explains that 1 is repeated 2 times in the positions 4&5 also 2 is not repeated.the position is at 1 4 is repeated 2 times in postions 2&3

サインインしてコメントする。

カテゴリ

製品

タグ

質問済み:

2014 年 4 月 6 日

コメント済み:

2014 年 4 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by