Problem 42990. Pad zero between every adjacent values of the vector.

    you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x.
e.g x: [1 2 3 4 5 6]; the output y:[ 1 0 2 0 3 0 4 0 5 0 6 0].

Solution Stats

59.34% Correct | 40.66% Incorrect
Last Solution submitted on Oct 23, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers51

Suggested Problems

More from this Author1

Community Treasure Hunt

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

Start Hunting!