view test/@Spork/set.m @ 10782:d1f920d1ce0c

simplify code in rand.cc
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 12 Jul 2010 11:09:59 +0200
parents f9ab19428cd8
children
line wrap: on
line source

function [ s ] = set( s, varargin )

  propArgs = varargin;
  while (length(propArgs) >= 2)
    propName  = propArgs{1};
    propValue = propArgs{2};
    propArgs  = propArgs(3:end);
    switch propName
      case 'geek'
        s.geek = propValue;
      otherwise
        error([propName, ' is not a valid Spork property']);
    end
  end

end