Simple array addition question
Mostrar comentarios más antiguos
if I have a matrix [1,2] and I want to add a 3rd element [3] to make [1,2,3]
And what is this simple manipulation called? 2 hours of searching has got me nowhere.
Kind regards
RK
2 comentarios
@Robert: The operation is called "concatenation". Such questions are exhaustively explained in the "Getting Started" chapter of the documentation. While it is strongly recommended to read them, because Matlab is a very powerful language, the forum is not the right place to learn the very basics. Thanks.
Robert
el 25 de Nov. de 2012
Respuesta aceptada
Más respuestas (1)
Jitesh Kumar
el 26 de Sept. de 2018
0 votos
A=[1,2]; A(end+1)=3;
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!