Borrar filtros
Borrar filtros

Custom Vector - make vector x to be [1,1,....]

1 visualización (últimos 30 días)
Steve
Steve el 6 de Oct. de 2011
Hello Experts,
I want to create a vector x where all n elements are for example c.
I can do this by:
n=5;
x=zeros(1,n);
x(x==0) = 1;
But how to do this in more simple way.
Thanks a lot!

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Oct. de 2011
repmat(c,1,n)
or
c * ones(1,n)
or
c + zeros(1,n)
or
c(ones(1,n)) %yes, even with scalar c
  1 comentario
bym
bym el 7 de Oct. de 2011
+1 for the last one. The force is strong in you

Iniciar sesión para comentar.

Más respuestas (1)

bym
bym el 6 de Oct. de 2011
x = ones(1,5)

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by