How to generate all pairwise differences between two vectors

25 visualizzazioni (ultimi 30 giorni)
Hi,
how can I generate a new vector of all the pairwise differences between two existing vectors?
thanks,
Tamir

Risposte (4)

Andrei Bobrov
Andrei Bobrov il 6 Feb 2019
out = a(:) - b(:)';

Tamir Eisenstein
Tamir Eisenstein il 7 Feb 2019
Thanks Andrei!

Tamir Eisenstein
Tamir Eisenstein il 15 Feb 2019
Modificato: Tamir Eisenstein il 15 Feb 2019
Hi Andrei, I have a small follow-up question:
How can I generate each difference value in "out" to be a percentage from b [i.e ((a-b)/b)*100 ] and not as a "raw" value?
Thanks!
Tamir

Andrei Bobrov
Andrei Bobrov il 15 Feb 2019
out = (a(:)' - b(:))./b(:)*100;

Categorie

Scopri di più su Descriptive Statistics in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by