Canonical Correlation Analysis - canoncorr function in matlab
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am just starting with CCA, I am trying to explore it using the matlab function, but I guess I am stuck understand the result I get using canoncorr function.
[A,B,r,U,V] = canoncorr(X,Y)
My understanding is that I would get U=A'*X, and Y=B'Y, but doing that with the return type does not give me the expected result.
I tried looking at the code for canoncorr. It has something like
if nargout > 3
U = X * A;
V = Y * B;
end
I am not sure, why U is being calculated like that, as opposed to definition here http://en.wikipedia.org/wiki/Canonical_correlation
0 comentarios
Respuestas (1)
Tom Lane
el 7 de Mzo. de 2013
Try comparing V with the product
bsxfun(@minus,Y,mean(Y))*B
The first factor is just Y with the column means subtracted. Alternatively, you can compute Y*B and subtract the column means of the result.
0 comentarios
Ver también
Categorías
Más información sobre Analysis of Variance and Covariance en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!