Filter löschen
Filter löschen

Ask for partitioning a matrix

1 Ansicht (letzte 30 Tage)
Bundit Buddhahai
Bundit Buddhahai am 19 Apr. 2014
Kommentiert: Bundit Buddhahai am 28 Apr. 2014
Hi, I have an input matrix of 2 columns data, the first column is time index data and the second one is data which represent the status of that number (which says, if the number is positive, the number label is ‘On’ whereas when the number is negative, the number label is ‘Off’). The process of ‘On’ (positive)/ ’Off’ (negative) for each number is time sequential data (data in the 2nd column) in which the frequency for ‘On’/ ‘Off’ state for each number is arbitrary. The ‘Off’ state for each number is the one which is the closest in time index to positive value of the same number.
Thank you. Bundit
I would like to make partitions of the input matrix to get positive/negative value that represent ‘On’/’Off’ state of each existing number in the matrix. The example is shown in the attached image

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 22 Apr. 2014
Bearbeitet: Andrei Bobrov am 24 Apr. 2014
[~,~,c] = unique(abs(X(:,2)));
out = accumarray(c,(1:numel(c))',[],@(x){X(x,:)});
add
[a,~,c] = unique(abs(X(:,2)));
out = [a, accumarray(c,-sign(X(:,2)).*X(:,1))];
  5 Kommentare
Andrei Bobrov
Andrei Bobrov am 25 Apr. 2014
[a,~,c] = unique(abs(X(:,2)));
out = [a, accumarray(c,-sign(X(:,2)).*X(:,1))];
Bundit Buddhahai
Bundit Buddhahai am 28 Apr. 2014
Many thanks Bobrov, your method is concise but very excellent. Great!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Types 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