필터 지우기
필터 지우기

Unwrap with tolerance other than default (=pi)

조회 수: 22 (최근 30일)
pSchi
pSchi 2017년 3월 22일
댓글: Bryan Wingert 2024년 7월 16일 20:54
I encountered a problem with the Matlab function “unwrap” when I tried to unwrap the phase of a signal with a jump tolerance other than pi. I used the following phase for testing the behavior of the “unwrap” function:
phs = [0.1, 0.2, 0.3, 0.4, 0.4+pi-0.1, 0.4+pi-0.05, 0.4+pi-0.01];
There is a jump in the phase angle between elements four and five that is smaller than pi. I then tried to eliminate this jump using the “unwrap” function and the tolerance pi/2:
phs = unwrap(phs, pi/2);
The phs vector didn’t change. It also didn’t change by using any other value for the tolerance. Shouldn’t it eliminate the jump by adding +/- 2pi or by adding +/- pi/2?
  댓글 수: 2
Siegfried Martius
Siegfried Martius 2019년 9월 5일
perhaps this can help
phs_un=unwrap(2*phs)/2
Bryan Wingert
Bryan Wingert 2024년 7월 16일 20:54
I know I'm resurrecting a dead thread, but this aspect of the unwrap function frustrated me. See this answer for an explanation of why this hack works, and how to adapt it.

댓글을 달려면 로그인하십시오.

채택된 답변

David Goodmanson
David Goodmanson 2017년 3월 25일
Hello pSchi, from 'doc unwrap':
Note A jump tolerance less than π has the same effect as a tolerance of π. For a tolerance less than π, if a jump is greater than the tolerance but less than π, adding ±2π would result in a jump larger than the existing one, so unwrap chooses the current point. If you want to eliminate jumps that are less than π, try using a finer grid in the domain.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by