Info

This question is closed. Reopen it to edit or answer.

Matrix manipulation coding with If and for loops

1 view (last 30 days)
Racky
Racky on 17 Jul 2015
Closed: MATLAB Answer Bot on 20 Aug 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 Comments
Walter Roberson
Walter Roberson on 17 Jul 2015
cell arrays. Separate them out and work with them one by one.
dpb
dpb on 17 Jul 2015
Or use accumarray with the subscript vector obtained from
ix=find(diff([0;x(:,1))>1);
to compute the statistics wanted.

Answers (0)

Community Treasure Hunt

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

Start Hunting!