how remove frequent values?
조회 수: 1 (최근 30일)
이전 댓글 표시
hi,
is there a command can remove frequent values from vector?
thanks
채택된 답변
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
Walter Roberson
2011년 11월 17일
You probably do not need to use both sort _and_ unique: unique does a sort.
추가 답변 (1개)
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)) = [];
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!