how to interpolate the 393x32 matrix which consists zeroes in between
Show older comments
in my data set along the zeroes are present(which i didnt required) so i have to remove it, and make my data even series by cubic interpolation.
how to do this?
Answers (1)
Jan
on 26 Oct 2015
Set the zeros to NaN:
Data(Data == 0) = NaN;
Categories
Find more on NaNs 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!