Borrar filtros
Borrar filtros

Extracting histogram each row of matrix

4 visualizaciones (últimos 30 días)
cem
cem el 11 de Mayo de 2019
Editada: madhan ravi el 15 de Mayo de 2019
Hi Everyone,
I have a matrix name as input:
A = [0 4; 0 -5; 0 -1; 0 -1; 2 -1; 3 3; 2 4; 4 0; 0 1; 0 -2; 0 -1; 0 -1; 0 -1;2 -1;2 -1;3 3; 2 4; 4 0];
I want to extract histogram analysis each row of "input" according the other rows. I actually wonder frequency of each row according to other rows. How can i do that without a loop?
  2 comentarios
madhan ravi
madhan ravi el 11 de Mayo de 2019
Don‘t name your variable input!!!
Mohsin Shah
Mohsin Shah el 15 de Mayo de 2019
I am also looking for the same solution.

Iniciar sesión para comentar.

Respuestas (2)

Mohsin Shah
Mohsin Shah el 15 de Mayo de 2019
Editada: madhan ravi el 15 de Mayo de 2019
I hope this will solve your problem.
A = [0 4; 0 -5; 0 -1; 0 -1; 2 -1; 3 3; 2 4; 4 0; 0 1; 0 -2; 0 -1; 0 -1; 0 -1;2 -1;2 -1;3 3; 2 4; 4 0];
[Mu,ia,ic] = unique(A, 'rows', 'stable');
% Unique Values By Row, Retaining Original Order
h = accumarray(ic, 1); % Count Occurrences
maph = h(ic); % Map Occurrences To ‘ic’ Values
Result = [A, maph]

gonzalo Mier
gonzalo Mier el 11 de Mayo de 2019
  1 comentario
cem
cem el 12 de Mayo de 2019
I actually read histogram and I could not understand how am I calculate histogram of two element according to others.

Iniciar sesión para comentar.

Categorías

Más información sobre Histograms 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!

Translated by