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

    function [N,F,A,P,nfpts] = validatespecs(this)
%VALIDATESPECS   Validate the specs

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

% Get filter order, amplitudes and frequencies 
N = this.FilterOrder;
[F,A,P,nfpts] = super_validatespecs(this);

% [EOF]