How to eliminate rows??

조회 수: 2 (최근 30일)
Triveni
Triveni 2016년 2월 20일
답변: Walter Roberson 2016년 2월 20일
a = [30 30 30 10 10 0 0 10 20 20];
a1 = unique(a);
a2 = perms([a1,fliplr(a1)]);
p1 = [a2 , fliplr(a2),a2 , fliplr(a2), a2];
p2 = p1 (:, 1:length(a));
ppp = unique(p2,'rows');
pp = permute(ppp, [3 2 1]);
if unique(a) is less than 2 times then i have to eliminate rows in ppp or pp.

채택된 답변

Walter Roberson
Walter Roberson 2016년 2월 20일
threshold = 2;
ppp( sum(ismember(ppp, a1), 2) < threshold, :) = [];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by