view test/classes/@Snork/set.m @ 31225:3eab70385569

sparse-xpow.cc: Use faster multiplication technique, this time for complex
author Arun Giridhar <arungiridhar@gmail.com>
date Sun, 11 Sep 2022 13:53:38 -0400
parents c68b077c8fd6
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 'gick'
        s.gick = propValue;
      otherwise
        error ([propName, ' is not a valid Snork property']);
    end
  end

end