How to generate all pairwise differences between two vectors

Hi,
how can I generate a new vector of all the pairwise differences between two existing vectors?
thanks,
Tamir

回答 (4 件)

Tamir Eisenstein
Tamir Eisenstein 2019 年 2 月 15 日
編集済み: Tamir Eisenstein 2019 年 2 月 15 日

0 投票

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 日

0 投票

out = (a(:)' - b(:))./b(:)*100;

カテゴリ

ヘルプ センター および File ExchangeDiscrete Math についてさらに検索

質問済み:

2019 年 2 月 6 日

回答済み:

2019 年 2 月 15 日

Community Treasure Hunt

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

Start Hunting!

Translated by