Unstack long XY data sets into individual tests over columns by length
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I have stacked XY data from 1955 tests in a 48875X2 table and I want to split into 25X3910 table so I have 1955 individual test data sets of X and Y 25 long
Answers (1)
Bob Thompson
on 12 Feb 2019
0 votes
Try:
datatest = reshape(data,[25,3910]);
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!