hi, i want to find in a binary random matrice position of columns full of zeros (a column of zeros)..
1 次查看(过去 30 天)
显示 更早的评论
is there any function in matlab which retur the position of a column ??
0 个评论
采纳的回答
Stephen23
2016-1-11
You can use all and find to locate columns containing only zeros:
>> X = randi(2,3,23)-1
X =
0 0 0 0 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 0 0
1 0 0 0 0 0 1 0 1 1 0 0 0 1 1 0 0 1 0 0 1 0 0
0 1 0 1 0 0 1 1 1 1 0 0 0 0 1 1 0 1 0 1 1 1 0
>> find(all(X==0,1))
ans =
3 11 12 23
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!