logical operators on a logical matrix

36 Ansichten (letzte 30 Tage)
Pankaj
Pankaj am 13 Sep. 2019
Kommentiert: Pankaj am 13 Sep. 2019
Consider the following logical matrix of 4X2
A = logical([1, 0; 1, 1; 0, 0; 0, 1])
I would like to apply logical operator (say `or`, `and`) on the matrix row wise so the result is 4X1 vector. (the matrix could of any dimension say mXn, and I want mX1 as output). The `or` operator requires two matrices for comparision, how to do it for single matrix.

Akzeptierte Antwort

madhan ravi
madhan ravi am 13 Sep. 2019
all(A,2)
any(A,2)
  4 Kommentare
madhan ravi
madhan ravi am 13 Sep. 2019
Thanks Jos :)
Pankaj
Pankaj am 13 Sep. 2019
thanks Jos

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by