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)

更多回答(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