view examples/@FIRfilter/FIRfilter.m @ 14522:f739e30494c8

condest.m: Fix failing %!test. * condest.m: Use is_function_handle rather than isscalar to determine if input is a function handle.
author Rik <octave@nomad.inbox5.com>
date Tue, 03 Apr 2012 21:16:29 -0700
parents 050bc580cb60
children
line wrap: on
line source

## -*- texinfo -*-
## @deftypefn  {Function File} {} FIRfilter ()
## @deftypefnx {Function File} {} FIRfilter (@var{p})
## Create a FIR filter with polynomial @var{p} as coefficient vector.
## @end deftypefn

function f = FIRfilter (p)

  f.polynomial = [];
  if (nargin == 0)
    p = @polynomial ([1]);
  elseif (nargin == 1)
    if (!isa (p, "polynomial"))
      error ("FIRfilter: expecting polynomial as input argument");
    endif
  else
    print_usage ();
  endif
  f = class (f, "FIRfilter", p);
endfunction