How can I generate symmetric array?
Mostrar comentarios más antiguos
I have an array. and i want to write it symmetry
A(:,:,k) = [ 1 2 3 4 5 6 7 8 9 10];
I want to write it as
A(:,:,k) = [ 1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1];
for k=1:N
value of A should change according perms or permutation. because perms is limited to 10.
please help.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Elementary Math en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!