Problem 1048. Detect a number and replace with two NaN's

Write code which replaces the number 1 with two NaNs.

Example

 X = [ 1   2   NaN   4   1   3   7   NaN   1   4   NaN   2]

Answer Y is

     [ NaN  NaN  2  NaN   4   NaN  NaN   3   7   NaN  NaN  NaN  4   NaN  2]

Solution Stats

45.22% Correct | 54.78% Incorrect
Last Solution submitted on Oct 15, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers189

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!