Changes between Version 5 and Version 6 of QuickStartGuide

Show
Ignore:
Timestamp:
05/22/09 23:00:47 (16 years ago)
Author:
ismael (IP: 62.57.1.15)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QuickStartGuide

    v5 v6  
    55== Downloading & Installing == 
    66 
    7 === From source === 
     7=== Source === 
    88 
    99Download from http://flexnets.upc.edu/downloads/aloe-1.0.tar.gz 
     
    1919}}} 
    2020 
    21 === Debian packages === 
     21=== Debian (i386) === 
    2222 
    2323Edit your /etc/apt/sources.list and add the following line: 
    24    
     24 
     25{{{ 
     26deb http://flexnets.upc.edu/debian/ ./ 
     27}}} 
     28 
     29Then update & install: 
     30{{{ 
     31sudo apt-get update 
     32sudo apt-get install aloe 
     33}}} 
     34 
     35=== Fedora (i386) === 
     36 
     37Download rpm at http://flexnets.upc.edu/downloads/aloe-1.0-1.i386.rpm 
     38 
    2539 
    2640== Running an example == 
     
    4054And your waveform is running! 
    4155 
     56You can now view information about execution time: 
     57{{{ 
     58runph$: execinfo example 
     59}}} 
     60 
     61You can list available statistics or view the output signal: 
     62{{{ 
     63runph$: statls example 
     64runph$: statget example sink signal_out 
     65}}} 
     66 
     67Now change sampling frequency and see its effects in execution time and the output signal: 
     68{{{ 
     69runph$: statset example source freq_sample 10000.0 
     70runph$: execinfo example 
     71runph$: statget example sink signal_out 
     72}}} 
     73 
    4274 
    4375[[BR]]