Insert numbers of a matrix B in matrix A (only in odd indexes).
Mostrar comentarios más antiguos
I have a matrix A=[3 8 13 18], i=4 and another one B=[5.5 10.5 15.5], j=3. Would like to get the code to create the matrix C from A and B so C=[3 5.5 8 10.5 13 15.5 18], k=7
Respuesta aceptada
Más respuestas (1)
Star Strider
el 16 de Abr. de 2015
Since ‘C’ is the concatenation of ‘A’ and ‘B’ sorted in ascending order, another option would be:
C = sort([A B]);
Categorías
Más información sobre Resizing and Reshaping Matrices en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!