Borrar filtros
Borrar filtros

When using Corrcoef

1 visualización (últimos 30 días)
Mate 2u
Mate 2u el 11 de Mayo de 2012
Respondida: Ahsanul Hasan el 17 de Abr. de 2016
Hi all, When using corrcoef on a matrix. Is there a way to get the mean of all the values on the bottom left triangular side or the top right triangle?
All the best,

Respuesta aceptada

Daniel Shub
Daniel Shub el 11 de Mayo de 2012
I am not sure exactly what you want ...
EDIT but not really different
N = 10;
x = randn(N);
y = corrcoef(x);
z = mean(y(tril(true(N))))
  3 comentarios
Daniel Shub
Daniel Shub el 11 de Mayo de 2012
I edited it to add the corrcoeft part and do the bottom-left and not top-right, but it doesn't change what I am doing. This what you want?
Wayne King
Wayne King el 11 de Mayo de 2012
If you don't want to average the main diagonl, which is necessarily all 1's, then use Daniel's code with
z = mean(y(tril(true(N),-1)))

Iniciar sesión para comentar.

Más respuestas (1)

Ahsanul Hasan
Ahsanul Hasan el 17 de Abr. de 2016
pls help me in matlab code for find correlation vs covariance

Categorías

Más información sobre Feature Detection and Extraction en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by