How to generate all pairwise differences between two vectors

18 次查看(过去 30 天)
Hi,
how can I generate a new vector of all the pairwise differences between two existing vectors?
thanks,
Tamir

回答(4 个)

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

Tamir Eisenstein
Tamir Eisenstein 2019-2-7
Thanks Andrei!

Tamir Eisenstein
Tamir Eisenstein 2019-2-15
编辑:Tamir Eisenstein 2019-2-15
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 2019-2-15
out = (a(:)' - b(:))./b(:)*100;

类别

Help CenterFile Exchange 中查找有关 Descriptive Statistics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by