User`s guide
close
rx=cc.rtdx % Create an alias to the RTDX portion of this link.
open(rx,'ichan','w') % Open a channel for write access.
enable(rx,'ichan') % Enable the open channel for use.
After you finish using the open channel, you must close it to avoid
difficulties later on.
close(rx,'ichan')
Or to close all open channels, y ou could u se
close(rx,'all')
See Also disable, open
7-25