필터 지우기
필터 지우기

If one normalized vector is subtracted from another normalized vector, is it necessary to normalize the result?

조회 수: 4 (최근 30일)
Hello
I was following the example:
I don't understand after prediction why the denoised signal is normalized.
Also, if I assume the noise was additive and subtract the normalized denoised signal from the normalized noisy signal to get the noise, do I need to normalize the noise signal?
Thanks in advance.

답변 (1개)

Matt J
Matt J 2022년 5월 16일
If , it does not necessarily follows that . Example:
a=rand(1,5); a=a/norm(a);
b=rand(1,5); b=b/norm(b);
norm(a-b)
ans = 0.5268

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by