Changes between Version 16 and Version 17 of WARPLab/QuickStart


Ignore:
Timestamp:
Mar 29, 2013, 9:49:08 AM (11 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WARPLab/QuickStart

    v16 v17  
    4848== Tips ==
    4949=== MATLAB Object Oriented Syntax ===
     50Throughout the WARPLab MATLAB code, you will see a mix of equivalent ways of calling methods to various objects. Suppose you have an object {{{obj}}} in your workspace and that object has a method {{{method}}}. You can call this method in two completely equivalent ways:
     51
     52{{{
     53obj.method()
     54}}}
     55
     56or
     57
     58{{{
     59method(obj)
     60}}}
     61
     62As a more concrete example, the quick start step above that called the command {{{wl_nodeCmd(nodes,'identify');}}}. An equivalent way of issuing this command to the nodes in the network is {{{nodes.wl_nodeCmd('identify');}}}
     63
     64
    5065=== Jumbo Frames ===
    5166=== pnet Toolbox ===