Changes matrix size matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ibnu Darajat
el 19 de Jul. de 2019
Comentada: Star Strider
el 19 de Jul. de 2019
i generate this binary (16x1) :
A = randi ([0 1], 16,1);
and the result is :
0
0
0
1
1
0
1
0
0
0
1
1
0
0
0
1
My question is, how to make the matrix A become 2x8 matrix? So, the result like :
0 0 0 1 1 0 1 0
0 0 1 1 0 0 0 1
Thanks before
0 comentarios
Respuesta aceptada
Star Strider
el 19 de Jul. de 2019
Out = reshape(A, [], 2)'
producing (for the vector you posted):
Out =
0 0 0 1 1 0 1 0
0 0 1 1 0 0 0 1
2 comentarios
Star Strider
el 19 de Jul. de 2019
I do not have the Communications Toolbox. I cannot run your code.
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!