refl_struct.m

来自「大气模型计算」· M 代码 · 共 20 行

M
20
字号
% 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 + =
减小字号Ctrl + -
显示快捷键?