Single coloumn if columns = 1

Hi everyone, i have a logical array P 378812x400 logical.
I want to create a single column that has the value of row 1 if in the 400 columns at least 1 row was 1.
I tried with this, but it does not run:
N=400
for j=1:N-1
for i=2:N
Q=or(P(:,j), P (:,i));
end
end
Thank you.

4 comentarios

madhan ravi
madhan ravi el 4 de Dic. de 2018
Editada: madhan ravi el 4 de Dic. de 2018
just give a small example and your desired result ?
Riccardo Rossi
Riccardo Rossi el 4 de Dic. de 2018
P=
0 0 0 0
0 0 1 0
0 0 0 0
0 1 1 0
I would like to have:
Q=
0
1
0
1
Stephen23
Stephen23 el 4 de Dic. de 2018
any(P,2)
Riccardo Rossi
Riccardo Rossi el 4 de Dic. de 2018
Thank you

Iniciar sesión para comentar.

Respuestas (2)

Etiquetas

Preguntada:

el 4 de Dic. de 2018

Comentada:

el 4 de Dic. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by