📄 uw_3d.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -