How to trim a data to same dimension?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AbelM Kusemererwa
el 15 de Jul. de 2015
Comentada: Guillaume
el 15 de Jul. de 2015
Data contains 2 columns (plan and T). However, plan contains some NaN. I would like to delete the NaN from plan and also its corresponding values in T so that the good data from columns plan and T will be of the same dimension
0 comentarios
Respuesta aceptada
Guillaume
el 15 de Jul. de 2015
Assuming data is an m x 2 matrix, it's simply:
Data(isnan(Data(:, 1)), :) = []
That is, find the nan in the first column of Data ( isnan(Data(:, 1))), and removes all the rows for which isnan is true ( Data(trueorfalse, :) = [])
4 comentarios
Guillaume
el 15 de Jul. de 2015
Then you don't delete, you only copy the data you want to keep (everything that is not nan)
tokeep = ~isnan(plan); %use ~ for logical not
newplan = plan(tokeep);
newT = T(tokeep);
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!