How to adjust the ratio to compare the data in two variables?
Show older comments
There are two different variables.
A=[107.5383 47.4492 36.4819 26.4964];
B=1.0e+03 * [4.1876 3.5687 3.4444 3.4548];
I want to know the correlation between A and B.
But, it is too large difference between A and B.
in that case, how to adjust?
1 Comment
Brian Kim
on 18 Oct 2017
Accepted Answer
More Answers (1)
Walter Roberson
on 18 Oct 2017
>> corr(A(:),B(:))
ans =
0.991036262555985
Categories
Find more on 기술 통계량 및 시각화 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!