Problem 1194. Replace multiples of 5 with NaN

It is required to replace all values in a vector that are multiples of 5 with NaN.

Example:

 input:   x = [1 2 5 12 10 7]
 output:  y = [1 2 NaN 12 NaN 7]

Solution Stats

57.37% Correct | 42.63% Incorrect
Last Solution submitted on Mar 12, 2024

Solution Comments

Show comments

Problem Recent Solvers429

Suggested Problems

More from this Author11

Community Treasure Hunt

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

Start Hunting!