📄 refl_struct.m
字号:
% REFL_STRUCT Create REFL struct from parameters. The struct contains the following
% fields:
% - data (reflectivity data)
% - start_time (Julian Date of start time)
% - stop_time (Julian Date of stop time)
% - type (String specifying data description, e.g. Raw or Mean)
%
% refl = refl_struct(data,start_time,stop_time,type)
%
% $Id: refl_struct.m,v 1.2 2006/02/23 08:31:33 danji Exp $
function refl = refl_struct(data,start_time,stop_time,type);
refl.data = data;
refl.start_time = start_time;
refl.stop_time = stop_time;
refl.type = type;
return
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -