Reshape list into columns
Show older comments
Im working with driving data for vehicles. There is 429 vehicles (DeviceStats). For the trips, there is a list of 107910 rows with one value per row (Car). The value is the id number of the vehicles. The format of the list looks like this
173
173
173
178
178
184
and so on. Every vehicle has a different number of vehicles in the Car vector. I want to reshape the list to 429 columns, where each column has the length the same length as the vehicle has in the Car-list. Like this
173 178 184
173 178
173..
My approach so far has not worked:
clc
clear
load EXJOBB
D=[];
Car=tripStats.device;
Devicestats=deviceStats.device;
for j=1:429
for i=1:107910
if Car(i)==Devicestats(j)
D(i,j)=[Car(i)];
else
break
end
end
end
3 Comments
Joel Schelander
on 2 Mar 2021
Stephen23
on 2 Mar 2021
Matrices must be rectangular, i.e. all rows have the same number of columns, all columns have the same number of rows.
Gaps, missing data, holes, rows or columns of different lengths are not supported.
Do you want to:
- pad the columns with some default value, e.g. 0, NaN, etc. (if so, what value?)
- use a container array (e.g. cell array) to hold numeric vectors of different lengths?
Joel Schelander
on 2 Mar 2021
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!