substract array elements based on other arrays

조회 수: 1 (최근 30일)
Mo H
Mo H 2020년 4월 12일
댓글: Mo H 2020년 4월 12일
Hi,
I have three arrays.
The first one contain all numbrs that need to be studied, All = [1,2,3,4,5,6,7,8,9,10]
The other arrays contains the numbers that need to be retained, R1 = [8,9,10], R2 = [5]
I want the result to be (All - R1 - R2) which is equal to [1,2,3,4,6,7].
Your help is highly appreicated

채택된 답변

Torsten
Torsten 2020년 4월 12일
setdiff(All,union(R1,R2))

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by