3-D matrices
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi there,
I wonder if anyone could tell me how to do the following:
- if I have a 3d matrix r is 10x200x100, and I want to find correlation of it which define as R = r*conj(r'). how do I do that? if I just put that equation in MATLAB it won't work as I wanted. Technically, I want R to be 10x10x100.
Cheers,
Rak
0 comentarios
Respuestas (1)
Wayne King
el 8 de Mayo de 2012
R = randn(10,200,100);
for nn = 1:100
Rxx(:,:,nn) = R(:,:,nn)*R(:,:,nn)';
end
If R has complex elements, then R' conjugates the elements so I was not sure what you meant by conj(R'), did that mean you did not want to take the conjugate? If that is the case, do R(:,:,nn).'
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!