view test/@Pork/gurk.m @ 10819:f3c984d45dcb

interpn.m: Convert interpolation vectors of non-equal length to nd-arrays.
author Ben Abbott <bpabbott@mac.com>
date Mon, 26 Jul 2010 07:34:37 -0400
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gurk( in, val )

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