close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 19 and Version 20 of WiMAX/30/05


Ignore:
Timestamp:
Feb 14, 2012, 3:41:04 PM (12 years ago)
Author:
Nilanjan Paul
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WiMAX/30/05

    v19 v20  
    268268nilanjan@console.sb4:~/exp/dl-iperf/5.2$ sqlite3 -header values.db "select * from t1" > data.tmp
    269269nilanjan@console.sb4:~/exp/dl-iperf/5.2$ more data.tmp
    270 t1key|atten|nBytes|time|kBperS
    271 1|0|10878976|10.0952429920435|8419.01478418953
    272 2|5|11141120|10.2252359986305|8512.2729697053
    273 3|10|11010048|10.1255509853363|8494.94512689406
    274 4|15|11010048|10.1354229897261|8486.67096451635
    275 5|20|2097152|12.675085991621|1292.61450461408
     270t1key|atten|nBytes|time|kBperS|freqkhz|rssi_dbm|cinr_db|txpw_dbm
     2711|0|10878976|10.0256849974394|8477.42573417251|2590000|-53|28|-51
     2722|5|11010048|10.1007899940014|8515.76956367598|2590000|-58|28|-52
     2733|10|10878976|10.1007009893656|8414.46549991756|2590000|-63|27|-44
     2744|15|11010048|10.0756449997425|8537.0216995734|2590000|-68|24|-36
     2755|20|1703936|10.3204459995031|1289.86673644152|2590000|-73|19|-33
     276
    276277}}}
    277278
     
    283284Check the data that was read:
    284285{{{
    285 R> data
    286    t1key atten   nBytes     time    kBperS
    287 1      1     0 10878976 10.09524 8419.0148
    288 2      2     5 11141120 10.22524 8512.2730
    289 3      3    10 11010048 10.12555 8494.9451
    290 4      4    15 11010048 10.13542 8486.6710
    291 5      5    20  2097152 12.67509 1292.6145
     286> data<-read.table("data.tmp",header=TRUE,sep="|")
     287> data
     288  t1key atten   nBytes     time   kBperS freqkhz rssi_dbm cinr_db txpw_dbm
     2891     1     0 10878976 10.02568 8477.426 2590000      -53      28      -51
     2902     2     5 11010048 10.10079 8515.770 2590000      -58      28      -52
     2913     3    10 10878976 10.10070 8414.465 2590000      -63      27      -44
     2924     4    15 11010048 10.07564 8537.022 2590000      -68      24      -36
     2935     5    20  1703936 10.32045 1289.867 2590000      -73      19      -33
     294
    292295}}}
    293296