view test/@Blork/Blork.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 [ s ] = Blork( bleek )
% Test class.

    if (nargin==1) && isa(bleek, 'Blork')
        s = bleek;
    else
      if nargin==0
        s.bleek = 1;
      else
        s.bleek = bleek;
      end
      s = class(s, 'Blork');

    end
        
end