How to delete Multiple of any Value in Array In MATLAB
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,I Have the following dataset, I want to delete the value which are multiple of any value present in array.
For example in this array 70 is present which is multiple of 35.
0 件のコメント
採用された回答
Dyuman Joshi
2022 年 12 月 27 日
編集済み: Dyuman Joshi
2022 年 12 月 27 日
y=load('multiple.mat').Value;
%all the different value present in the array
z=unique(y)
for j=unique(y)
y( (rem(y,j)==0) & y~=j )=[];
end
y
5 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!