correlation between binary strings
조회 수: 4 (최근 30일)
이전 댓글 표시
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
답변 (2개)
Maria Imdad
2021년 4월 9일
편집: Maria Imdad
2021년 4월 9일
댓글 수: 2
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...
Walter Roberson
2021년 4월 9일
R = sum((x - E).*(y - E)) ./ (sqrt(sum((x-E).^2)) .* sqrt(sum((y-E).^2)));
댓글 수: 2
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 Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!