www.gusucode.com > signal 工具箱matlab源码程序 > signal/+fspecs/@abstractsbarbmagnphase/thisgetspecs.m

    function specs = thisgetspecs(this)
%THISGETSPECS   Get the specs.

%   Author(s): V. Pellissier
%   Copyright 2005 The MathWorks, Inc.

specs.Frequencies = this.Frequencies;
specs.Magnitudes = abs(this.FreqResponse);
specs.Phases = angle(this.FreqResponse);


% [EOF]