Divide the matrix randomly, based on columns

1 Ansicht (letzte 30 Tage)
Joana
Joana am 11 Dez. 2019
Kommentiert: Rik am 11 Dez. 2019
Hi
I have a matrix x of size 78000x204. I need to divide it into nonoverlapping but random 70:15:15 percent of the data, based on number of columns.
Any help, how to do that.?

Akzeptierte Antwort

Rik
Rik am 11 Dez. 2019
You mean like this?
fractions=[70 15 15];
x=rand(78000,100);%use 100 to show the split is indeed 75:15:15
groups=cell(size(fractions));%pre-allocate output
f=fractions/sum(fractions);
f=[0 cumsum(f)];
r=randperm(size(x,2))/size(x,2);
for n=1:numel(groups)
L= r>f(n) & r<=f(n+1);
groups{n}=x(:,L);
end
  2 Kommentare
Joana
Joana am 11 Dez. 2019
Yes, but i'm not sure if it's dividing the data randomly and nonoverlapping.?
I can't figure it out as it's a long data with 78000x204.
Rik
Rik am 11 Dez. 2019
Because randperm is generating the indices, this is guaranteed not to result in overlapping groups. Unless there are columns in your data that are equal to eachother, there is not be any match between the groups.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by