Filter löschen
Filter löschen

comparing two matrix element simultaneously and adding third column

1 Ansicht (letzte 30 Tage)
N/A
N/A am 5 Jul. 2019
Kommentiert: N/A am 7 Jul. 2019
whenever the elemnts in column 1 and 3 both are repeated elsewhere in matrix then only third column should get added up
e.g
A=
18 18 1
17 20 2
18 18 1
17 25 2
19 17 3
18 18 1
19 17 3
then answer should be
18 18 1
17 20 2
18 18 2
17 25 2
19 17 3
18 18 3
19 17 6

Akzeptierte Antwort

KSSV
KSSV am 5 Jul. 2019
A = [ 18 18 1
17 20 2
18 18 1
17 25 2
19 17 3
18 18 1
19 17 3] ;
[c,ia,ib] = unique(A(:,1:2),'rows') ;
B = A ;
% [c,ia,ib] = unique(A(:,3)) ;
for i = 1:length(c)
B(ib==i,3) = cumsum(A(ib==i,3)) ;
end
B
  1 Kommentar
N/A
N/A am 7 Jul. 2019
thank you KSSV this works absolutely fine but since my actual matrix is going to be 3x11870 i want that the unique elements and their cumulative sum should be stored separately otherwise it would be too difficult to find them can you tell me how that will work thanks in advance.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by