Changes between Version 4 and Version 5 of WARPLab/Reference/Utility


Ignore:
Timestamp:
Mar 29, 2013, 3:12:54 PM (11 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WARPLab/Reference/Utility

    v4 v5  
    2626File source: [browser:ResearchApps/PHY/WARPLAB/WARPLab7/M_Code_Reference/util/wl_cmd_list.m wl_cmd_list.m]
    2727
     28For the 'wl_cmd_doc' function, a user must know the command string they want documentation for. This function, 'wl_cmd_list', will print the command documentation for all commands in a given class.
     29
     30Examples:
     31
     32'''String:'''
     33  {{{
     34  wl_cmd_list('wl_node')
     35  }}}
     36   Prints all commands/help for 'wl_node' class
     37 
     38'''Class:'''
     39  {{{
     40  wl_cmd_list(wl_node)
     41  }}}
     42   Prints all commands/help for 'wl_node' class
     43 
     44'''Instance:'''
     45  {{{
     46  n = wl_node;
     47  wl_cmd_list(n)
     48  }}}
     49   Prints all commands/help for 'wl_node' class
     50 
     51  {{{
     52  wl_cmd_list(n.baseband)
     53  }}}
     54   Prints all commands/help for the node's baseband object
     55
     56
    2857== wl_initNodes ==
    2958File source: [browser:ResearchApps/PHY/WARPLAB/WARPLab7/M_Code_Reference/util/wl_initNodes.m wl_initNodes.m]