Problem 2863. Matlab Basics - Set unwanted parts of a vector to zero

Consider a vector x, of length >= 7, write a script to set elements 2, 5, and 6 to zero.

Example

 x = [1 2 3 4 5 6 7] --> x = [1 0 3 4 0 0 7]

Solution Stats

52.59% Correct | 47.41% Incorrect
Last Solution submitted on Nov 21, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers237

Suggested Problems

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!