find function exceeds matrix dimensions?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sarah Goldsmith
el 31 de Jul. de 2016
Comentada: Sarah Goldsmith
el 31 de Jul. de 2016
I'm trying to remove rows that contain Nans in two columns of a dataset. The dataset itself is 9895 x 26, but when I run the following code,
hh1 = hh1(~isnan(hh1(:, 19:20)),:);
it returns 'Index exceeds matrix dimensions' Further investigation revealed that when I run
find(~isnan(hh1(:, 19:20)))
it returns values ranging from 7037 to 19790, which is a problem because, as previously mentioned, the size of the dataset is only 9895 x 26.
Any idea what's going on?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 31 de Jul. de 2016
Editada: Azzi Abdelmalek
el 31 de Jul. de 2016
Depending on what you want, if the two columns should be equal to nan
hh1 = hh1(~all(isnan(hh1(:,19:20)),2),:)
%or if at least one column is equal to nan
hh1 = hh1(~any(isnan(hh1(:,19:20)),2),:)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!