Adding elements to an array
Mostrar comentarios más antiguos
Ok, so how do you place elements of one array into another array, so that they are included in either the beginning of the array or the end of the array?
Respuesta aceptada
Más respuestas (1)
YU-CHENG HUANG
el 29 de Sept. de 2017
5 votos
just using c = [a , b]
ex: a = [1 2 3] b = [4 5 6] c = [a,b]
--> c = [1 2 3 4 5 6]
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!