Window moving over a pulse signal and leaving output the avg of Max and Min values
3 次查看(过去 30 天)
显示 更早的评论
Hello ,
I am working with the Pulse signals and I want to get a window of say length 'x' moving over the entire pulse signal(comprised of different pulses).
Each time when the window operates with a particular length on a part of pulse signal which is containing different pulses has to give output both the avg of Max values of the all the pulses and also the avg of Min values of all the pulses present in the particular window size.If not possible then only the avg of Max values of the all the pulses.
Thanks.
0 个评论
回答(1 个)
Image Analyst
2013-9-25
I know you have the Image Processing Toolbox, souse cat(2,...) to stick all your signals together in a 2D array, then call conv2() to get the means, call imdilate() to get the maxes, and imerode() to get the mins. It's only 5 lines of code total - give it a try.
out2d = cat(2,.....
minSignal = imerode(out2d,......
maxSignal = imdilate(out2d,......
meanMinSignal = conv2(minSignal ,.....
meanMaxSignal = conv2(maxSignal ,.....
See if you can finish it.
3 个评论
Image Analyst
2013-9-26
You can use blockproc() to do the erosion and dilation. They're just the local min and max, respectively. See demos attached below.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!