Borrar filtros
Borrar filtros

Restructure matrix to get back original matrix

4 visualizaciones (últimos 30 días)
monkey_matlab
monkey_matlab el 24 de Abr. de 2016
Respondida: Azzi Abdelmalek el 24 de Abr. de 2016
Hello, In the code below, I generate a random 8 x 5 matrix then create a new matrix 'temp' that is A restructured to `temp = reshape(A',r*c,1);`. I then do some manipulation on temp (but keep the dimension 40 x 1). How do you restructure 'temp' now to get back a matrix with the dimension as A (i.e. revert temp back now to a 8 x 5 matrix)?
Thanks. Here is the code that I have so far:
A = randi(10,8,5);
[r c] = size(A);
temp = reshape(A',r*c,1);

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 24 de Abr. de 2016
B=reshape(temp,c,r)'

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by