at
Execute chart at event broadcast or specified time
Description
at(
returns
n
,E
)true
if the event E
has occurred exactly
n
times since the associated state became active. Otherwise, the
operator returns false
.
at(
returns
n
,tick
)true
if the chart has woken up exactly n
times since
the associated state became active. Otherwise, the operator returns
false
.
The implicit event tick
is not supported when a Stateflow® chart in a Simulink® model has input events.
at(
returns
n
,sec
)true
if exactly n
seconds have elapsed since the
associated state became active. Otherwise, the operator returns
false
.
In standalone charts in MATLAB®, specify n
with a value greater than or equal to
0.001
. The operator creates a MATLAB
timer
object that generates an implicit event to wake up the chart. MATLAB
timer
objects are limited to 1 millisecond precision. For more
information, see Events in Standalone Charts.
The
timer
object is created when the chart finishes executing theentry
actions of the associated state and its substates. If you specifyn
as an expression whose value changes during chart execution, the chart does not adjust the temporal delay of thetimer
object.The
timer
object starts running at the end of the chart step when the associated state becomes active. This step can include the execution of other parallel states in the chart.If the chart is processing another operation when it receives the implicit event from the
timer
object, the chart queues the event. When the current step is completed, the chart processes the event.If the state associated with the temporal logic operator becomes inactive before the chart processes the implicit event, the event does not wake up the chart.
Note
This syntax is supported only in standalone charts in MATLAB. For charts in Simulink models, use the after
operator instead.
For more information, see Do Not Use at for Absolute-Time Temporal Logic in Charts in Simulink Models.
Examples
Tips
You can use quotation marks to enclose the keywords
'tick'
and'sec'
. For example,at(5,'tick')
is equivalent toat(5,tick)
.The Stateflow chart resets the counter used by the
at
operator each time the associated state reactivates.Standalone charts in MATLAB define absolute-time temporal logic in terms of wall-clock time, which is limited to 1 millisecond precision.
Version History
Introduced in R2014b