replace "inf " with a value
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi all. i have a 8192*300 matrix. some of its elements are "inf". i want to replace these values with average of cells before and after them. could you give me an advice? thank you very much
3 comentarios
per isakson
el 14 de Feb. de 2015
Editada: per isakson
el 14 de Feb. de 2015
Replace inf by nan and use inpaint_nans by John D'Errico or Inpaint over missing data in 1-D, 2-D, 3-D,... N-D arrays by Damien Garcia
Respuestas (1)
Stephen23
el 14 de Feb. de 2015
Editada: Stephen23
el 14 de Feb. de 2015
Use TriScatteredInterp or scatteredInterpolant (newer MATLAB versions). You can pass these vectors of your data points excluding the Inf values, and then they will interpolate new points at the grid locations that you specify.
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!