Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > by-pkgid > be5d6593809ec369f8ea85fdb1d0d4e4 > files > 136

octave-3.4.2-1mdv2010.2.i586.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