Properties Properties of the class
Methods All Methods of the class ordered by category.
Examples Some constructor examples

Back to Class descriptions Back to Class descriptions

Properties

Public Properties Public means that all clients can access the member by its name.
Private Properties Private restricts the access to the class itself. Only methods that are part of the same class can access private members.

Back to Top Back to Top

Public Properties

Properties Description

name

Name of x-y-z data (XYZDATA) object

xunits

Units to interpret the x-axes samples

yunits

Units to interpret the y-axes samples

zunits

Units to interpret the z-axes samples

Private Properties

Properties Description

x

X samples vector

y

Y samples vector

z

Z samples vector

version

CVS version string of the constructor

created

Time object which stores the creation time of the XYZDATA object

Methods

Constructor Constructor of this class
Helper Helper functions only for internal usage
Internal Internal functions only for internal usage
Output Output functions

Back to Top Back to Top

Constructor

Methods Description

xyzdata

XZYDATA X-Y-Z data object class constructor.

Back to Top of Section Back to Top of Section

Helper

Methods Description

get

GET gets xyzdata properties.

isfield

ISFIELD tests if the given field is one of the object properties.

isvalid

ISVALID tests if the given xyzdata has all the correct fields of the correct type.

set

SET sets an xyzdata property.

Back to Top of Section Back to Top of Section

Internal

Methods Description

get_xyz_values

GET_XYZ_VALUES returns the x-axis and/or y-axis and/or z-axis values.

single_operation

SINGLE_OPERATION implements specified operator overload for xyzdata objects.

subsasgn

SUBSASGN define index assignment for xyzdata properties.

subsref

SUBSREF Define field name indexing for xyzdata objects.

Back to Top of Section Back to Top of Section

Output

Methods Description

display

DISPLAY overloads display functionality for xyzdata objects.

save

SAVE an xyzdata object to file.

Back to Top of Section Back to Top of Section