Problem 45441. Create a vector of n alternating ones and zeros (★★)
Given n, your output should be a vector y of numbers such that the first number is 1 and the numbers following it alternate between 0 and 1. Thus,
if n = 10, then y = [1 0 1 0 1 0 1 0 1 0]
if n = 5, then y = [1 0 1 0 1]
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers112
Suggested Problems
-
2401 Solvers
-
374 Solvers
-
863 Solvers
-
9534 Solvers
-
Generate n equally spaced "intervals" between -x and x (★)
112 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!