uw_3d.m

来自「StaMps最新测试版」· M 代码 · 共 54 行

M
54
字号
function [ph_uw]=uw_3d(ph,xy,day,ifgday_ix,options)%UW_3D unwrap phase time series %%   Andy Hooper, Jun 2007if nargin<3    help uw_3d    error('not enough arguments')endif nargin<4    ifgday_ix=[];endif ~isfield(options,'master_day')    options.master_day=0;endif ~isfield(options,'grid_size')    options.grid_size=200;endif ~isfield(options,'prefilt_win')    options.prefilt_win=32;endif ~isfield(options,'time_win')    options.time_win=180;endif ~isfield(options,'unwrap_method')    options.unwrap_method='3D';endif ~isfield(options,'goldfilt_flag')    options.goldfilt_flag='y';endif ~isfield(options,'lowfilt_flag')    options.lowfilt_flag='y';enduw_grid_wrapped(ph,xy,options.grid_size,options.prefilt_win,options.goldfilt_flag,options.lowfilt_flag);uw_interp;if isempty(ifgday_ix)    uw_unwrap_space_time(day,options.unwrap_method,options.time_win,options.master_day);else    uw_sb_unwrap_space_time(day,ifgday_ix,options.unwrap_method,options.time_win);enduw_stat_costs(options.unwrap_method);ph_uw=uw_unwrap_from_grid(ph,xy,options.grid_size);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?