Main Content

release

Release resources and allow changes toSystem objectproperty values and input characteristics

Syntax

Description

example

release(obj)releases system resources such as memory, file handles, or hardware connections, and allows you to change properties and input characteristics.

Examples

collapse all

Create aCounterobject 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

系统对象你想release.

Extended Capabilities

Version History

Introduced in R2010a