view test/@Gork/cork.m @ 12288:f07e6b4d34c7 release-3-4-x

Add function compare_versions to documentation. Update docstrings for surrounding functions in manual.
author Rik <octave@nomad.inbox5.com>
date Sat, 29 Jan 2011 16:54:14 -0800
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = cork( in, val )

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