correlation between binary strings

11 ビュー (過去 30 日間)
Maria Imdad
Maria Imdad 2021 年 4 月 9 日
コメント済み: Walter Roberson 2021 年 4 月 9 日
hi everyone I want to find the correlation between these two binary strings x and y
x=[1111111111111111111111111111111111111111111111111111111111111111];
y=[1000000001011001010110111110010101011010010000100010111101111110];
using the formula attached as figure. the value of E is 0.05 or 50%.
Thank you in advance
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 4 月 9 日
the value of E is 0.05 or 50%.
?? 0.05 would be 5% not 50% ?

サインインしてコメントする。

回答 (2 件)

Maria Imdad
Maria Imdad 2021 年 4 月 9 日
編集済み: Maria Imdad 2021 年 4 月 9 日
0.05
  2 件のコメント
Walter Roberson
Walter Roberson 2021 年 4 月 9 日
If the values are represented by 0 and 1, then it seems to me using 0.5 would make more sense...
Maria Imdad
Maria Imdad 2021 年 4 月 9 日
yes exactly

サインインしてコメントする。


Walter Roberson
Walter Roberson 2021 年 4 月 9 日
R = sum((x - E).*(y - E)) ./ (sqrt(sum((x-E).^2)) .* sqrt(sum((y-E).^2)));
  2 件のコメント
Maria Imdad
Maria Imdad 2021 年 4 月 9 日
will this formula compare and compute correlation between each corresponding bit? because i want it to iterrate for all 64 bits
Walter Roberson
Walter Roberson 2021 年 4 月 9 日
It handles all of x and all of y, assuming that they are the same size. It uses vector operations so it does not need to loop. The sigma operation in the equation is sum() here.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by