view test/classes/@Snork/gick.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 6fe6ac8bbfdb
children
line wrap: on
line source

function out = gick (in, val)

  if (nargin == 1)
    out = in.gick;
  else
    in.gick = val;
    out = in;
  end

end