I want to take the smallest value from each step i.e how can I turn the array below into something like this? (636, 1727, 2829, ... 6109 ...)

1 次查看(过去 30 天)
636 637 638 639 640 641 642 1727 1728 1729 1730 1731 1732 1733 1734 2829 2830 2831 2832 2833 2834 2835 3936 3937 3938 3939 3940 3941 5025 5026 5027 5028 5029 5030 6109 6110 6111 6112 6113 6114...

采纳的回答

Image Analyst
Image Analyst 2017-11-11
Try this:
changeIndexes = [1, (find(diff(m) > 500) + 1)]
values = m(changeIndexes)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by