Clear Filters
Clear Filters

Info

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

Unstack long XY data sets into individual tests over columns by length

1 view (last 30 days)
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
Bob Thompson on 12 Feb 2019
Try:
datatest = reshape(data,[25,3910]);

This question is closed.

Tags

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!