Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Compare Vectors of Different Sizes and print the results

3 Ansichten (letzte 30 Tage)
Zekeftw
Zekeftw am 30 Mär. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 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 Kommentar
jgg
jgg am 30 Mär. 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.

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 30 Mär. 2016
setdiff(A,[B,C,D])

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by