How can I count the number of times a specific value appears within a range in a 1D vector?

1 Ansicht (letzte 30 Tage)
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)?

Akzeptierte Antwort

Daniel M
Daniel M am 27 Apr. 2020
sum(x(151:end) == 1)

Weitere Antworten (2)

Ameer Hamza
Ameer Hamza am 27 Apr. 2020
Bearbeitet: Ameer Hamza am 27 Apr. 2020
Try this.
x = randi([1 10], 1, 600000); % random vector
result = sum(x(151:end)==1);

per isakson
per isakson am 27 Apr. 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 ) )

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by