DC/offset value
이전 댓글 표시
hi i have a signal containing two values Voltage and sampliong frequency
how can i remove the dc value from the signal
답변 (2개)
Star Strider
2021년 3월 16일
‘how can i remove the dc value from the signal’
Subtract the mean of the signal from the signal:
signal_0 = signal-mean(signal);
That will have a signal with a meazn of 0, removing the D-C (constant) offset..
Mathieu NOE
2021년 3월 16일
hello - simply by removing the mean value :
signal = signal - mean(signal);
카테고리
도움말 센터 및 File Exchange에서 Spectral Measurements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!