or operation on the columns of a matrix ?

조회 수: 23 (최근 30일)
Nora Khaled
Nora Khaled 2019년 5월 12일
댓글: Nora Khaled 2020년 9월 15일
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.
  댓글 수: 3
Sanchari Thakur
Sanchari Thakur 2020년 9월 15일
what is the 'and' version of the 'any' function?
Nora Khaled
Nora Khaled 2020년 9월 15일
all(A) or all(A, dim)

댓글을 달려면 로그인하십시오.

추가 답변 (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