how to create a matrix which is difference (like in sets) of antoher 2 matrix

조회 수: 1 (최근 30일)
example: a=[2 3 4] b=[3] How to create matrix C which is: c=[2 4]

채택된 답변

madhan ravi
madhan ravi 2018년 10월 21일
편집: madhan ravi 2018년 10월 21일
a=[2:4]
b=3
C=a(a~=b)
OR
C = setdiff(a,b)
  댓글 수: 2
madhan ravi
madhan ravi 2018년 10월 21일
편집: madhan ravi 2018년 10월 21일
If it’s what you are looking for accept the answer so that other people know that got the answer for your question ,else let know what’s required.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by