Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Compare Vectors of Different Sizes and print the results

3 visualizzazioni (ultimi 30 giorni)
Zekeftw
Zekeftw il 30 Mar 2016
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi,
I am trying to compare vector A to vectors B, C, and D. If an element from vector A does not appear in vectors B, C, and D I would like to print it out.
For Example:
A = [15.00; 20.00; 7.50; 8.75; 30.00; 125.00; 12.25]
B = [35.00; 25.00; 15.00; 15.00; 20.00; 7.50; 30.00; 125.00; 12.25]
C = [0.00; 5.00; 0.00; 0.00; 10.00; 0.00; 0.00; 0.00; 0.00]
D = [35.00; 30.00; 15.00; 15.00; 30.00; 7.50; 30.00; 125.00; 12.25]
I would like to print out that 8.75 was missing from vectors B, C, and D.
Thank you
  1 Commento
jgg
jgg il 30 Mar 2016
This should do it:
out = A(ismember(A,[B;C;D]) == 0)
You can then output the out values however you want. Note, I assume you meant if it doesn't appear in any of the three vectors (as written). You'd have to change the condition slightly if you meant all of them at the same time.

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 30 Mar 2016
setdiff(A,[B,C,D])

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by