What is difference between corrcoef([A B]) and corrcoef(A, B)?

2 views (last 30 days)
Is there any output difference between both of them? Which format is advisable to use when we wish to find correlation between 2 matrices?

Accepted Answer

KSSV
KSSV on 15 Jun 2021
Both are same and result into same answer.
A = randn(60,1);
B = randn(60,1);
R1 = corrcoef(A,B)
R2 = corrcoef([A B])

More Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!