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

1 visualización (últimos 30 días)
example: a=[2 3 4] b=[3] How to create matrix C which is: c=[2 4]

Respuesta aceptada

madhan ravi
madhan ravi el 21 de Oct. de 2018
Editada: madhan ravi el 21 de Oct. de 2018
a=[2:4]
b=3
C=a(a~=b)
OR
C = setdiff(a,b)
  2 comentarios
madhan ravi
madhan ravi el 21 de Oct. de 2018
Editada: madhan ravi el 21 de Oct. de 2018
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by