how to combine matrices
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ani Asoyan
el 23 de En. de 2020
Comentada: Ani Asoyan
el 23 de En. de 2020
I have two matrices: A & B ... I want to combine them so that every element will be near the other one's corresponding element. For example something like C matrix.
A=[1,2;3,4]
B=[5,6;7,8]
C=[15,26; 37, 48]
3 comentarios
Walter Roberson
el 23 de En. de 2020
Note that if you have negative entries then you will need to define what the results are expected to be.
Respuesta aceptada
Walter Roberson
el 23 de En. de 2020
A*10+B
6 comentarios
Walter Roberson
el 23 de En. de 2020
That is not possible in MATLAB unless you are willing to use cell arrays C{1,2} = [-2 -6]
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing 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!