how to arrange vector to matrix?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
PaulLe
el 6 de Nov. de 2021
Comentada: PaulLe
el 7 de Nov. de 2021
Hi guys,
I have a vector: x = [1 2 3 4 5 6]
How to arrange this vector to new matrix, like this:
[1 2 3 4 5 6
2 3 4 5 6 1
3 4 5 6 1 2
4 5 6 1 2 3]
Thanks for your help.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Sudharsana Iyengar
el 6 de Nov. de 2021
You can try using the functions perms. or if you want cyclic permutations
x=[1,2,3,4,5,6];
v=perms(x)
X=[1,2,3,4,5,6];
V=[X;circshift(X,1);circshift(X,2);circshift(X,3);circshift(X,4);circshift(X,5);]
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!