Effacer les filtres
Effacer les filtres

customizing the index of reshape A 2X2 matrix

1 vue (au cours des 30 derniers jours)
ali akbar
ali akbar le 6 Sep 2020
Commenté : ali akbar le 6 Sep 2020
So I have a 2x2 matrix
test=[1 2;16 9]
y=reshape(test,[],1)
which returns
1
16
2
9
I want it to reshape like this
1
2
16
9
Any suggestion would be highly appreciated.

Réponse acceptée

madhan ravi
madhan ravi le 6 Sep 2020
Transpose Test before reshaping.
  2 commentaires
madhan ravi
madhan ravi le 6 Sep 2020
y = reshape(test.', [], 1)
ali akbar
ali akbar le 6 Sep 2020
Thank you madhan. I just realized how naive I was, I haven't thought about this simple thing beforehand.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by