Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > d0009bf9e154ddc34b88269bc581a4a5 > files > 77

octave-3.8.2-3.mga5.x86_64.rpm

function out = subsasgn (f, index, val)
  switch (index.type)
    case "."
      fld = index.subs;
      if (strcmp (fld, "polynomial"))
        out = f;
        out.polynomial = val;
      else
        error ("@FIRfilter/subsref: invalid property \"%s\"", fld);
      endif
    otherwise
      error ("FIRfilter/subsagn: Invalid index type")
  endswitch
endfunction