Problem 42669. replace nan values iteratively.

replace nan values with the average of two neighbour non-nan value iteratively as follow;

 x = [2; 4; 6; nan; nan; nan; 10];
 x = [2; 4; 6;   8; nan; nan; 10];
 x = [2; 4; 6;   8;   9; nan; 10];
 x = [2; 4; 6;   8;   9; 9.5; 10];   

Solution Stats

61.76% Correct | 38.24% Incorrect
Last Solution submitted on Feb 25, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers27

Suggested Problems

More from this Author92

Problem Tags

nan

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!