view test/@Dork/gack.m @ 12325:5d68277d4496

__gnuplot_has_feature__.m: Don't throw an error if gnuplot isn't installed.
author Ben Abbott <bpabbott@mac.com>
date Tue, 01 Feb 2011 18:58:35 -0500
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gack( in, val )

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