Signal cutting
이전 댓글 표시
Hello,
I have a sine signal, and I want to remove say every third period, and then to combine all the pieces without that every third period. I was trying to use "for" cycle, but didn't work out. Maybe someone knows the code concerning this issue?
Many thanks
댓글 수: 1
Jan
2011년 2월 4일
Please show, what you have tried exactly. How are the limits of periods stored or determined?
채택된 답변
추가 답변 (2개)
Walter Roberson
2011년 2월 3일
1 개 추천
If you are splicing it together with every N'th period removed, then since sine signals are periodic, the effect would be the same as just shortening the signal by the number of samples that would be erased.
Mantas
2011년 2월 4일
0 개 추천
댓글 수: 4
Walter Roberson
2011년 2월 4일
mean(reshape(YourData,Period,[]),2)
Mantas
2011년 2월 5일
Walter Roberson
2011년 2월 5일
The code I showed creates a single period with each point being the mean of the corresponding points over all of the periods. This appears to answer to your requirement that they be "averaged" in to 1 period.
The alternative interpretation, that you want to sum each of the periods (which would produce one total number per period) and then take the mean value of those (which would result in one number *total*), does not agree with your requirement to "average them in to 1 period".
Please clarify the size of the output you are expecting, and perhaps give a formula.
Mantas
2011년 2월 5일
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!