Skip to Main Content Skip to Search
Product Documentation

clear (serial) - Remove serial port object from MATLAB workspace

Syntax

clear obj

Description

clear obj removes obj from the MATLAB workspace, where obj is a serial port object or an array of serial port objects.

Tips

If obj is connected to the device and it is cleared from the workspace, then obj remains connected to the device. You can restore obj to the workspace with the instrfind function. A serial port object connected to the device has a Status property value of open.

To disconnect obj from the device, use the fclose function. To remove obj from memory, use the delete function. You should remove invalid serial port objects from the workspace with clear.

Examples

This example creates the serial port object s on a Windows platform, copies s to a new variable scopy, and clears s from the MATLAB workspace. s is then restored to the workspace with instrfind and is shown to be identical to scopy.

s = serial('COM1');
scopy = s;
clear s
s = instrfind;
isequal(scopy,s)
ans =
     1

See Also

delete | fclose | instrfind | isvalid | Status

  


» Learn more
» Download free kit
» Get trial software

 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS