Borrar filtros
Borrar filtros

Set a bin to count the data points for certain conditions

1 visualización (últimos 30 días)
Hi there,
I want to count the number of data values that are in this conditions
if it satisfies both conditions then count it
if dist>= R & dist<=(R+dr)
and
if dist1>= R1 & dist1<=(R1+dr1)
Please help.
  2 comentarios
Jos (10584)
Jos (10584) el 17 de Jul. de 2013
I suggest you give a (very) small example!
dist = [...]
dist1 = [...]
R = ...
etc.
ExpectedOutcome is: ...

Iniciar sesión para comentar.

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 17 de Jul. de 2013
idx = (dist >= R) & (dist<=(R+dr)) & (dist1>=R1) & (dist1<=(R1+dr1)); %all that meet criteria
count == nnz(idx); %how many of these were true?

Más respuestas (0)

Categorías

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