Removing Duplicate Elements from Array sets
622 ビュー (過去 30 日間)
古いコメントを表示
I am constructing a genetic algorithm for finding optimal solution of a problem. The population used consists of three controller parameters (Kp Ki Kd)and fitness value. If the values of [Kp Ki Kd] are repeated the chances of finding a wrong solution due to premature conversion is high. So i want to check if there are any duplicate entries for [Kp Ki Kd] and remove them.
NOTE: I only want to remove if all the three [Kp Ki Kd] are same.
0 件のコメント
採用された回答
Andrei Bobrov
2013 年 5 月 13 日
Let your array: K = [Kp Ki Kd]
Knew = K(any(diff(K,1,2),2),:);
0 件のコメント
その他の回答 (1 件)
David Sanchez
2013 年 5 月 13 日
Use unique command:
M = [1 2 3; 4 5 6;1 2 3; 1 2 3; 6 7 8];
A = unique(M,'rows')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Genetic Algorithm についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!