replace "inf " with a value
11 views (last 30 days)
Show older comments
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 Comments
per isakson
on 14 Feb 2015
Edited: per isakson
on 14 Feb 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
Answers (1)
Stephen23
on 14 Feb 2015
Edited: Stephen23
on 14 Feb 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.
See Also
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!