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

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 22 de Abr. de 2014
Editada: Andrei Bobrov el 24 de Abr. de 2014

0 votos

[~,~,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 comentarios

Bundit Buddhahai
Bundit Buddhahai el 23 de Abr. de 2014
Many thanks for your comments. Additionally, my desired output is to find the sum of time interval from positive to negative value of each number. From the example: Number 2: Time interval is 5-1 = 4 Number 3: Time interval is 4-2 = 2 Number 4: Time interval is (6-3)+(8-7) = 4
How I can write MATLAB code to work this? Thanks and regards, Bundit
Andrei Bobrov
Andrei Bobrov el 24 de Abr. de 2014
please see code after add in this answer
Bundit Buddhahai
Bundit Buddhahai el 25 de Abr. de 2014
Hi Bobrov, I can't see the code you mentioned about. Can you put it again,please?
Many thanks and regards, Bundit.
Andrei Bobrov
Andrei Bobrov el 25 de Abr. de 2014
[a,~,c] = unique(abs(X(:,2)));
out = [a, accumarray(c,-sign(X(:,2)).*X(:,1))];
Bundit Buddhahai
Bundit Buddhahai el 28 de Abr. de 2014
Many thanks Bobrov, your method is concise but very excellent. Great!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 19 de Abr. de 2014

Comentada:

el 28 de Abr. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by