Info

This question is closed. Reopen it to edit or answer.

How do I reorder unequal columns in a field

1 view (last 30 days)
Gillian Goldhagen
Gillian Goldhagen on 7 Oct 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
I am trying to take the Vs field and reorder it to be 294 x 130 x 84 double.
If necissary I could also make a new Vs out of the other information in the structure but I am not sure how to do that either. I have tried
C = Lat,Long,Depth in a 3x1 cell
catpad(3,C{:})
but that gave me a 294 x 1 x 3 structure.

Answers (1)

Matt J
Matt J on 7 Oct 2019
yourStruct.Vs=permute(yourStruct.Vs,[2,1,3]);

Community Treasure Hunt

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

Start Hunting!