📄 svburg.m
字号:
function [errstr,P,f] = svburg(x,Fs,valueArray)
%SVBURG spectview Wrapper for Burg method.
% [errstr,P,f] = SVBURG(x,Fs,valueArray) computes the power spectrum P
% at frequencies f using the parameters passed in via valueArray:
%
% valueArray entry Description
% ------------ ----------
% 1 Order
% 2 Nfft
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 1.3 $
errstr = '';
P = [];
f = [];
order = valueArray{1};
nfft = valueArray{2};
evalStr = '[P,f] = pburg(x,order,nfft,Fs);';
err = 0;
eval(evalStr,'err = 1;')
if err,
errstr = {'Sorry, couldn''t evaluate pburg; error message:'
lasterr };
return
end
[P,f] = svextrap(P,f,nfft);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -