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

📄 runhstdm.m

📁 一种新的时频分析方法的matlab源程序。
💻 M
字号:
echo on;

% --- RUNHSTDM finds the std array ------------------- %
%                                                      %
%    Run Huang std: Find the std array that gives      %
%               the std pt. by pt. for N arrays        %
%    Calls: HSTDM                                      %
%                                                      %
%     This is the Memory Version that Needs All        %
%     Arrays in Memory                                 %
%                                                      %
% --- The global passes values to hstdm.m ------------ %
%     file_series: name of file without trailing       %
%                    number or .dat extension          %
%     file_ending: .dat, etc.                          %
%     N: Total number of identical arrays              %
%     av: Array to accumulate the average              %
%     astd: 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 and astd arrays                           %
% will also be in memory at close of program           %
%                                                      %
% --- Steven R. Long at NASA GSFC / WFF -------------- %
% --------- runhstdm.m --- Version 13.April.2000 ----- %

global file_series file_ending N av astd Nstd

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

file_series = 'n';						% Part of All Array Names
N = 4;												% 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 + -