Split a vector into multiple columns by another vector.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have two large vectors. The first is a list of measurement values and the second is a categorical identification variable (5 different variables). I am trying to create a matrix of 5 columns (one for each categorical identifier) with all of the measurement values as the different rows?
Thanks
2 comentarios
the cyclist
el 1 de Jun. de 2013
Are you guaranteed that the categorical identification variables appear the same number of times, so that your columns have equal length? Or might you need to pad them?
Image Analyst
el 1 de Jun. de 2013
How is the second vector "large" when it has only 5 categorical identifications, like {'Class1', 'Class2', 'Class3', 'Class4', 'Class5'}? Or is the second vector really a N by 5 array of numbers??? How large is "large"? 50 million? 300 million? If you're talking about something less than a few million, that's not large. If only the first vector is measurements, how are you going to get 5 more columns of measurements for the output array? Where are those extra measurements going to come from or how are they to be calculated? I think you'd best give a small example, maybe with 5 or 10 rows or something.
Respuestas (2)
the cyclist
el 1 de Jun. de 2013
Editada: the cyclist
el 1 de Jun. de 2013
If you are guaranteed the same number of categorical variable, then
[~,idx] = sort(categoricalVariable);
measurementVariable = measurementVariable(idx);
measurementVariable = reshape(measurementVariable,[],5);
2 comentarios
Image Analyst
el 1 de Jun. de 2013
Editada: Image Analyst
el 1 de Jun. de 2013
What are the categories? Do you have multiple types of particles, so you'd have something category #1 = "particle of type #1", and category #2 = "particle of type #2", and so on? Hopefully you're using standard terminology as outlined in http://en.wikipedia.org/wiki/Categorical_variable, because I don't really see why the number of categories should change, even if the number of particles changes. A category could always have a count of zero if no particles of that category existed in that movie frame. Posting an image or figure or diagram would probably help me to understand.
Andrei Bobrov
el 1 de Jun. de 2013
mv = randi(120,150,1); %measurement values
cv = randi([1 5],150,1);%categorical identification variable
out = accumarray(cv,mv,[],@(x){x});
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!