User`s guide

2 Targets and Scopes in the MATLAB Interface
2-10
2 Alternatively, you can type
beginrun = get(sc1,'starttime')
or type
sc1.get('starttime')
Note that you cannot use dot notation to get the values of vector object
properties. To get properties of a vector of scopes, use the
get method. For
example, assume you have two scopes,
1 and 2, assigned to the variable sc12.
To get the value of
NumSamples for these scopes, in the MATLAB window, type
get(sc12,'NumSamples')
You get a result like the following:
ans =
[300]
[300]
To get a list of readable properties, type scope_object. The property values are
listed in the MATLAB window.
Note Method names are case sensitive. You must type the entire name.
Property names are not case sensitive. You do not need to type the entire
name as long as the characters you do type are unique for the property.
Using the Method Syntax with Scope Objects
Use the method syntax to run a scope object method. The syntax
method_name(scope_object_vector, argument_list) can be replaced with
scope_object.method_name(argument_list)
scope_object_vector(index_vector).method_name(argument_list)
Unlike properties, for which partial but unambiguous names are permitted,
method names you must enter in full, and in lowercase. For example, to add
signals to the first scope in a vector of all scopes,