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

2 次查看(过去 30 天)
Is there any output difference between both of them? Which format is advisable to use when we wish to find correlation between 2 matrices?

采纳的回答

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

更多回答(0 个)

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by