Add n+1 element to a vector
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
steve Brian
el 10 de Abr. de 2020
Comentada: Peng Li
el 10 de Abr. de 2020
I have a vector of the format:
x = [X1 X2 … Xn]
I want to add an element to the end, X(n+1). How do I do that?
ex: x = [ 1 4 2 8]
newX = [ 1 4 2 8 9]
0 comentarios
Respuesta aceptada
Peng Li
el 10 de Abr. de 2020
If your X is a row vector, using newX = [X, aNewElement];
If your X is a column vector, using newX = [X; aNewElement];
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Automated Driving Toolbox 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!