📄 dpssload.m
字号:
function [E,V] = dpssload(N,NW)
%DPSSLOAD Load discrete prolate spheroidal sequences from database.
% [E,V] = DPSSLOAD(N,NW) are the DPSSs E and their concentrations V, with
% length N and time-halfbandwidth product NW, as stored in the DPSS MAT-file
% database, 'dpss.mat'.
%
% See also DPSS, DPSSSAVE, DPSSDIR, DPSSCLEAR.
% Author: T. Krauss
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 1.7 $
index = dpssdir(N,NW);
if isempty(index)
error('DPSSs of given length N and parameter NW are not in database.')
else
key = index.wlist.key;
str = sprintf('load dpss E%g V%g', key, key);
eval(str)
str = sprintf('E = E%g; V = V%g;', key, key);
eval(str)
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -