Matlab filter columns of array based on value in row
21 ビュー (過去 30 日間)
古いコメントを表示
I have a 3 x 3000 array with x, y, z as the rows.
I want a new array from filtering the above if z == 3.
I tried
```
task3_xy = xy_arr(~ismember(xy_arr(3, :), [3]),:);
```
but it's telling me
The logical indices in position 1 contain a true value outside of
the array bounds.
How else can I do this?
0 件のコメント
採用された回答
Arif Hoq
2022 年 2 月 7 日
use 'find' function to look up the value which is equal to 3 in 'z'
x=randi(100,3,3000);
y=randi(80,3,3000);
z=randi(50,3,3000)
Idx_New_array=find(z==3) % index value of z whihc is equal to 0
if you want to find the row and column
[row col]=find(z==3)
is that your expectation or you want to replace the index value of z ?
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!