how to segment a matrix based on the output in another matrix?
Show older comments
Hello everyone,
I request someone to help me in a segmentation problem that i have
i have two matrix A and B, A=[10 20 30 40 50 60 70 80 100 110 120 130 140 150 160 170 180 190 200 210 220 230 240 250 260 270 280 290 300 310 320 330 340 350 360 370 380 390 400 410 420 430 440 450 460 470 480 490 500 510 520 530 540 550 560 570 580 590 600 610 620 630 640 650 660 670 680 690 700 710 720 730 740 750 760 770 780 790 800] and B= [1 1 2 2 3 1 2 3], Where A matrix is the original matrix which was segmented to 10 samples per frame (so in this case 8 frames), and the output of these frames are in matrix B. now i want to segment the original matrix (A) by using the B matrix and save it in C matrix. While segmenting the original matrix i want to remove the samples of output 3. For example C= [10 20 30 40 50 60 70 80 100 110 120 130 140 150 160 170 180 190 200 210 220 230 240 250 260 270 280 290 300 310 320 330 340 350 360 370 380 390 400], C1= [510 520 530 540 550 560 570 580 590 600 610 620 630 640 650 660 670 680 690 700] and so on.
Thanks in advance
With regards
Rajkumar
2 Comments
RAJKUMAR Palaniappan
on 7 Jul 2014
RAJKUMAR Palaniappan
on 7 Jul 2014
Edited: Star Strider
on 7 Jul 2014
Answers (1)
Andrei Bobrov
on 7 Jul 2014
Edited: Andrei Bobrov
on 8 Jul 2014
A1 = reshape(A,10,[]);
C = A1(:,B);
D = C(:);
EDIT
ii = ones(10,1)*B(:).';
D = accumarray(ii(:),A(:),[],@(x){x});
2 Comments
Andrei Bobrov
on 8 Jul 2014
COMMENT BY RAJKUMAR Palaniappan:
that does not work Andrei Bobrov
Andrei Bobrov
on 8 Jul 2014
Edited
Categories
Find more on Linear Algebra 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!