view test/@Dork/get.m @ 9590:b18a50c56144

More care with contour integrals in quadgk
author David Bateman <dbateman@free.fr>
date Mon, 31 Aug 2009 23:24:07 +0200
parents f9ab19428cd8
children
line wrap: on
line source

function [ v ] = get( s, propName )

  switch propName
    case 'gack'
      v = s.gack;
    otherwise
      v = get(s.Snork,propName);
  end

end