view test/@Gork/gark.m @ 10437:0a210203481b

update NEWS
author Jaroslav Hajek <highegg@gmail.com>
date Tue, 23 Mar 2010 13:03:06 +0100
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gark( in, val )

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