?? runhstd1.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 + -