Advertisement
chiara_cara

Untitled

May 10th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.31 KB | None | 0 0
  1. In [24]: rs
  2. Out[24]:
  3. array([[  2.55810000e+04,  -2.82062595e+03,  -3.06363987e+00,
  4.           3.12795697e+04,   3.11152152e+04,   2.79445100e+01,
  5.           3.97193900e+01,   2.80400300e+01,   9.00965200e+01,
  6.           9.00496900e+01,   8.97949000e+01],
  7.        [  2.55820000e+04,  -3.49445577e+03,  -3.20011834e+00,
  8.           3.12777149e+04,   3.11152216e+04,   2.79445200e+01,
  9.           3.97193800e+01,   2.80400400e+01,   9.00964900e+01,
  10.           9.00497000e+01,   8.97948600e+01],
  11.        [  2.55830000e+04,  -4.13311014e+03,  -3.36155015e+00,
  12.           3.12758398e+04,   3.11152278e+04,   2.79445300e+01,
  13.           3.97193700e+01,   2.80400400e+01,   9.00964600e+01,
  14.           9.00497100e+01,   8.97948200e+01],
  15.        [  2.55840000e+04,  -4.67116759e+03,  -3.54400035e+00,
  16.           3.12739407e+04,   3.11152340e+04,   2.79445400e+01,
  17.           3.97193600e+01,   2.80400400e+01,   9.00964300e+01,
  18.           9.00497200e+01,   8.97947800e+01]])
  19.  
  20. In [35]: rs[:, 4]
  21. Out[35]: array([ 31115.2152113,  31115.2215634,  31115.2278417,  31115.2340453])
  22.  
  23. In [36]: rs[:, 0]
  24. Out[36]: array([ 25581.,  25582.,  25583.,  25584.])
  25.  
  26. In [37]:  gg.simplePlot(rs[:, 0], rs[:, 2], xlabel, ylabel, title,output)
  27.  
  28. In [41]:  gg.simplePlot(rs[:, 0], rs[:, 4], xlabel, ylabel, title,output)
  29.  
  30. result:
  31. http://i.imgur.com/VoDenx1.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement