How to divide vector to matrix(same row and column)
Mostrar comentarios más antiguos
Hello.
I got some vector like (82580526 X 1)
I want to divide this vector to matrix. The matrix have same row and column. (N x N)
If it can't be divide equally, some row or column of the matrix can be splited.
Could you explain how to have same row and column?
1 comentario
Tommy
el 27 de Mzo. de 2020
Perhaps reshape?
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 27 de Mzo. de 2020
If you have the Communications Systems Toolbox, then
buffer(TheVector, ceil(sqrt(numel(TheVector))))
Categorías
Más información sobre Creating and Concatenating Matrices 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!