How can I extract all matrix elements for one index with dynamic number of dimenstions?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Philipp
el 6 de Abr. de 2017
Comentada: Philipp
el 6 de Abr. de 2017
Hello experts,
let A be
A = rand(4, 4, 4); %
so what I want is:
B = reshape(A(1,:,:), [4 4])
The problem is the unknown dimension of A. So if A has the dimension of 3, I need 2 colon operator; if 4 then 3 and so on...
I am very thankful for any ideas...
BR
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing 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!