Home > classes > @xydata > get.m

get

PURPOSE ^

GET gets xydata properties.

SYNOPSIS ^

function val = get(xy, propName)

DESCRIPTION ^

 GET gets xydata properties.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

 DESCRIPTION: GET gets xydata properties.

 CALL:    name    = get(xy, 'name');
          x       = get(xy, 'x');
          y       = get(xy, 'y');
          xunits  = get(xy, 'xunits');
          yunits  = get(xy, 'yunits');
          created = get(xy, 'created');
          version = get(xy, 'version');

 VERSION: $Id: get.html,v 1.14 2008/03/31 10:27:43 hewitson Exp $

 HISTORY: 30-01-2007 Hewitson
             Creation

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function val = get(xy, propName)
0002 % GET gets xydata properties.
0003 %
0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0005 %
0006 % DESCRIPTION: GET gets xydata properties.
0007 %
0008 % CALL:    name    = get(xy, 'name');
0009 %          x       = get(xy, 'x');
0010 %          y       = get(xy, 'y');
0011 %          xunits  = get(xy, 'xunits');
0012 %          yunits  = get(xy, 'yunits');
0013 %          created = get(xy, 'created');
0014 %          version = get(xy, 'version');
0015 %
0016 % VERSION: $Id: get.html,v 1.14 2008/03/31 10:27:43 hewitson Exp $
0017 %
0018 % HISTORY: 30-01-2007 Hewitson
0019 %             Creation
0020 %
0021 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0022 
0023 VERSION       = '$Id: get.html,v 1.14 2008/03/31 10:27:43 hewitson Exp $';
0024 CATEGORY      = 'Helper';
0025 DEFAULT_PLIST =  plist('property', '');
0026 
0027 val = generic_get(xy, propName, DEFAULT_PLIST, VERSION, CATEGORY);

Generated on Mon 31-Mar-2008 12:20:24 by m2html © 2003