Changes between Version 10 and Version 11 of 802.11/wlan_exp/GettingStarted


Ignore:
Timestamp:
Apr 10, 2014, 2:32:50 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/GettingStarted

    v10 v11  
    6969All of your WARP v3 nodes should blink their hex displays for 5 seconds. If any node is not blinking, double-check your Ethernet connections (use '''ETH_B'''!), PC IP address and Python setup.
    7070
     71== Next Steps ==
     72
     73Once your setup is complete we suggest exploring the [wiki:../Examples wlan_exp examples].
     74
    7175----
    7276
     
    8892
    8993
    90 
    91 == Useful Packages ==
    92  * '''[https://code.google.com/p/spyderlib/ Spyder]''': this IDE for Python code development is extremely useful when editing code / developing scripts.  Besides automatic syntax checking / highlighting, it integrates the python and ipython consoles to allow interactive debug of code. 
    93 
    94  * '''[http://ipython.org/ ipython]''': this interactive Python environment is great for testing experiment scripts and exploring experiment results. Many integrated Python distributions (Anaconda, Spyder, WinPython, etc) integrate the ipython shell.
    95 
    96  * '''numpy''': Some of the wlan_exp_log examples use [http://www.numpy.org/ numpy 1.7] for processing large arrays of node log entries. numpy is included in many Python distributions. You can check by running this on your command line: {{{python -c "import numpy; print numpy.version.version"}}}. This will print a version number if numpy is installed or an error if it is not. Our examples assume numpy 1.7 or later.
    97 
    98  * '''pandas''': The pandas library provides some very useful tools for dealing with large datasets, especially those where time is a dimension (like log entries).