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 data object

xunits

Units to interpret the x-axes samples

yunits

Units to interpret the y-axes samples

Private Properties

Properties Description

x

X samples vector

y

Y samples vector

version

CVS version string of the constructor

created

Time object which stores the creation time of the XYDATA 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

xydata

XYDATA X-Y data object class constructor.

Back to Top of Section Back to Top of Section

Helper

Methods Description

get

GET gets xydata properties.

isfield

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

isvalid

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

set

SET sets a xydata property.

Back to Top of Section Back to Top of Section

Internal

Methods Description

get_xy_values

GET_XY_VALUES returns the x-axis and/or y-axis values.

reshapeX

RESHAPEX reshape the X to match the Y vector.

set_xy_axis

SET_XY_AXIS set the x-axis and y-axis values.

single_operation

SINGLE_OPERATION implements specified operator overload for xydata objects.

subsasgn

SUBSASGN define index assignment for xydata properties.

subsref

SUBSREF Define field name indexing for xydata objects.

Back to Top of Section Back to Top of Section

Output

Methods Description

char

CHAR convert a param object into a string.

display

DISPLAY overloads display functionality for xydata objects.

save

SAVE an xydata object to file.

Back to Top of Section Back to Top of Section