How to unwrap a signal?

1 回表示 (過去 30 日間)
Lizan
Lizan 2016 年 2 月 4 日
編集済み: Walter Roberson 2016 年 2 月 4 日
I like to unwrap this vector, I calculated with a cos-function to obtain a nice dip.
The figure looks like this:
I would like to obtain this (see the orange line),
Attaching the vector as .mat
  1 件のコメント
Lizan
Lizan 2016 年 2 月 4 日
編集済み: Lizan 2016 年 2 月 4 日
I had a code like this:
signal = p4;
t2 = 1:1:length(p4);
peakValue = max(signal);
index1 = find(signal > (peakValue - 0.001), 1, 'first');
index2 = find(signal > (peakValue - 0.001), 1, 'last');
signal(index1:index2) = 2 * peakValue - signal(index1:index2);
signal(index1:index2) = signal(index1:index2);
but it not working anymore..

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeSmoothing and Denoising についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by