Borrar filtros
Borrar filtros

How to apply OR operation to a matrix?

2 visualizaciones (últimos 30 días)
pietro
pietro el 12 de Jul. de 2014
Respondida: Roger Stafford el 12 de Jul. de 2014
Hi folk,
I need to apply the OR operation to the column of a matrix. Here an example:
a=[0 0 1; 0 1 1];
orMat(a)=
[0 0 1]
thanks

Respuesta aceptada

Roger Stafford
Roger Stafford el 12 de Jul. de 2014
Your example is not the 'OR', it is the 'AND', of the columns. The 'OR' of the columns is done this way:
b = any(a,1);
The 'AND' would be done this way:
b = all(a,1);

Más respuestas (0)

Categorías

Más información sobre Construct and Work with Object Arrays en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by