필터 지우기
필터 지우기

How to subtract average value from a signal?

조회 수: 8 (최근 30일)
Saulius Janusauskas
Saulius Janusauskas 2018년 5월 27일
편집: Image Analyst 2018년 5월 27일
Hi all,
I have this case where I add offset in analog circuit to a signal and then once I sample the signal, I want to remove this offset by the same value. Has anyone got any ideas how to calculate and subtract offset of this signal in MATLAB?

채택된 답변

Image Analyst
Image Analyst 2018년 5월 27일
편집: Image Analyst 2018년 5월 27일
Did you try using minus instead of plus?
yNew = y + offset; % What you've already done.
% Now subtract from the signal using the "minus" operation
yNew2 = yNew - offset; % Should equal the original y signal.
offset can be whatever you want. If you want it to be the average of the signal do
offset = mean(y);
offset = mean(yNew); % Or this if you want.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by