Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Matrix manipulation coding with If and for loops

1 vue (au cours des 30 derniers jours)
Racky
Racky le 17 Juil 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
I have a n x 2 matrix. I want to basically look at adjacent number in the column one and if the difference in the values is greater than 1, than I want to insert a blank space in the nx2 matrix.
Can anyone please help with this?
  5 commentaires
Walter Roberson
Walter Roberson le 17 Juil 2015
cell arrays. Separate them out and work with them one by one.
dpb
dpb le 17 Juil 2015
Or use accumarray with the subscript vector obtained from
ix=find(diff([0;x(:,1))>1);
to compute the statistics wanted.

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by