instrhelp
(To be removed) Help for instrument object type, function, or property
This function that uses serial
, Bluetooth
,
tcpip
, udp
, visa
,
gpib
, or i2c
will be removed in a future release.
Use serialport
, bluetooth
,
tcpclient
,
tcpserver
,
udpport
,
visadev
,
aardvark
/device
, or
ni845x
/device
instead. For more information on updating your code, see Version History.
Syntax
instrhelp
instrhelp('name
')
out = instrhelp('name
')
instrhelp(obj)
instrhelp(obj,'name
')
out = instrhelp(obj,'name
')
Arguments
| A function name, property name, or instrument object type. |
| An instrument object. |
| The help text. |
Description
instrhelp
returns a complete listing of
toolbox functions, with a brief description of each.
instrhelp('
returns help for the function, property, or instrument object type specified by
name
')name
.
You can return specific instrument object information by specifying
name
in the form object/function
or object.property
. For example, to return the help for a serial
port object's fprintf
function,
name
would be serial/fprintf
. To
return the help for a serial port object's Parity
property,
name
would be
serial.parity
.
out = instrhelp('
returns the help text to name
')out
.
instrhelp(obj)
returns a complete listing
of functions and properties for obj
, with a brief description of
each. Help for the constructor is also returned.
instrhelp(obj,'
returns help for the function or property specified by
name
')name
associated with obj
.
out = instrhelp(obj,'
returns the help text to name
')out
.
Examples
The following commands illustrate some of the ways you can get function and property help without creating an instrument object:
instrhelp gpib
out = instrhelp('gpib.m');
instrhelp set
instrhelp EOSCharCode
instrhelp('gpib.eoscharcode')
The following commands illustrate some of the ways you can get function and property help for an existing instrument object:
g = gpib('ni',0,1);
instrhelp(g)
instrhelp(g,'EOSMode');
out = instrhelp(g,'trigger')
Tips
When returning property help, the names in the See Also section that contain all uppercase letters are function names. The names that contain a mixture of upper and lowercase letters are property names. When returning function help, the See Also section contains only function names.