Main Content

reset

Reset internal states of System object

Description

example

reset(obj) resets the internal states and input properties of the System object™ to their initial values.

  • If obj writes or reads a file, reset resets the object to the beginning of the file.

  • If obj changes properties, reset resets the properties to their initial default values.

  • If obj uses a random number generation seed, reset resets the seed property.

Examples

collapse all

Use the reset method to reset internal state and input properties of System object counter. Refer to the example in setup for the class definition of counter.

Create a Counter object and set a property.

obj = Counter;
obj.UseIncrement = false
obj = 
  Counter with properties:

    UseIncrement: false
    UseWrapValue: true
      StartValue: 1
       Increment: 1
       WrapValue: 10

Reset and release the object.

reset(obj)
release(obj)

Input Arguments

collapse all

System object whose state you want to reset.

Extended Capabilities

Version History

Introduced in R2010a