x is a vector of undetermined length
You are to replace every 3rd element with the number 4, example:
x = [11 23 34 43 2 31 6 34 5 45 26 7 78];
output = [11 23 4 43 2 4 6 34 4 45 26 4 78];
Make sure the code accounts for varying vector lengths
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers264
Suggested Problems
-
46547 Solvers
-
Swap the first and last columns
22526 Solvers
-
Convert a numerical matrix into a cell array of strings
2381 Solvers
-
Sum the 'edge' values of a matrix
399 Solvers
-
Back to Basics - Find no. of elements in a matrix?
327 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
In view of the recent spate of trivial problems with no test suite to speak of, thanks for making the effort of providing a proper test suite and a slightly less trivial problem.