or operation on the columns of a matrix ?

23 visualizzazioni (ultimi 30 giorni)
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 ?

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by