or operation on the columns of a matrix ?

22 次查看(过去 30 天)
Hello!
I have matrix S that contains zeros and ones. and I want to convert it to a column vector contianing one in the ith position if there was at least one one in the ith row.
So I know that "or" operation does similar job but with two vectors. is there a way to use it with the columns of S ?

采纳的回答

Image Analyst
Image Analyst 2019-5-12
Try
rowHasOnes = any(S, 2);
If not, then supply an example S and the expected result.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by