Sophie

Sophie

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

octave-3.4.2-1mdv2010.2.i586.rpm

function s = get (p, f)
  if (nargin == 1)
    s.poly = p.poly;
  elseif (nargin == 2)
    if (ischar (f))
      switch (f)
        case "poly"
          s = p.poly;
        otherwise
          error ("get: invalid property %s", f);
      endswitch
    else
      error ("get: expecting the property to be a string");
    endif
  else
    print_usage ();
  endif
endfunction