How can I count the number of times a specific value appears within a range in a 1D vector?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Caesar Hernandez
el 27 de Abr. de 2020
Comentada: per isakson
el 29 de Abr. de 2020
Given a 1D vector, x, that has 600000 elements, how can I count the number of times the value 1 appears after the 150th position (excluding 150)?
0 comentarios
Respuesta aceptada
Más respuestas (2)
Ameer Hamza
el 27 de Abr. de 2020
Editada: Ameer Hamza
el 27 de Abr. de 2020
Try this.
x = randi([1 10], 1, 600000); % random vector
result = sum(x(151:end)==1);
per isakson
el 27 de Abr. de 2020
If x is a vector of whole numbers
sum( double( x(151:end)==1 ) )
else
sum( double( abs(x(151:end)-1) < small_number ) )
2 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays 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!