|
|
|||
|
|
| Clock[] represents a clock variable whose value cycles continuously from 0 to 1 once per second when it appears inside a dynamically updated object such as a Dynamic. |
| Clock[t] cycles from 0 to t every t seconds. |
| Clock[vmax, t] cycles from 0 to vmax every t seconds. |
| Clock[{vmin, vmax}, t] cycles through the range vmin to vmax every t seconds. |
| Clock[{vmin, vmax}] cycles through the range vmin to vmax over the course of vmax-vmin seconds. |
| Clock[{vmin, vmax, dv}] cycles from vmin to vmax in steps of dv, spending dv seconds at each value. |
| Clock[{vmin, vmax, dv}, t] cycles from vmin to vmax in steps dv every t seconds. |
| Clock[vals, t, n] goes through the cycle only n times, then always yields only the maximum value. |