wrapping

4 ビュー (過去 30 日間)
Jonghyun eom
Jonghyun eom 2012 年 2 月 24 日
I have a wrapped date. and then I use a commend "unwrap" in order to unwrapped data.
After unwrapping, I modified unwrapped data.
I want to get wrapped data again in order to see what happened is in data.
how do i wrap after taking "unwrapping original" data.

回答 (1 件)

Andrew Newell
Andrew Newell 2012 年 2 月 24 日
You could save the changes when you unwrap and then reverse them:
pw = unwrap(pold);
pdiff = pw-pold;
... % change pw here
pnew = pw-pdiff;

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by