Main Content

daqhelp

Help for toolbox interface

Description

example

daqhelp displays a comprehensive listing of Data Acquisition Toolbox™ functions along with a brief description of each. Links in the output provide access to more detailed information.

example

daqhelp(functionname) returns help for the function specified as a character vector or string.

example

helptext = daqhelp('functionname') assigns the help text output to the variable out.

Examples

collapse all

Get overview help for Data Acquisition Toolbox.

daqhelp

Get help for a specified function.

daqhelp("addinput")

Get help for a specified function, assigning the help text to a variable.

helptext = daqhelp("addinput");

Input Arguments

collapse all

Function for which you want help, specified as a character vector or string.

Example: "addinput"

Data Types: char | string

Output Arguments

collapse all

Help text, returned as a character vector.

Version History

Introduced before R2006a