필터 지우기
필터 지우기

operation with logical array

조회 수: 1 (최근 30일)
pipor
pipor 2023년 9월 4일
편집: Dyuman Joshi 2023년 9월 4일
c=[0 0 0 0]
c = 1×4
0 0 0 0
a=[1 0 1 0]
a = 1×4
1 0 1 0
b=[0 1 1 0]
b = 1×4
0 1 1 0
b-a
ans = 1×4
-1 1 0 0
c(find((b-a)>0))=1
c = 1×4
0 1 0 0
if element a==0 and element b==1 i want to change element c in =1
Anyone can me suggest a best method to do this

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 9월 4일
편집: Dyuman Joshi 2023년 9월 4일
c=[0 0 0 0];
a=[1 0 1 0];
b=[0 1 1 0];
c = (a==0)&(b==1)
c = 1×4 logical array
0 1 0 0
%simplified
c = (~a)&b
c = 1×4 logical array
0 1 0 0
Given the questions you have asked recently, I would strongly recommend you to take the free MATLAB Onramp tutorial to learn the essentials of MATLAB.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by