How to create a vector consisting of repeating 1's and 0's.

7 visualizaciones (últimos 30 días)
Nicholas Wolf
Nicholas Wolf el 6 de Jul. de 2021
Respondida: KSSV el 6 de Jul. de 2021
I need to create a column vector consisting of alternating 1's and 0's [1 0 1 0 1 0 1 0 ... 0 1] for n times. Could anyone help assist with this?

Respuestas (1)

KSSV
KSSV el 6 de Jul. de 2021
A = [1 0] ;
n = 10 ;
iwant = repmat(A,1,n)
iwant = 1×20
1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by