runhstd1.m

来自「一种新的时频分析方法的matlab源程序。」· M 代码 · 共 44 行

M
44
字号
function runhstd1(X,num);
echo on;

% --------- RunHStd1.m --- Version 06.Junw.2001 ------ %
%                                                      %
%    Run Huang std: Find the std array that gives      %
%               the std pt. by pt. for N arrays        %
%    Calls: HStdm.m                                    %
%      Usage: runstd1('fileseries',num)                %
%                                                      %
%     This is the Memory Version that Needs All        %
%     Arrays in Memory                                 %
%                                                      %
% --- Steven R. Long at NASA GSFC / WFF -------------- %
%                                                      %
% --- The global passes values to HStd.m ------------- %
%     file_series: name of file without trailing       %
%                    number or .dat extension          %
%     file_ending: .dat, etc.                          %
%     N: Total number of identical arrays              %
%     av_array: Array to accumulate the average        %
%     std_array: Array for the std answers             %
%                                                      %
% --- NOTES: ----------------------------------------- %
%                                                      %
% This Version is for ASCII Array Files Only --------- %
% Put Array Location in MatLab Set Path,     --------- %
%		not in file_series                     --------- %
% Results av_array and std_array             --------- %
%		will also be in memory at close of program ----- %
% ---------------------------------------------------- %

global file_series file_ending N av astd Nstd

% --- Enter Values to Control HStd.m runs ------------ %

file_series = X;						% Part of All Array Names
N = num;												% Number in Series

hstdm;												% Gets std of array series in memory
														% And stores as hstdfile_series.mat

% --- Program RunHStdm.m Ends Normally --- %

⌨️ 快捷键说明

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