Borrar filtros
Borrar filtros

How to combine 2 matrices without sorting

1 visualización (últimos 30 días)
Bharath
Bharath el 16 de Feb. de 2015
Comentada: Image Analyst el 16 de Feb. de 2015
I've 2 matrices of size 2048x1. I want to join both the matrices without sorting. I tried using reshape but it automatically is sorting my values. Can someone help with hints or suggestion on this. Thanks in advance

Respuesta aceptada

Image Analyst
Image Analyst el 16 de Feb. de 2015
Try
matrix2D = [vector1, vector2]; % Creates a 2048 row by 2 column matrix.
or
tallVector = [vector1; vector2]; % Creates a 4096 row by one column vector.
  4 comentarios
Bharath
Bharath el 16 de Feb. de 2015
Thanks that works. I have now the issue with graph. May I'll post it as another question. Can you please look it and suggest me where I'm going wrong.
Image Analyst
Image Analyst el 16 de Feb. de 2015
OK, give me the link to it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by