Changes between Version 9 and Version 10 of WARPLab/Reference/Commands/Node


Ignore:
Timestamp:
Mar 25, 2013, 5:23:20 PM (11 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WARPLab/Reference/Commands/Node

    v9 v10  
    11[[TracNav(WARPLab7/TOC)]]
    22
    3 = Node Commands =
     3= Node Commands Technical Reference =
    44
    55Node commands are selected as string inputs to the {{{wl_nodeCmd}}} method in [browser:ResearchApps/PHY/WARPLAB/WARPLab7/M_Code_Reference/classes/wl_node.m wl_node.m]. These strings are each individual cases of the switch statement in {{{procCmd}}} method of [browser:ResearchApps/PHY/WARPLAB/WARPLab7/M_Code_Reference/classes/wl_node.m wl_node.m].
    66
     7== Syntax ==
     8MATLAB allows two valid forms of syntax for calling methods
     9
     10 * Let {{{N}}} be a scalar or vector of {{{wl_node}}} objects
     11 * Let {{{command_string}}} be a string containing a particular command
     12 * Let {{{arg}}} be an argument for that command (optional)
     13
     14Syntax 1: {{{wl_nodeCmd(N, command_string, arg1, arg2, ..., argN)}}}
     15Syntax 2: {{{N.wl_nodeCmd(command_string, arg1, arg2, ..., argN)}}}
     16
     17These two different forms of syntax are identical and either may be used for issuing commands to WARP nodes.
     18
     19
     20== Command List and Documentation ==
    721=== {{{get_hardware_info}}} ===
    822Reads details from the WARP hardware and updates node object parameters[[BR]]