How can I count the number of times the value of an array/vector/matrix changes value from x to y?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ahoora Saadat
el 21 de Mzo. de 2017
Comentada: Ahoora Saadat
el 22 de Mzo. de 2017
For example
Let A = [1;2;1;1;1;3;5;5;5;1;1;1;6;3;4;2;8;6;6;6;6]
How can I determine the number of times the value goes from say 2 to 1, or from 6 to 3 or from 1 to 1 etc. ?
Thank you.
0 comentarios
Respuesta aceptada
Thorsten
el 21 de Mzo. de 2017
firstvalue = 2;
nextvalue = 1;
A = A(:); % convert matrix to vector
N = nnz(A(1:end - 1) == firstvalue & A(2:end) == nextvalue);
Más respuestas (0)
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!