필터 지우기
필터 지우기

Make a logical array into a single logical column, if any of the array rows contain a 1

조회 수: 11 (최근 30일)
Hi Guys i have a logical array of the size 10617x21 named a. I need it to be 10617x1 named b, so only one column.
One condition, if there was a 1 anywhere in the row on a, then i would like the row value of b to also be 1.
Smaller example:

채택된 답변

Chunru
Chunru 2021년 11월 30일
a = [0 0 0; 1 0 0; 0 1 0; 0 0 0]
a = 4×3
0 0 0 1 0 0 0 1 0 0 0 0
b = any(a==1, 2)
b = 4×1 logical array
0 1 1 0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by