Extracting multiple points from matrix and plotting

조회 수: 7 (최근 30일)
Faizan Tahir
Faizan Tahir 2016년 2월 19일
댓글: Star Strider 2016년 2월 19일
Hi.
I have a 900 row by 3 column matrix, each corresponding to a centroid of 3 objects. The 3 objects are red, green and blue.
The first column corresponds to the X coordinate, the second corresponds to Y coordinate of the objects centroid, and the 3rd column corresponds to the centroid's colour (1 = red, 2 = green, 3 = blue).
How can I efficiently loop through the matrix and filter all the rows where colour = 1, and plot all the coordinates from top to bottom, and same for the other two? I know this should be easily possible using find, but my matlab isn't great so any help is much appreciated.

답변 (1개)

Star Strider
Star Strider 2016년 2월 19일
I would use the sortrows function. It should be able to do what you want.
  댓글 수: 1
Star Strider
Star Strider 2016년 2월 19일
The best way to do that is with a cell array, to avoid creating dynamic variables (a poor programming practise). Here, ‘Mtx{1}’ has all the rows where the third column is 1, and so for the others. The rows remain the same.
The code:
M = [randi(99, 15, 2) randi(3, 15, 1)]; % Create Data
for k1 = 1:3
Mtx{k1} = M(M(:,3) == k1,:); % Create Cell Array
end

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

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by