How to extract signal segments from a long signal given each segment's start and end points
조회 수: 7 (최근 30일)
이전 댓글 표시
Hello,
I have a about 10-min signal sequence from the sensor, it looks like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/978620/image.png)
And I have labeled many sequence in this signal, the start-end point (time point) of each segment look like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/978625/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/978630/image.png)
Now I want to extract each segment as a vector without doing this by manually typing in their start-end point (ROI limits), so how can I do that?
I have an idea, which is using cell array to store those segments, but I don't know how to do that, may be using a loop, but how should I index them? Thanks!
채택된 답변
Star Strider
2022년 4월 26일
Perhaps —
First load ‘Time’ and ‘combinedAccel_01’ and ‘ROILimits’ into the workspace.
Then extract them to a cell array:
for k = 1:size(ROILimits,1)
idxrng = ROILimits(k,1) : ROILimits(k,2);
ROI{k} = [Time(idxrng) combinedAccel_01(idxrng)];
end
That should produce a cell array of column vectors of the time and data vectors.
Make appropriate changes depending on how the data are imported. Without hjaving them to work with, this is as far as I can go with the code.
.
댓글 수: 2
Star Strider
2022년 4월 26일
As always, my pleasure!
Rather than rounding, one option could be:
for k = 1:size(ROILimits,1)
idxrng = (Time >= ROILimits(k,1)) & (Time <= ROILimits(k,2));
ROI{k} = [Time(idxrng) combinedAccel_01(idxrng)];
end
The ‘idxrng’ variable is now a logical vector that can be used to reference the respective rows.
.
추가 답변 (1개)
Image Analyst
2022년 4월 26일
Can you extract value and then pass it to findgroups()? Then use that to extract the groups, like with indexing or the bwlabel() function. Attach your data if you need more help, but after reading this:
댓글 수: 1
Image Analyst
2022년 4월 26일
Maybe if you want to do stats on each group you can use splitapply(), grpstats(), or groupsummary().
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!