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

2 vues (au cours des 30 derniers jours)
Krtin Kala
Krtin Kala le 15 Juin 2021
Réponse apportée : KSSV le 15 Juin 2021
Is there any output difference between both of them? Which format is advisable to use when we wish to find correlation between 2 matrices?

Réponse acceptée

KSSV
KSSV le 15 Juin 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])

Plus de réponses (0)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by