Truncate a two dim array based on contents of a particular column

조회 수: 15 (최근 30일)
Oindri
Oindri 2019년 12월 12일
편집: Ridwan Alam 2019년 12월 12일
I have an array whose number of rows can vary but cols are 34. One of the cols, 12th, has values 0,1,2 & 3. There is no set pattern as to how many times any of them can occur in one such array. Also, there is no exact distribution of rows with 12th col = 0/1/2/3, it may happen that 4 rows have 0, next 10 rows have 1, next 7 rows have 2 and last three rows have 3. My requirement is, how to truncate the array based on 12th col value being, either 0 or 1 or 2 or 3. Any help is appreciated !
  댓글 수: 2
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 12월 12일
could you give us a little example with desired input and output ?
Guillaume
Guillaume 2019년 12월 12일
Is the aim to split the array into arrays based on the values in column 12?

댓글을 달려면 로그인하십시오.

답변 (1개)

Ridwan Alam
Ridwan Alam 2019년 12월 12일
N = input('Number of rows: ');
A = rand(N,34);
A(:,12) = randi([0 3],N,1);
% simple version if 12th col only always has 0,1,2,3
A0 = A(A(:,12)==0,:);
A1 = A(A(:,12)==1,:);
A2 = A(A(:,12)==2,:);
A3 = A(A(:,12)==3,:);
% for a more general version, use unique() on 12th col and do it in a loop for simplicity
Hope this helps!
  댓글 수: 2
Guillaume
Guillaume 2019년 12월 12일
Even for just 4 categories, don't do that!
You're just encouraging bad programming patterns with your numbered variables and you can be sure that at some point there'll be more categories and the same pattern will continue to be used.
g = findgroups(A(:, 12)); %group identical elements of column 12
split = splitapply(@(rows) {A(rows)}, (1:size(A, 1))', g); %split A into cell array according to group
is simpler anyway.
Ridwan Alam
Ridwan Alam 2019년 12월 12일
편집: Ridwan Alam 2019년 12월 12일
Indeed. I was trying to go there with the lead to using unique().
Also, I was just trying to answer as "simply" as possible, given "simple" is relative. :)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by