Create a row vector with specific condition
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chet Sharma
el 23 de Mzo. de 2018
Comentada: Chet Sharma
el 23 de Mzo. de 2018
Hi I'd like to make a row vector as follows:
rowVect = [x y y y y y]
Right now, I'm doing:
rowVec = x
rowVec(2:5)=y
Is there a way to do this in one line of code?
Thanks C
0 comentarios
Respuesta aceptada
James Tursa
el 23 de Mzo. de 2018
Editada: James Tursa
el 23 de Mzo. de 2018
What's wrong with the first method you propose?
rowVect = [x y y y y y];
If you want to generalize it (maybe you don't know the number of y's you need ahead of time)
n = number of y's you want
rowVect = [x,repmat(y,1,n)];
That being said, your two-liner above is a pretty good way of doing it. Is there some particular reason you don't like it?
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!