How to select cells in a table with values in a given range?

3 visualizaciones (últimos 30 días)
Elissa
Elissa el 29 de Mzo. de 2018
Comentada: Elissa el 29 de Mzo. de 2018
E.g. I want to select every cell from a column whose content is a number in the range 1:2:17.
  3 comentarios
Bob Thompson
Bob Thompson el 29 de Mzo. de 2018
Are you looking to do this selection in matlab, or in excel directly?
Elissa
Elissa el 29 de Mzo. de 2018
Shounak Shastri - yes I want to select the cells that contain a value in the range 1 to 17 in steps of 2.
Bob Noob - I want to do this in matlab on a matlab table.

Iniciar sesión para comentar.

Respuesta aceptada

Peter Perkins
Peter Perkins el 29 de Mzo. de 2018
Hard to say what you are really asking, but in MATLAB ...
t = readtable(example.xls')
t2 = t(ismember(t.condition,1:2:17),:)

Más respuestas (0)

Categorías

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