How to set the boundaries?
7 次查看(过去 30 天)
显示 更早的评论
Hello,
Please help me :)
I have a row with 0 and 1 (they are used for classification) and its indexes. I need to get just the boundaries for the interval of 0 or 1. How I can do it?
For example this is what I have:
targets=[0 0 0 1 1 1 0 0 1 1 0 0 0]
index= [0 1 2 3 4 5 6 7 8 9 10 11 12]
This is what I want to get:
targ= [0 1 0 1 0]
boundindex=[0 3 6 8 12]
Thanks!
0 个评论
采纳的回答
Image Analyst
2018-3-18
Try this:
boundindex = [0, find(abs(diff(targets)))]
The only difference is that my array gives 10 as the final value, because 10 is where the final group of 0's starts. Not sure how you got 12. Why do you want 12 and how did you arrive at that value?
Not sure what the point of targ is or why it's needed so I didn't compute it.
4 个评论
Image Analyst
2018-3-18
Try this:
targets=[0 0 0 1 1 1 0 0 1 1 0 0 0] % describe peaks
index= [0 15 20 35 45 50 60 75 80 99 101 111 120] % index of the peak
startingIndexes = [0, find(abs(diff(targets)))]
boundindex = index(startingIndexes+1)
targ = targets(startingIndexes+1)
Shows in command window:
boundindex =
0 35 60 80 101
targ =
0 1 0 1 0
just as you requested.
更多回答(1 个)
Ra Ga
2018-3-18
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!