Input A either an array or a vector (which can be empty)
Output B will be the same size as A . All elements of A equal to 13 (if any) must be replaced by zero.
For example:
A = [15 13 3]
output B is:
B= [15 0 3]
The difficulty in this problem is that the following commands FOR , WHILE , FIND and IND2SUB cannot be used.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1445
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15803 Solvers
-
1828 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3707 Solvers
-
410 Solvers
-
Find a subset that divides the vector into equal halves
402 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
this is a good problem
damn man!!! i just tore my head off to solve this then i figured there is a very very simple way to do that
A simple yet good problem. It made me think outside of using if and for loop.