필터 지우기
필터 지우기

I want to skip one step

조회 수: 3 (최근 30일)
yousef Yousef
yousef Yousef 2014년 5월 6일
댓글: yousef Yousef 2014년 5월 11일
Hi I have a matrix,I want the code to skip executing statements if the row is repeated. Thanks
  댓글 수: 2
the cyclist
the cyclist 2014년 5월 6일
You are expecting us to guess too many details of what you are doing, which will likely lead to us wasting a lot of our time. Please provide a small example of the code you are using, where you want the skip to be inserted.
Geoff Hayes
Geoff Hayes 2014년 5월 6일
yousef - please define what you mean by repeated. Do you mean that the current row repeats with a previous row in the matrix (so if you are considering row i then it is repeated if there is at least one row in the matrix from 1 to i-1 that is identical to row i? Or do you mean that row i is repeated in any row of the matrix from 1 to i-1 or i+1 to m (where m is the number of rows in your matrix).

댓글을 달려면 로그인하십시오.

답변 (2개)

yousef Yousef
yousef Yousef 2014년 5월 6일
Geof ,please have a look on this file. Thanks

Geoff Hayes
Geoff Hayes 2014년 5월 7일
편집: Geoff Hayes 2014년 5월 7일
yousef - please remove/delete your answer (as it isn't an answer to your question). I've attached your pdf to this one.
From the document, your xx is shown as:
xx =
1 7 0 0
2 10 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
1 7 0 0
8 0 0 0
9 0 0 0
2 10 0 0
where any element in the first column represents an index (into ww) of the first occurrence of that value in ww. Here is your ww:
ww =
6 7 5 9 8 10 6 4 2 7
From the above, we see that x(1:6,1) are unique indicating that the first six values of ww are unique. The seventh value, xx(7,1), is 1, indicating that ww(7)==ww(1). x(8:9,1) are unique to any previous value in this first column, and xx(10,1) is 2, indicating that ww(10)==ww(2).
Thus if you are iterating over the first column in xx, you know if you have a repeated value in ww (not quite the row you mentioned above) if its index value, xx(i,1) is less than i:
[m,n] = size(xx);
for i=1:m
if xx(i,1)==i
% we have not encountered this number in ww before (i.e. ww(xx(i,1)) is unique thus far)
% so do stuff
else
% xx(i,1) is less than i, so we must have encountered this index in ww already
% do nothing
continue; % not needed, but just to be clear nothing happens here
end
end
  댓글 수: 5
yousef Yousef
yousef Yousef 2014년 5월 11일
Thanks Geof,I really appreciate your contact with me,I want it to be in general form .
Your code is done based on comparing the first element of the row x(i,1)=i
what about if
xx=
1 2 3
4 5 6
1 2 3
3 2 4
1 2 3
3 2 1
1 3 2
Thanks
yousef Yousef
yousef Yousef 2014년 5월 11일
what about this one:
[~,~,A] = unique(xx,'rows','stable');
[n, bin] = histc(A, unique(A));
bin =
1
2
1
3
1
4
5
What do you think about it?Is there some thing better?
Thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by