how remove frequent values?

조회 수: 1 (최근 30일)
huda nawaf
huda nawaf 2011년 11월 17일
hi,
is there a command can remove frequent values from vector?
thanks
  댓글 수: 2
Jan
Jan 2011년 11월 17일
Do you mean repeated values?
huda nawaf
huda nawaf 2011년 11월 17일
yes, the suggestion of Jan is good

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

채택된 답변

Jan
Jan 2011년 11월 17일
x = floor(rand(1, 100)*10);
[N, Bin] = histc(x, unqiue(x));
Now you can use sort(N) to find the most frequent elements. Then you can search the corrsponding indices in Bin.
  댓글 수: 2
huda nawaf
huda nawaf 2011년 11월 17일
thanks
I just did sort for x then did unique .
it is good and quick
Walter Roberson
Walter Roberson 2011년 11월 17일
You probably do not need to use both sort _and_ unique: unique does a sort.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 11월 17일
To remove the most frequent value, and assuming it is a vector you are working with:
x(x==mode(x)) = [];

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by