How to delete the unwanted elements from a matrix based on certain assumptions of input character of 6-tuple input?
2 ビュー (過去 30 日間)
古いコメントを表示
surabhi sachdeva
2017 年 10 月 2 日
コメント済み: surabhi sachdeva
2017 年 10 月 3 日
I have got the matrix of 729x6 elements. Each of the 729 elements are having 6 characters (i,j,k,l,m,n).
Also, I have certain initial conditions regarding these characters given and I want to delete the elements whose characters in the elements are not satisfying the initial conditions.
What coding, commands are required to carry out the task of applying initial conditions to the matrix of elements obtained in MATLAB?
The initial conditions include
i=0,1,2
k=1
l=1
m=1
Kindly tell. Thank you
I have attached the matrix of elements for ready reference.
0 件のコメント
採用された回答
Walter Roberson
2017 年 10 月 2 日
mask = ismember(ijklmn(:,1), [0, 1, 2]) & all(ijklmn(:,3:5) == 1, 2);
ijklmn = ijklmn(mask, :);
9 件のコメント
その他の回答 (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!