⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runhstd1.m

📁 一种新的时频分析方法的matlab源程序。
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -