You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(12) |
Sep
(12) |
Oct
(56) |
Nov
(65) |
Dec
(37) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(59) |
Feb
(78) |
Mar
(153) |
Apr
(205) |
May
(184) |
Jun
(123) |
Jul
(171) |
Aug
(156) |
Sep
(190) |
Oct
(120) |
Nov
(154) |
Dec
(223) |
2005 |
Jan
(184) |
Feb
(267) |
Mar
(214) |
Apr
(286) |
May
(320) |
Jun
(299) |
Jul
(348) |
Aug
(283) |
Sep
(355) |
Oct
(293) |
Nov
(232) |
Dec
(203) |
2006 |
Jan
(352) |
Feb
(358) |
Mar
(403) |
Apr
(313) |
May
(165) |
Jun
(281) |
Jul
(316) |
Aug
(228) |
Sep
(279) |
Oct
(243) |
Nov
(315) |
Dec
(345) |
2007 |
Jan
(260) |
Feb
(323) |
Mar
(340) |
Apr
(319) |
May
(290) |
Jun
(296) |
Jul
(221) |
Aug
(292) |
Sep
(242) |
Oct
(248) |
Nov
(242) |
Dec
(332) |
2008 |
Jan
(312) |
Feb
(359) |
Mar
(454) |
Apr
(287) |
May
(340) |
Jun
(450) |
Jul
(403) |
Aug
(324) |
Sep
(349) |
Oct
(385) |
Nov
(363) |
Dec
(437) |
2009 |
Jan
(500) |
Feb
(301) |
Mar
(409) |
Apr
(486) |
May
(545) |
Jun
(391) |
Jul
(518) |
Aug
(497) |
Sep
(492) |
Oct
(429) |
Nov
(357) |
Dec
(310) |
2010 |
Jan
(371) |
Feb
(657) |
Mar
(519) |
Apr
(432) |
May
(312) |
Jun
(416) |
Jul
(477) |
Aug
(386) |
Sep
(419) |
Oct
(435) |
Nov
(320) |
Dec
(202) |
2011 |
Jan
(321) |
Feb
(413) |
Mar
(299) |
Apr
(215) |
May
(284) |
Jun
(203) |
Jul
(207) |
Aug
(314) |
Sep
(321) |
Oct
(259) |
Nov
(347) |
Dec
(209) |
2012 |
Jan
(322) |
Feb
(414) |
Mar
(377) |
Apr
(179) |
May
(173) |
Jun
(234) |
Jul
(295) |
Aug
(239) |
Sep
(276) |
Oct
(355) |
Nov
(144) |
Dec
(108) |
2013 |
Jan
(170) |
Feb
(89) |
Mar
(204) |
Apr
(133) |
May
(142) |
Jun
(89) |
Jul
(160) |
Aug
(180) |
Sep
(69) |
Oct
(136) |
Nov
(83) |
Dec
(32) |
2014 |
Jan
(71) |
Feb
(90) |
Mar
(161) |
Apr
(117) |
May
(78) |
Jun
(94) |
Jul
(60) |
Aug
(83) |
Sep
(102) |
Oct
(132) |
Nov
(154) |
Dec
(96) |
2015 |
Jan
(45) |
Feb
(138) |
Mar
(176) |
Apr
(132) |
May
(119) |
Jun
(124) |
Jul
(77) |
Aug
(31) |
Sep
(34) |
Oct
(22) |
Nov
(23) |
Dec
(9) |
2016 |
Jan
(26) |
Feb
(17) |
Mar
(10) |
Apr
(8) |
May
(4) |
Jun
(8) |
Jul
(6) |
Aug
(5) |
Sep
(9) |
Oct
(4) |
Nov
|
Dec
|
2017 |
Jan
(5) |
Feb
(7) |
Mar
(1) |
Apr
(5) |
May
|
Jun
(3) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2025 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(16) |
2
(22) |
3
(28) |
4
(17) |
5
(17) |
6
(7) |
7
|
8
(15) |
9
(28) |
10
(26) |
11
(28) |
12
(19) |
13
(5) |
14
(3) |
15
(21) |
16
(28) |
17
(11) |
18
(18) |
19
(6) |
20
(5) |
21
(18) |
22
(11) |
23
(22) |
24
(28) |
25
(17) |
26
(17) |
27
(7) |
28
(16) |
29
(24) |
30
(25) |
31
(14) |
|
|
|
From: Ryan M. <rm...@gm...> - 2010-03-31 17:00:10
|
On Wed, Mar 31, 2010 at 10:21 AM, Omer Khalid <Ome...@ce...> wrote: > Hi Paul, > Thanks for your prompt response. It did help :) > But it seems that axis don't seems to accept title, xlable and ylable values > any more. Any ideas on that? If you're trying to use the functions plt.title() and plt.xlabel(), they only work on the current axes object (basically, the most recently created one). You'll want to try to use methods on the axes themselves: ax1.set_title('ax1 title') ax1.set_xlabel('xlabel') ax2.set_title('ax2 title') ax2.set_xlabel('xlabel') Ryan > On Wed, Mar 31, 2010 at 17:43, <PH...@ge...> wrote: >> >> From: Omer Khalid [mailto:Ome...@ce...] >> Sent: Wednesday, March 31, 2010 6:20 AM >> To: Matplotlib Users >> Subject: [Matplotlib-users] How to show separate legend for each subplot >> >> Hi, >> >> I am wondering is there a way one could show a separate legend for each >> subplot in a figure? I would really really appreciate any ideas on this. >> `~~~~~~~~~~~~~~~~~~~~~~~~~' >> >> Omer, >> >> Give this a shot: >> # code ---------> >> import matplotlib.pyplot as pl >> fig = pl.figure() >> ax1 = fig.add_subplot(1,2,1) >> ax2 = fig.add_subplot(1,2,2) >> >> ax1.plot([1,2], [3,4], 'ko', label='First Axes') >> ax2.plot([2,3], [4,5[, 'bs', label='Second Axes') >> >> ax1.legend() >> ax2.legend() >> # <------------- code >> >> There's also an example in the Examples section of the MPL website: >> >> http://matplotlib.sourceforge.net/examples/pylab_examples/legend_demo3.html >> >> Hope that helps, >> -paul > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > > -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Omer K. <Ome...@ce...> - 2010-03-31 16:21:17
|
Hi Paul, Thanks for your prompt response. It did help :) But it seems that axis don't seems to accept title, xlable and ylable values any more. Any ideas on that? Cheers Omer On Wed, Mar 31, 2010 at 17:43, <PH...@ge...> wrote: > From: Omer Khalid [mailto:Ome...@ce...] > Sent: Wednesday, March 31, 2010 6:20 AM > To: Matplotlib Users > Subject: [Matplotlib-users] How to show separate legend for each subplot > > Hi, > > I am wondering is there a way one could show a separate legend for each > subplot in a figure? I would really really appreciate any ideas on this. > `~~~~~~~~~~~~~~~~~~~~~~~~~' > > Omer, > > Give this a shot: > # code ---------> > import matplotlib.pyplot as pl > fig = pl.figure() > ax1 = fig.add_subplot(1,2,1) > ax2 = fig.add_subplot(1,2,2) > > ax1.plot([1,2], [3,4], 'ko', label='First Axes') > ax2.plot([2,3], [4,5[, 'bs', label='Second Axes') > > ax1.legend() > ax2.legend() > # <------------- code > > There's also an example in the Examples section of the MPL website: > http://matplotlib.sourceforge.net/examples/pylab_examples/legend_demo3.html > > Hope that helps, > -paul > |
From: <PH...@Ge...> - 2010-03-31 15:45:47
|
From: Omer Khalid [mailto:Ome...@ce...] Sent: Wednesday, March 31, 2010 6:14 AM To: Matplotlib Users Subject: [Matplotlib-users] How to show last value on the line Hi, I have produced number of charts in my research thesis. On any given chart, there are number of lines. I would like to display the last value on each line to show at which precise value it's ending. Thanks, Omer ~~~~~~~~~~~~~~~~~~~~ Omer, Give something like this a shot: http://matplotlib.sourceforge.net/examples/pylab_examples/annotation_demo.html Remember that in python you can easily access the last element of an array (x) with x[-1]. |
From: <PH...@Ge...> - 2010-03-31 15:43:24
|
From: Omer Khalid [mailto:Ome...@ce...] Sent: Wednesday, March 31, 2010 6:20 AM To: Matplotlib Users Subject: [Matplotlib-users] How to show separate legend for each subplot Hi, I am wondering is there a way one could show a separate legend for each subplot in a figure? I would really really appreciate any ideas on this. `~~~~~~~~~~~~~~~~~~~~~~~~~' Omer, Give this a shot: # code ---------> import matplotlib.pyplot as pl fig = pl.figure() ax1 = fig.add_subplot(1,2,1) ax2 = fig.add_subplot(1,2,2) ax1.plot([1,2], [3,4], 'ko', label='First Axes') ax2.plot([2,3], [4,5[, 'bs', label='Second Axes') ax1.legend() ax2.legend() # <------------- code There's also an example in the Examples section of the MPL website: http://matplotlib.sourceforge.net/examples/pylab_examples/legend_demo3.html Hope that helps, -paul |
From: Omer K. <Ome...@ce...> - 2010-03-31 13:20:04
|
Hi, I am wondering is there a way one could show a separate legend for each subplot in a figure? I would really really appreciate any ideas on this. Thanks, Omer |
From: Omer K. <Ome...@ce...> - 2010-03-31 13:14:13
|
Hi, I have produced number of charts in my research thesis. On any given chart, there are number of lines. I would like to display the last value on each line to show at which precise value it's ending. Thanks, Omer |
From: yogesh k. <yog...@gm...> - 2010-03-31 09:12:05
|
0.053984 0.053983 0.053980 0.053999 0.054119 0.054526 0.055319 0.056504 0.058029 0.059709 0.061369 0.062987 0.064455 0.065613 0.066364 0.066632 0.066423 0.065936 0.065319 0.064583 0.063820 0.063156 0.062718 0.062739 0.063432 0.064922 0.067450 0.071387 0.077140 0.085242 0.096015 0.109363 0.124985 0.142379 0.160779 0.179595 0.197800 0.214061 0.227284 0.237090 0.243365 0.246919 0.248384 0.247664 0.245163 0.241907 0.238405 0.234970 0.231490 0.226807 0.220163 0.211887 0.202004 0.190443 0.177465 0.162822 0.146831 0.130684 0.115286 0.100947 0.088274 0.077534 0.069004 0.063175 0.060156 0.059252 0.059997 0.062025 0.064675 0.067132 0.068816 0.069358 0.068748 0.067607 0.066427 0.065130 0.063954 0.063351 0.063514 0.064658 0.066611 0.068410 0.069413 0.069722 0.069213 0.067799 0.065586 0.062375 0.058365 0.054452 0.051329 0.049410 0.049338 0.051672 0.056667 0.064278 0.073868 0.083930 0.092825 0.099200 0.101004 0.095657 0.081657 0.059278 0.030151 -0.001818 -0.032298 -0.058433 -0.075355 -0.076492 -0.057263 -0.015971 0.046735 0.125459 0.214966 0.314117 0.418401 0.521085 0.616810 0.701082 0.771093 0.830287 0.878763 0.910903 0.922198 0.908813 0.866835 0.798611 0.706279 0.590665 0.456666 0.311130 0.164495 0.032352 -0.073105 -0.150533 -0.200374 -0.230340 -0.248294 -0.254532 -0.254975 -0.263710 -0.288327 -0.331907 -0.392540 -0.456408 -0.513020 -0.565358 -0.611246 -0.646568 -0.670446 -0.677653 -0.668289 -0.654574 -0.643184 -0.632761 -0.624442 -0.617123 -0.609139 -0.605353 -0.606879 -0.608760 -0.609212 -0.607929 -0.604080 -0.599751 -0.596219 -0.591266 -0.584621 -0.577841 -0.571281 -0.565438 -0.560764 -0.556199 -0.551251 -0.546577 -0.542111 -0.537254 -0.531902 -0.525879 -0.519202 -0.512472 -0.506062 -0.499682 -0.493281 -0.486784 -0.480076 -0.473355 -0.466721 -0.459890 -0.452825 -0.445553 -0.438110 -0.430607 -0.423167 -0.415669 -0.408065 -0.400228 -0.392100 -0.383741 -0.375239 -0.366541 -0.357725 -0.348785 -0.339768 -0.330682 -0.321617 -0.312619 -0.303784 -0.295075 -0.286578 -0.278391 -0.270653 -0.263409 -0.256754 -0.250626 -0.244940 -0.239440 -0.233889 -0.228038 -0.221547 -0.213853 -0.204614 -0.193717 -0.181216 -0.167341 -0.152433 -0.136531 -0.119939 -0.103044 -0.086138 -0.069222 -0.052128 -0.034008 -0.014253 0.007394 0.031383 0.058576 0.089217 0.123294 0.160172 0.198589 0.237012 0.274602 0.309784 0.340909 0.366529 0.385911 0.398878 0.406980 0.411325 0.412063 0.410129 0.407337 0.404693 0.402878 0.401833 0.399907 0.395967 0.390524 0.383528 0.374744 0.364340 0.351704 0.336999 0.321799 0.306998 0.292363 0.277956 0.263247 0.247876 0.232468 0.217293 0.201838 0.186142 0.170132 0.153860 0.137716 0.122069 0.106795 0.092024 0.077723 0.064021 0.051277 0.039891 0.029969 0.021787 0.015388 0.010740 0.007597 0.005756 0.005044 0.005153 0.005502 0.005716 0.005661 0.005313 0.004911 0.004662 0.004421 0.004184 0.004070 0.004091 0.004363 0.004854 0.005190 0.005176 0.004940 0.004546 0.004140 0.003875 0.003639 0.003411 0.003330 0.003416 0.003664 0.004038 0.004337 0.004438 0.004406 0.004286 0.004169 0.004147 0.004150 0.004148 0.004185 0.004254 0.004382 0.004578 0.004762 0.004895 0.005000 0.005086 0.005190 0.005343 0.005513 0.005685 0.005867 0.006050 0.006246 0.006463 0.006689 0.006917 0.007150 0.007387 0.007636 0.007899 0.008173 0.008452 0.008740 0.009031 0.009328 0.009631 0.009941 0.010256 0.010578 0.010902 0.011233 0.011569 0.011910 0.012254 0.012603 0.012956 0.013314 0.013675 0.014042 0.014416 0.014794 0.015174 0.015557 0.015941 0.016323 0.016700 0.017073 0.017438 0.017798 0.018152 0.018508 0.018871 0.019247 0.019639 0.020063 0.020523 0.021017 0.021539 0.022079 0.022621 0.023156 0.023668 0.024139 0.024550 0.024891 0.025151 0.025341 0.025462 0.025502 0.025458 0.025331 0.025126 0.024867 0.024582 0.024306 0.024087 0.023987 0.024082 0.024474 0.025231 0.026355 0.027818 0.029538 0.031412 0.033379 0.035314 0.037040 0.038423 0.039418 0.040021 0.040366 0.040559 0.040589 0.040514 0.040463 0.040497 0.040665 0.040949 0.041177 0.041235 0.041148 0.040893 0.040444 0.039812 0.038957 0.037917 0.036866 0.035934 0.035175 0.034686 0.034545 0.034799 0.035502 0.036628 0.038022 0.039545 0.041105 0.042540 0.043654 0.044305 0.044422 0.044018 0.043276 0.042355 0.041279 0.040171 0.039224 0.038558 0.038264 0.038339 0.038571 0.038823 0.039148 0.039529 0.039928 0.040352 0.040728 0.041070 0.041565 0.042318 0.043310 0.044554 0.046014 0.047641 0.049480 0.051502 0.053583 0.055625 0.057547 0.059237 0.060628 0.061647 0.062231 0.062370 0.062142 0.061615 0.060830 0.059879 0.058898 0.057988 0.057211 0.056591 0.056055 0.055569 0.055208 0.055015 0.055013 0.055239 0.055653 0.056239 0.057047 0.058056 0.059176 0.060288 0.061205 0.061787 0.062074 0.062126 0.062070 0.062069 0.062204 0.062639 0.063674 0.065526 0.068340 0.072207 0.077080 0.082954 0.090048 0.098501 0.108465 0.119995 0.132936 0.147036 0.162112 0.177716 0.193376 0.208374 0.221866 0.233085 0.241809 0.247916 0.251794 0.253758 0.253760 0.252065 0.249419 0.246203 0.242555 0.238373 0.232937 0.225744 0.217013 0.206769 0.194904 0.181606 0.166805 0.150856 0.134721 0.119238 0.104784 0.092026 0.081439 0.073443 0.068428 0.066439 0.066754 0.068802 0.072195 0.076180 0.079719 0.082093 0.082929 0.082241 0.080814 0.079287 0.077587 0.076040 0.075276 0.075577 0.077204 0.079953 0.082640 0.084446 0.085444 0.085394 0.084054 0.081454 0.077337 0.071962 0.066500 0.061881 0.058603 0.057504 0.059379 0.064615 0.073221 0.084461 0.096437 0.107147 0.115058 0.117767 0.112242 0.096749 0.071601 0.038757 0.002977 -0.030537 -0.058367 -0.074722 -0.071803 -0.044338 0.009349 0.087930 0.184209 0.291014 0.406037 0.522676 0.631433 0.725094 0.798631 0.849830 0.885043 0.907187 0.911712 0.896741 0.862261 0.806908 0.734315 0.646394 0.540207 0.417696 0.285676 0.152872 0.032029 -0.066192 -0.142052 -0.195877 -0.231487 -0.254239 -0.265065 -0.269322 -0.280462 -0.306100 -0.347772 -0.403512 -0.462319 -0.515120 -0.564505 -0.608394 -0.641907 -0.663483 -0.669031 -0.658893 -0.644196 -0.631364 -0.619005 -0.608258 -0.598910 -0.589857 -0.585501 -0.586851 -0.588983 -0.589935 -0.589606 -0.587200 -0.584362 -0.582172 -0.578427 -0.572811 -0.567039 -0.561561 -0.556679 -0.552735 -0.548645 -0.543837 -0.539026 -0.534194 -0.528698 -0.522480 -0.515483 -0.507875 -0.500514 -0.493959 -0.487908 -0.482264 -0.476811 -0.471265 -0.465783 -0.460322 -0.454323 -0.447580 -0.440074 -0.431884 -0.423400 -0.414978 -0.406495 -0.398018 -0.389613 -0.381321 -0.373312 -0.365662 -0.358042 -0.350338 -0.342557 -0.334662 -0.326575 -0.318341 -0.309891 -0.301306 -0.292754 -0.284432 -0.276419 -0.268883 -0.261877 -0.255483 -0.249721 -0.244510 -0.239472 -0.234313 -0.228798 -0.222581 -0.215147 -0.206176 -0.195476 -0.183045 -0.169099 -0.153913 -0.137452 -0.119921 -0.101542 -0.082514 -0.062893 -0.042626 -0.021061 0.002145 0.027071 0.053856 0.082946 0.114279 0.147756 0.182775 0.218400 0.253415 0.287062 0.318053 0.345206 0.367391 0.384062 0.395074 0.401595 0.404493 0.404061 0.401231 0.397704 0.394490 0.392097 0.390445 0.388175 0.384259 0.379020 0.372239 0.363367 0.352321 0.338606 0.322453 0.305432 0.288572 0.271711 0.255091 0.238592 0.222125 0.206323 0.191416 0.176620 0.161737 0.146751 0.131628 0.116527 0.101707 0.086936 0.072337 0.058166 0.044720 0.032277 0.021232 0.011682 0.003855 -0.002102 -0.006214 -0.008901 -0.010446 -0.011006 -0.010892 -0.010605 -0.010457 -0.010649 -0.011215 -0.011867 -0.012387 -0.012895 -0.013367 -0.013724 -0.013961 -0.013938 -0.013677 -0.013546 -0.013728 -0.014116 -0.014660 -0.015220 -0.015654 -0.016076 -0.016498 -0.016780 -0.016894 -0.016844 -0.016665 -0.016551 -0.016621 -0.016810 -0.017073 -0.017334 -0.017509 -0.017665 -0.017827 -0.017950 -0.018034 -0.018056 -0.018011 -0.017975 -0.017986 -0.018021 -0.018068 -0.018099 -0.018082 -0.018048 -0.018012 -0.017964 -0.017911 -0.017843 -0.017753 -0.017656 -0.017556 -0.017450 -0.017339 -0.017217 -0.017078 -0.016929 -0.016771 -0.016605 -0.016432 -0.016251 -0.016060 -0.015860 -0.015652 -0.015436 -0.015214 -0.014983 -0.014746 -0.014502 -0.014252 -0.013994 -0.013730 -0.013458 -0.013180 -0.012893 -0.012599 -0.012296 -0.011986 -0.011666 -0.011337 -0.010997 -0.010649 -0.010287 -0.009912 -0.009523 -0.009123 -0.008709 -0.008283 -0.007844 -0.007395 -0.006932 -0.006458 -0.005972 -0.005472 -0.004953 -0.004413 -0.003847 -0.003254 -0.002623 -0.001953 -0.001245 -0.000505 0.000263 0.001044 0.001834 0.002618 0.003387 0.004126 0.004833 0.005507 0.006165 0.006818 0.007471 0.008133 0.008830 0.009569 0.010346 0.011146 0.011938 0.012685 0.013368 0.013952 0.014400 0.014686 0.014803 0.014769 0.014648 0.014500 0.014359 0.014288 0.014377 0.014686 0.015245 0.016054 0.017046 0.018164 0.019405 0.020729 0.022073 0.023386 0.024611 0.025708 0.026715 0.027619 0.028338 0.028799 0.028921 0.028635 0.027976 0.026984 0.025711 0.024258 0.022733 0.021304 0.020226 0.019688 0.019727 0.020332 0.021361 0.022674 0.024265 0.026032 0.027760 0.029319 0.030637 0.031710 0.032748 0.033877 0.035018 0.036157 0.037320 0.038471 0.039676 0.040920 0.042033 0.042926 0.043622 0.044125 0.044514 0.044849 0.045070 0.045166 0.045203 0.045197 0.045193 0.045228 0.045299 0.045413 0.045607 0.045898 0.046301 0.046826 0.047461 0.048188 0.048995 0.049861 0.050786 0.051772 0.052836 0.053984 0.055198 0.056459 0.057761 0.059077 0.060388 0.061652 0.062817 0.063822 0.064624 0.065166 0.065404 0.065314 0.064923 0.064300 0.063592 0.062965 0.062580 0.062668 0.063530 0.065419 0.068497 0.072872 0.078549 0.085533 0.093992 0.103992 0.115580 0.128705 0.143185 0.158726 0.175118 0.191869 0.208400 0.223892 0.237439 0.248205 0.255972 0.260645 0.262659 0.262426 0.260033 0.255948 0.251202 0.246407 0.241755 0.237159 0.231772 0.224979 0.217038 0.207921 0.197341 0.185389 0.171921 0.157275 0.142586 0.128767 0.116047 0.104982 0.095920 0.089143 0.085090 0.083814 0.084522 0.086657 0.089878 0.093527 0.096798 0.099129 0.100126 0.099772 0.098744 0.097573 0.096231 0.095027 0.094483 0.094847 0.096355 0.098830 0.101272 0.102986 0.104032 0.104206 0.103298 0.101335 0.098118 0.093893 0.089702 0.086380 0.084376 0.084432 0.087270 0.093204 0.102161 0.113367 0.124973 0.134997 0.141872 0.143195 0.135943 0.118440 0.091174 0.056332 0.018921 -0.015494 -0.043075 -0.057493 -0.050270 -0.015747 0.047551 0.137770 0.246702 0.365914 0.492115 0.617123 0.729329 0.820064 0.884055 0.919578 0.935000 0.935335 0.916936 0.880028 0.827714 0.760751 0.683696 0.598298 0.498793 0.384859 0.263329 0.141621 0.030172 -0.061594 -0.135143 -0.190705 -0.229059 -0.253609 -0.265846 -0.270763 -0.281351 -0.305320 -0.343044 -0.392574 -0.445160 -0.492909 -0.538174 -0.579027 -0.610045 -0.629182 -0.633246 -0.622756 -0.607928 -0.594911 -0.582182 -0.570723 -0.560794 -0.551557 -0.547012 -0.548084 -0.549981 -0.550706 -0.550312 -0.548106 -0.545559 -0.543690 -0.540365 -0.535221 -0.529908 -0.524837 -0.520230 -0.516366 -0.512146 -0.506977 -0.501561 -0.495920 -0.489506 -0.482358 -0.474487 -0.466168 -0.458372 -0.451747 -0.446036 -0.441138 -0.436724 -0.432407 -0.428306 -0.424269 -0.419582 -0.413932 -0.407234 -0.399561 -0.391440 -0.383314 -0.375015 -0.366619 -0.358238 -0.349919 -0.341889 -0.334230 -0.326502 -0.318547 -0.310429 -0.302162 -0.293759 -0.285351 -0.276830 -0.268274 -0.259881 -0.251839 -0.244231 -0.237206 -0.230727 -0.224818 -0.219502 -0.214692 -0.210041 -0.205272 -0.200093 -0.194118 -0.186812 -0.177826 -0.166988 -0.154316 -0.140029 -0.124440 -0.107571 -0.089710 -0.071203 -0.052337 -0.033160 -0.013582 0.007142 0.029472 0.053525 0.079546 0.108148 0.139374 0.173141 0.208798 0.245207 0.280965 0.315257 0.346645 0.373728 0.395244 0.410569 0.419588 0.423708 0.424003 0.420799 0.415176 0.409035 0.403526 0.399287 0.396276 0.392925 0.388096 0.382187 0.374987 0.365923 0.354928 0.341393 0.325503 0.308915 0.292640 0.276371 0.260192 0.243718 0.226663 0.209712 0.193149 0.176291 0.159115 0.141701 0.124228 0.107236 0.091244 0.076078 0.061834 0.048496 0.036123 0.025025 0.015482 0.007343 0.000698 -0.004437 -0.008105 -0.010449 -0.011601 -0.011839 -0.011518 -0.011188 -0.011242 -0.011769 -0.012780 -0.014135 -0.015640 -0.017341 -0.019128 -0.020710 -0.021922 -0.022667 -0.022987 -0.023279 -0.023792 -0.024392 -0.025059 -0.025806 -0.026562 -0.027453 -0.028472 -0.029356 -0.029986 -0.030417 -0.030688 -0.030980 -0.031423 -0.031907 -0.032380 -0.032855 -0.033287 -0.033725 -0.034186 -0.034589 -0.034901 -0.035134 -0.035291 -0.035438 -0.035618 -0.035799 -0.035970 -0.036131 -0.036268 -0.036404 -0.036552 -0.036699 -0.036841 -0.036981 -0.037115 -0.037259 -0.037420 -0.037595 -0.037785 -0.037996 -0.038230 -0.038495 -0.038797 -0.039141 -0.039531 -0.039966 -0.040443 -0.040959 -0.041506 -0.042079 -0.042668 -0.043266 -0.043860 -0.044437 -0.044982 -0.045487 -0.045935 -0.046306 -0.046574 -0.046721 -0.046722 -0.046571 -0.046262 -0.045800 -0.045194 -0.044450 -0.043588 -0.042637 -0.041627 -0.040575 -0.039503 -0.038414 -0.037328 -0.036284 -0.035327 -0.034489 -0.033812 -0.033307 -0.032986 -0.032851 -0.032898 -0.033116 -0.033479 -0.033927 -0.034418 -0.034933 -0.035457 -0.035991 -0.036525 -0.037007 -0.037389 -0.037635 -0.037702 -0.037584 -0.037273 -0.036755 -0.036038 -0.035145 -0.034123 -0.033050 -0.031989 -0.030941 -0.029904 -0.028836 -0.027708 -0.026538 -0.025327 -0.024034 -0.022661 -0.021212 -0.019728 -0.018299 -0.017011 -0.015884 -0.014968 -0.014307 -0.013923 -0.013837 -0.014024 -0.014374 -0.014785 -0.015184 -0.015449 -0.015429 -0.015016 -0.014164 -0.012887 -0.011306 -0.009541 -0.007629 -0.005681 -0.003865 -0.002301 -0.001061 -0.000156 0.000571 0.001213 0.001716 0.002082 0.002354 0.002527 0.002666 0.002774 0.002735 0.002501 0.002134 0.001690 0.001277 0.000997 0.000834 0.000814 0.001011 0.001465 0.002238 0.003381 0.004886 0.006748 0.008960 0.011473 0.014224 0.017104 0.019964 0.022601 0.024789 0.026336 0.027205 0.027418 0.027133 0.026518 0.025643 0.024689 0.023982 0.023726 0.023994 0.024760 0.025754 0.026758 0.027813 0.028839 0.029674 0.030254 0.030481 0.030387 0.030288 0.030388 0.030668 0.031188 0.032002 0.033102 0.034583 0.036412 0.038344 0.040197 0.041898 0.043301 0.044297 0.044824 0.044832 0.044400 0.043826 0.043384 0.043264 0.043775 0.045304 0.048144 0.052496 0.058422 0.065740 0.074298 0.084204 0.095398 0.107788 0.121233 0.135485 0.150275 0.165600 0.181140 0.196376 0.210638 0.223214 0.233394 0.241045 0.246057 0.248640 0.249031 0.247299 0.243798 0.239397 0.234618 0.229574 0.224210 0.217939 0.210339 0.201680 0.192032 0.181229 0.169420 0.156564 0.142990 0.129609 0.117183 0.105934 0.096337 0.088669 0.083169 0.080173 0.079710 0.081140 0.083975 0.087855 0.092131 0.095999 0.098878 0.100442 0.100677 0.100185 0.099465 0.098523 0.097697 0.097593 0.098512 0.100650 0.103810 0.106991 0.109455 0.111239 0.112081 0.111663 0.109940 0.106725 0.102297 0.097802 0.094178 0.091906 0.091815 0.094769 0.101158 0.110919 0.123219 0.136019 0.147149 0.154960 0.156879 0.149655 0.131514 0.103017 0.066587 0.027764 -0.007327 -0.034446 -0.046640 -0.034613 0.007724 0.081734 0.184982 0.307947 0.440706 0.578957 0.712821 0.828473 0.915758 0.969092 0.987330 0.981200 0.958116 0.915514 0.856018 0.786185 0.709102 0.630329 0.551327 0.463030 0.362379 0.255964 0.149386 0.050116 -0.034121 -0.106200 -0.166185 -0.211168 -0.242043 -0.260761 -0.271518 -0.286185 -0.312145 -0.348296 -0.392696 -0.439556 -0.482625 -0.523865 -0.561598 -0.590061 -0.606757 -0.609678 -0.599519 -0.585014 -0.571743 -0.558204 -0.545281 -0.533921 -0.523764 -0.518181 -0.517967 -0.518680 -0.518319 -0.517072 -0.514302 -0.511011 -0.508001 -0.503331 -0.496698 -0.489839 -0.483335 -0.477364 -0.472274 -0.467236 -0.461793 -0.456658 -0.451831 -0.446561 -0.440699 -0.434237 -0.427315 -0.420669 -0.414805 -0.409379 -0.404281 -0.399390 -0.394463 -0.389588 -0.384673 -0.379117 -0.372659 -0.365318 -0.357187 -0.348631 -0.340022 -0.331278 -0.322526 -0.313957 -0.305700 -0.297928 -0.290712 -0.283685 -0.276688 -0.269753 -0.262830 -0.255781 -0.248619 -0.241241 -0.233711 -0.226245 -0.219044 -0.212120 -0.205574 -0.199392 -0.193579 -0.188168 -0.183075 -0.177918 -0.172426 -0.166380 -0.159482 -0.151324 -0.141658 -0.130291 -0.117207 -0.102552 -0.086542 -0.069160 -0.050601 -0.031027 -0.010637 0.010502 0.032381 0.055500 0.080058 0.106063 0.133533 0.162780 0.193653 0.225996 0.259223 0.292551 0.324908 0.355607 0.383518 0.407669 0.427086 0.441294 0.450152 0.454629 0.455453 0.452919 0.447878 0.441863 0.435825 0.430224 0.425056 0.419233 0.411963 0.403600 0.394060 0.382922 0.370182 0.355436 0.338889 0.321816 0.305032 0.288292 0.271658 0.254782 0.237446 0.220190 0.203290 0.186256 0.169152 0.152055 0.135160 0.118911 0.103755 0.089573 0.076437 0.064220 0.052909 0.042724 0.033844 0.026065 0.019428 0.013915 0.009502 0.006143 0.003807 0.002306 0.001430 0.000817 0.000213 -0.000419 -0.001100 -0.001837 -0.002568 -0.003348 -0.004157 -0.004867 -0.005410 -0.005767 -0.005977 -0.006260 -0.006754 -0.007389 -0.008150 -0.009044 -0.010028 -0.011163 -0.012443 -0.013740 -0.014993 -0.016229 -0.017468 -0.018818 -0.020341 -0.021969 -0.023647 -0.025350 -0.027013 -0.028649 -0.030242 -0.031734 -0.033086 -0.034283 -0.035310 -0.036220 -0.037039 -0.037754 -0.038370 -0.038912 -0.039386 -0.039818 -0.040218 -0.040576 -0.040888 -0.041175 -0.041448 -0.041735 -0.042055 -0.042404 -0.042784 -0.043212 -0.043685 -0.044195 -0.044723 -0.045236 -0.045707 -0.046133 -0.046511 -0.046853 -0.047163 -0.047429 -0.047640 -0.047809 -0.047934 -0.048018 -0.048059 -0.048044 -0.047969 -0.047853 -0.047717 -0.047593 -0.047510 -0.047473 -0.047489 -0.047568 -0.047718 -0.047958 -0.048305 -0.048762 -0.049338 -0.050035 -0.050855 -0.051805 -0.052878 -0.054058 -0.055315 -0.056618 -0.057930 -0.059234 -0.060504 -0.061730 -0.062887 -0.063938 -0.064839 -0.065571 -0.066096 -0.066393 -0.066440 -0.066220 -0.065722 -0.064943 -0.063895 -0.062610 -0.061122 -0.059458 -0.057660 -0.055777 -0.053878 -0.052057 -0.050431 -0.049120 -0.048232 -0.047794 -0.047812 -0.048228 -0.048971 -0.049995 -0.051192 -0.052376 -0.053411 -0.054235 -0.054824 -0.055261 -0.055590 -0.055720 -0.055603 -0.055234 -0.054582 -0.053690 -0.052575 -0.051172 -0.049494 -0.047653 -0.045789 -0.044113 -0.042801 -0.041852 -0.041264 -0.040986 -0.040945 -0.041159 -0.041573 -0.042017 -0.042390 -0.042654 -0.042807 -0.042967 -0.043201 -0.043403 -0.043502 -0.043439 -0.043132 -0.042613 -0.041876 -0.040829 -0.039452 -0.037765 -0.035813 -0.033709 -0.031555 -0.029353 -0.027139 -0.024930 -0.022767 -0.020765 -0.019042 -0.017670 -0.016731 -0.016224 -0.016121 -0.016356 -0.016826 -0.017409 -0.017914 -0.018049 -0.017612 -0.016582 -0.015011 -0.013105 -0.011081 -0.008986 -0.006994 -0.005401 -0.004392 -0.004047 -0.004327 -0.004896 -0.005496 -0.006131 -0.006678 -0.006930 -0.006788 -0.006113 -0.004906 -0.003462 -0.001973 -0.000403 0.001189 0.002757 0.004283 0.005621 0.006721 0.007747 0.008742 0.009626 0.010338 0.010756 0.010804 0.010626 0.010358 0.010135 0.010192 0.010768 0.012201 0.015008 0.019563 0.025967 0.034223 0.044134 0.055444 0.068160 0.082053 0.096756 0.111914 0.127249 0.142480 0.157719 0.172758 0.187064 0.200052 0.211227 0.220008 0.226318 0.230050 0.231231 0.229990 0.226492 0.221135 0.214796 0.208073 0.201051 0.193736 0.185747 0.176806 0.167225 0.157145 0.146401 0.135141 0.123384 0.111444 0.100107 0.090018 0.081279 0.074178 0.068806 0.065236 0.063721 0.064262 0.066321 0.069495 0.073423 0.077528 0.081173 0.083867 0.085342 0.085573 0.084992 0.084001 0.082694 0.081455 0.080930 0.081491 0.083278 0.086096 0.089062 0.091480 0.093355 0.094384 0.094123 0.092439 0.089193 0.084701 0.080147 0.076532 0.074319 0.074357 0.077597 0.084465 0.094897 0.108035 0.121734 0.133732 0.142373 0.145033 0.138394 0.120682 0.092520 0.056474 0.018379 -0.015328 -0.040143 -0.048741 -0.031350 0.018328 0.101476 0.215158 0.348910 0.491684 0.638299 0.777515 0.893761 0.975707 1.017614 1.018878 0.992095 0.946683 0.881123 0.800181 0.713456 0.626148 0.544645 0.470192 0.391003 0.301725 0.208719 0.115999 0.028347 -0.048066 -0.117283 -0.179213 -0.227763 -0.261642 -0.283253 -0.296149 -0.311209 -0.335569 -0.366908 -0.403375 -0.441863 -0.477681 -0.512519 -0.545033 -0.569257 -0.582389 -0.583504 -0.573469 -0.559645 -0.547043 -0.534120 -0.521546 -0.510676 -0.501420 -0.496537 -0.496681 -0.497794 -0.497922 -0.497302 -0.495327 -0.492639 -0.489833 -0.485150 -0.478295 -0.470919 -0.463651 -0.456661 -0.450374 -0.444245 -0.437997 -0.432305 -0.427157 -0.421706 -0.415689 -0.409131 -0.402115 -0.395185 -0.388763 -0.382493 -0.376312 -0.370312 -0.364426 -0.358727 -0.353192 -0.347318 -0.340883 -0.333966 -0.326634 -0.319036 -0.311382 -0.303528 -0.295468 -0.287246 -0.278898 -0.270508 -0.262156 -0.253655 -0.244997 -0.236252 -0.227500 -0.218768 -0.210178 -0.201720 -0.193457 -0.185409 -0.177654 -0.170233 -0.163210 -0.156497 -0.150090 -0.143951 -0.138022 -0.132108 -0.126056 -0.119636 -0.112582 -0.104482 -0.095066 -0.084195 -0.071833 -0.057980 -0.042747 -0.026058 -0.008009 0.011311 0.031758 0.053322 0.075985 0.100137 0.125879 0.153164 0.181895 0.212246 0.243952 0.276774 0.310094 0.343214 0.375101 0.404999 0.431751 0.454378 0.471895 0.483897 0.490302 0.492061 0.489981 0.484509 0.476703 0.468364 0.460668 0.454085 0.448594 0.442990 0.436329 0.428920 0.420519 0.410373 0.398273 0.383749 0.367020 0.349605 0.332502 0.315386 0.298347 0.281144 0.263582 0.246294 0.229550 0.212616 0.195425 0.178124 0.160930 0.144363 0.128954 0.114502 0.101076 0.088659 0.077278 0.067181 0.058567 0.051172 0.044998 0.040062 0.036334 0.033737 0.032211 0.031491 0.031283 0.031154 0.030781 0.030107 0.029117 0.027849 0.026418 0.024792 0.023056 0.021446 0.020104 0.019084 0.018350 0.017601 0.016649 0.015606 0.014495 0.013294 0.012058 0.010700 0.009233 0.007864 0.006694 0.005673 0.004764 0.003813 0.002714 0.001556 0.000386 -0.000804 -0.001968 -0.003148 -0.004359 -0.005541 -0.006667 -0.007743 -0.008765 -0.009796 -0.010866 -0.011946 -0.013019 -0.014082 -0.015114 -0.016133 -0.017145 -0.018144 -0.019126 -0.020087 -0.021020 -0.021944 -0.022863 -0.023770 -0.024660 -0.025537 -0.026394 -0.027236 -0.028064 -0.028887 -0.029706 -0.030518 -0.031319 -0.032115 -0.032902 -0.033681 -0.034451 -0.035217 -0.035978 -0.036734 -0.037480 -0.038225 -0.038967 -0.039708 -0.040446 -0.041191 -0.041941 -0.042697 -0.043455 -0.044218 -0.044983 -0.045750 -0.046516 -0.047287 -0.048060 -0.048832 -0.049599 -0.050364 -0.051122 -0.051872 -0.052608 -0.053334 -0.054044 -0.054735 -0.055403 -0.056050 -0.056672 -0.057268 -0.057835 -0.058381 -0.058902 -0.059394 -0.059850 -0.060267 -0.060637 -0.060953 -0.061210 -0.061403 -0.061527 -0.061581 -0.061564 -0.061490 -0.061367 -0.061203 -0.061010 -0.060808 -0.060609 -0.060419 -0.060237 -0.060055 -0.059862 -0.059659 -0.059441 -0.059196 -0.058922 -0.058627 -0.058331 -0.058072 -0.057892 -0.057815 -0.057883 -0.058142 -0.058620 -0.059315 -0.060199 -0.061196 -0.062222 -0.063223 -0.064103 -0.064738 -0.065036 -0.064956 -0.064497 -0.063747 -0.062786 -0.061620 -0.060312 -0.058969 -0.057672 -0.056492 -0.055473 -0.054555 -0.053736 -0.053121 -0.052799 -0.052860 -0.053386 -0.054337 -0.055671 -0.057362 -0.059312 -0.061402 -0.063446 -0.065154 -0.066303 -0.066849 -0.066781 -0.066222 -0.065288 -0.063941 -0.062242 -0.060372 -0.058435 -0.056506 -0.054609 -0.052575 -0.050342 -0.048048 -0.045806 -0.043726 -0.041944 -0.040419 -0.039160 -0.038252 -0.037704 -0.037482 -0.037518 -0.037608 -0.037618 -0.037572 -0.037493 -0.037453 -0.037527 -0.037652 -0.037812 -0.038062 -0.038393 -0.038795 -0.039210 -0.039455 -0.039391 -0.038980 -0.038149 -0.036821 -0.034981 -0.032614 -0.029798 -0.026743 -0.023676 -0.020783 -0.018354 -0.016717 -0.016090 -0.016472 -0.017698 -0.019298 -0.020770 -0.021782 -0.021760 -0.019888 -0.015612 -0.008704 0.000775 0.012225 0.025060 0.039234 0.054304 0.069615 0.084656 0.099012 0.112473 0.125626 0.138632 0.151036 0.162499 0.172823 0.181592 0.188893 0.194557 0.198112 0.199300 0.198175 0.194837 0.189807 0.183462 0.175691 0.166545 0.156144 0.144595 0.132278 0.119600 0.106735 0.094039 0.081748 0.070167 0.059602 0.050377 0.042619 0.036484 0.031891 0.028845 0.027399 0.027558 0.029175 0.032068 0.035825 0.039912 0.043668 0.046559 0.048467 0.049381 0.049506 0.049140 0.048390 0.047618 0.047562 0.048654 0.050945 0.054225 0.057691 0.060666 0.063184 0.064966 0.065525 0.064698 0.062361 0.058799 0.055142 0.052333 0.050760 0.051180 0.054460 0.060968 0.070647 0.082697 0.095112 0.105789 0.113188 0.114879 0.107805 0.090406 0.063439 0.029555 -0.005465 -0.035205 -0.055022 -0.057534 -0.032941 0.024973 0.117066 0.239952 0.382694 0.533499 0.686346 0.828877 0.944158 1.019913 1.050458 1.035726 0.989713 0.923536 0.836805 0.736355 0.634735 0.539220 0.456780 0.388340 0.319642 0.243060 0.164519 0.086243 0.009992 -0.059885 -0.128479 -0.195453 -0.251459 -0.292801 -0.322174 -0.342170 -0.362098 -0.388434 -0.417561 -0.447718 -0.478791 -0.507909 -0.536413 -0.563397 -0.583039 -0.592384 -0.591713 -0.582041 -0.568942 -0.556607 -0.543589 -0.530374 -0.518766 -0.509049 -0.503248 -0.501908 -0.501664 -0.500780 -0.499573 -0.497533 -0.494874 -0.491942 -0.487269 -0.480576 -0.473311 -0.466073 -0.458906 -0.452154 -0.445439 -0.438552 -0.432073 -0.425993 -0.419479 -0.412270 -0.404477 -0.396256 -0.388155 -0.380632 -0.373357 -0.366264 -0.359416 -0.352724 -0.346233 -0.339876 -0.333078 -0.325586 -0.317481 -0.308880 -0.300032 -0.291252 -0.282432 -0.273645 -0.265033 -0.256690 -0.248725 -0.241182 -0.233718 -0.226179 -0.218570 -0.210832 -0.202810 -0.194506 -0.185844 -0.176901 -0.167875 -0.158995 -0.150333 -0.142076 -0.134319 -0.127166 -0.120655 -0.114708 -0.108903 -0.102924 -0.096548 -0.089432 -0.081047 -0.071069 -0.059266 -0.045603 -0.030272 -0.013503 0.004812 0.024551 0.045625 0.067886 0.091207 0.115496 0.141190 0.168341 0.196795 0.226329 0.256928 0.288190 0.319927 0.351590 0.382618 0.412177 0.439647 0.464125 0.485025 0.501633 0.513581 0.520724 0.523693 0.522975 0.518932 0.512349 0.504579 0.496527 0.488547 0.480687 0.472225 0.462621 0.452210 0.440991 0.428565 0.414931 0.399825 0.383461 0.366869 0.350730 0.334761 0.318931 0.302844 0.286248 0.269569 0.253057 0.236329 0.219504 0.202660 0.186026 0.170063 0.155225 0.141449 0.128805 0.117082 0.106228 0.096498 0.088090 0.080856 0.074875 0.070087 0.066446 0.063918 0.062441 0.061780 0.061658 0.061588 0.061226 0.060537 0.059518 0.058230 0.056812 0.055211 0.053497 0.051910 0.050585 0.049581 0.048868 0.048139 0.047206 0.046179 0.045084 0.043903 0.042697 0.041374 0.039945 0.038611 0.037468 0.036470 0.035584 0.034660 0.033594 0.032471 0.031338 0.030187 0.029060 0.027916 0.026741 0.025590 0.024489 0.023433 0.022422 0.021399 0.020333 0.019253 0.018174 0.017098 0.016046 0.015000 0.013954 0.012912 0.011877 0.010850 0.009839 0.008822 0.007797 0.006768 0.005742 0.004716 0.003697 0.002682 0.001671 0.000657 -0.000358 -0.001373 -0.002381 -0.003390 -0.004398 -0.005404 -0.006407 -0.007416 -0.008428 -0.009442 -0.010453 -0.011467 -0.012478 -0.013487 -0.014491 -0.015496 -0.016501 -0.017503 -0.018495 -0.019485 -0.020468 -0.021443 -0.022407 -0.023368 -0.024320 -0.025262 -0.026186 -0.027097 -0.027986 -0.028852 -0.029689 -0.030501 -0.031283 -0.032033 -0.032747 -0.033432 -0.034088 -0.034718 -0.035323 -0.035916 -0.036499 -0.037070 -0.037623 -0.038153 -0.038649 -0.039107 -0.039516 -0.039869 -0.040162 -0.040403 -0.040607 -0.040813 -0.041058 -0.041373 -0.041802 -0.042408 -0.043227 -0.044264 -0.045498 -0.046873 -0.048318 -0.049797 -0.051234 -0.052529 -0.053607 -0.054433 -0.055000 -0.055393 -0.055672 -0.055830 -0.055904 -0.055968 -0.056060 -0.056210 -0.056406 -0.056553 -0.056583 -0.056515 -0.056339 -0.056045 -0.055643 -0.055115 -0.054483 -0.053854 -0.053309 -0.052880 -0.052629 -0.052603 -0.052831 -0.053345 -0.054127 -0.055084 -0.056127 -0.057197 -0.058188 -0.058973 -0.059460 -0.059605 -0.059419 -0.059020 -0.058510 -0.057911 -0.057306 -0.056830 -0.056567 -0.056581 -0.056877 -0.057324 -0.057840 -0.058473 -0.059220 -0.060070 -0.061021 -0.061999 -0.062963 -0.063968 -0.064994 -0.065946 -0.066715 -0.067137 -0.067082 -0.066570 -0.065625 -0.064300 -0.062690 -0.060839 -0.058858 -0.056964 -0.055313 -0.053957 -0.052919 -0.052086 -0.051391 -0.050915 -0.050687 -0.050668 -0.050863 -0.051197 -0.051626 -0.052199 -0.052878 -0.053515 -0.053936 -0.053889 -0.053192 -0.051895 -0.050085 -0.047921 -0.045638 -0.043380 -0.041427 -0.040232 -0.040061 -0.040876 -0.042473 -0.044276 -0.045700 -0.046458 -0.045993 -0.043492 -0.038430 -0.030562 -0.019963 -0.007327 0.006696 0.022015 0.038122 0.054321 0.070053 0.084843 0.098438 0.111425 0.123956 0.135561 0.145908 0.154820 0.161907 0.167296 0.170868 0.172191 0.171088 0.167737 0.162394 0.155755 0.148348 0.140087 0.131016 0.121170 0.110543 0.099447 0.088137 0.076516 0.064753 0.053027 0.041650 0.031104 0.021855 0.013967 0.007622 0.002843 -0.000333 -0.001780 -0.001501 0.000154 0.002899 0.006395 0.010145 0.013567 0.016207 0.017880 0.018558 0.018525 0.018092 0.017362 0.016685 0.016693 0.017757 0.019961 0.023115 0.026453 0.029339 0.031778 0.033488 0.034017 0.033205 0.030926 0.027442 0.023813 0.020919 0.019129 0.019154 0.021815 0.027460 0.036031 0.046776 0.057798 0.067115 0.073282 0.074018 0.066450 0.049169 0.023037 -0.009240 -0.041919 -0.068606 -0.084576 -0.082429 -0.052374 0.011700 0.110361 0.239821 0.388703 0.544560 0.700637 0.843614 0.955391 1.022911 1.040586 1.008903 0.943156 0.856075 0.748395 0.628947 0.513035 0.409918 0.327119 0.265291 0.207907 0.145229 0.082734 0.020911 -0.041402 -0.101668 -0.165998 -0.233906 -0.293080 -0.337683 -0.370823 -0.394363 -0.416270 -0.442539 -0.468389 -0.492160 -0.516478 -0.540099 -0.563946 -0.587352 -0.604343 -0.611622 -0.610541 -0.602250 -0.590803 -0.579736 -0.567629 -0.554814 -0.543630 -0.534734 -0.529493 -0.528283 -0.528120 -0.527284 -0.526184 -0.524355 -0.521600 -0.518052 -0.512447 -0.504557 -0.495853 -0.487072 -0.478250 -0.469833 -0.461753 -0.453980 -0.447090 -0.441054 -0.434868 -0.428094 -0.420814 -0.413036 -0.405015 -0.397050 -0.388766 -0.380159 -0.371593 -0.363240 -0.355175 -0.347494 -0.339869 -0.332177 -0.324595 -0.317183 -0.309818 -0.302515 -0.295103 -0.287445 -0.279419 -0.270967 -0.262060 -0.252780 -0.243161 -0.233344 -0.223403 -0.213499 -0.203749 -0.194326 -0.185303 -0.176732 -0.168417 -0.160300 -0.152429 -0.144820 -0.137341 -0.129980 -0.122616 -0.115190 -0.107642 -0.099906 -0.091745 -0.082926 -0.073022 -0.061755 -0.049034 -0.034821 -0.019007 -0.001650 0.017362 0.037980 0.060158 0.083745 0.108709 0.134923 0.162595 0.191607 0.221739 0.252639 0.284200 0.315946 0.347582 0.378552 0.408460 0.436584 0.462330 0.484888 0.503779 0.518371 0.528412 0.533810 0.535114 0.532809 0.527365 0.519662 0.511155 0.502853 0.495066 0.487827 0.480421 0.472246 0.463537 0.454133 0.443361 0.431009 0.416777 0.400868 0.384396 0.368124 0.351706 0.335127 0.318120 0.300494 0.282746 0.265155 0.247234 0.229086 0.210962 0.193256 0.176629 0.161721 0.148436 0.136818 0.126636 0.117736 0.110305 0.104379 0.099497 0.095512 0.092321 0.089871 0.088297 0.087656 0.087615 0.087875 0.088040 0.087770 0.087105 0.086044 0.084488 0.082511 0.080176 0.077655 0.075360 0.073576 0.072311 0.071516 0.070903 0.070239 0.069631 0.069048 0.068296 0.067328 0.066059 0.064523 0.063045 0.061821 0.060760 0.059834 0.058951 0.058017 0.057163 0.056435 0.055713 0.054979 0.054218 0.053419 0.052667 0.052016 0.051414 0.050848 0.050295 0.049731 0.049182 0.048661 0.048137 0.047603 0.047056 0.046485 0.045895 0.045290 0.044659 0.043999 0.043300 0.042557 0.041769 0.040931 0.040031 0.039060 0.038012 0.036879 0.035643 0.034303 0.032855 0.031308 0.029664 0.027940 0.026142 0.024288 0.022387 0.020462 0.018536 0.016639 0.014778 0.012987 0.011301 0.009765 0.008408 0.007272 0.006372 0.005722 0.005308 0.005119 0.005147 0.005364 0.005710 0.006141 0.006630 0.007152 0.007694 0.008235 0.008710 0.009055 0.009208 0.009107 0.008736 0.008077 0.007114 0.005852 0.004304 0.002510 0.000544 -0.001523 -0.003665 -0.005849 -0.008076 -0.010318 -0.012488 -0.014496 -0.016282 -0.017765 -0.018938 -0.019788 -0.020324 -0.020574 -0.020592 -0.020468 -0.020369 -0.020412 -0.020611 -0.020954 -0.021362 -0.021758 -0.022175 -0.022594 -0.022941 -0.023187 -0.023311 -0.023335 -0.023405 -0.023614 -0.023942 -0.024399 -0.024996 -0.025715 -0.026595 -0.027624 -0.028707 -0.029772 -0.030782 -0.031675 -0.032412 -0.032961 -0.033276 -0.033355 -0.033262 -0.033047 -0.032743 -0.032414 -0.032146 -0.032000 -0.032018 -0.032205 -0.032499 -0.032859 -0.033317 -0.033874 -0.034521 -0.035261 -0.036072 -0.036957 -0.037989 -0.039196 -0.040554 -0.042040 -0.043613 -0.045215 -0.046831 -0.048407 -0.049860 -0.051097 -0.052025 -0.052525 -0.052500 -0.051880 -0.050664 -0.048916 -0.046790 -0.044475 -0.042138 -0.040043 -0.038546 -0.037903 -0.038172 -0.039305 -0.041014 -0.043014 -0.045217 -0.047363 -0.049029 -0.049950 -0.050015 -0.049282 -0.048201 -0.047135 -0.046089 -0.045256 -0.044948 -0.045306 -0.046458 -0.048302 -0.050275 -0.051939 -0.053198 -0.053769 -0.053323 -0.051702 -0.048765 -0.044659 -0.040041 -0.035486 -0.031270 -0.027933 -0.026111 -0.026195 -0.028330 -0.032277 -0.037081 -0.041844 -0.046115 -0.049009 -0.049339 -0.046308 -0.039500 -0.029016 -0.015978 -0.001365 0.014700 0.031496 0.047991 0.063451 0.077236 0.089148 0.100264 0.111088 0.121128 0.130190 0.138249 0.144967 0.150637 0.155092 0.157439 0.157190 0.154456 0.149303 0.142265 0.133794 0.123655 0.111953 0.099113 0.085454 0.071435 0.057612 0.044200 0.031591 0.020124 0.010073 0.001505 -0.005451 -0.010818 -0.014689 -0.017411 -0.019189 -0.020080 -0.020075 -0.019080 -0.017075 -0.014437 -0.011540 -0.008780 -0.006540 -0.004828 -0.003688 -0.003238 -0.003406 -0.004042 -0.004843 -0.005172 -0.004607 -0.003196 -0.001099 0.001208 0.003272 0.005161 0.006711 0.007512 0.007411 0.006343 0.004488 0.002628 0.001386 0.000918 0.001621 0.003965 0.008082 0.013899 0.020857 0.027591 0.032689 0.035066 0.033077 0.024698 0.009097 -0.012669 -0.038034 -0.062065 -0.079146 -0.084773 -0.072222 -0.032695 0.039180 0.143407 0.275945 0.426067 0.581605 0.735267 0.873475 0.977996 1.035612 1.041252 0.995837 0.914677 0.811133 0.687012 0.552577 0.425118 0.315455 0.231129 0.172549 0.122117 0.068770 0.017459 -0.032759 -0.085663 -0.140388 -0.203533 -0.274370 -0.338428 -0.388098 -0.426708 -0.455350 -0.480434 -0.507234 -0.530142 -0.547658 -0.564814 -0.581939 -0.599650 -0.617680 -0.630394 -0.634493 -0.632273 -0.624972 -0.615054 -0.605243 -0.594182 -0.581955 -0.571075 -0.562390 -0.556609 -0.554012 -0.552325 -0.550120 -0.547864 -0.545243 -0.541835 -0.537645 -0.531730 -0.523895 -0.515325 -0.506674 -0.497961 -0.489614 -0.481754 -0.474463 -0.468183 -0.462854 -0.457524 -0.451715 -0.445496 -0.438810 -0.431710 -0.424360 -0.416402 -0.407825 -0.399044 -0.390287 -0.381581 -0.373028 -0.364390 -0.355587 -0.346832 -0.338213 -0.329554 -0.320870 -0.312078 -0.303133 -0.294001 -0.284720 -0.275251 -0.265673 -0.256015 -0.246385 -0.236820 -0.227412 -0.218124 -0.209021 -0.200160 -0.191594 -0.183200 -0.174977 -0.166923 -0.159045 -0.151247 -0.143521 -0.135778 -0.127965 -0.119943 -0.111618 -0.102816 -0.093358 -0.082906 -0.071252 -0.058266 -0.043873 -0.027924 -0.010408 0.008838 0.029848 0.052749 0.077482 0.103998 0.132101 0.161823 0.192853 0.224893 0.257414 0.290063 0.322203 0.353485 0.383395 0.411815 0.438270 0.462245 0.483147 0.500813 0.514807 0.524974 0.531182 0.533620 0.532481 0.528188 0.521422 0.513341 0.504789 0.495945 0.486887 0.477313 0.466932 0.456007 0.444556 0.432130 0.418647 0.403991 0.388374 0.372564 0.357111 0.341702 0.326248 0.310405 0.293964 0.277274 0.260605 0.243712 0.226821 0.210141 0.194064 0.179201 0.166109 0.154758 0.145151 0.136875 0.129655 0.123609 0.118676 0.114377 0.110542 0.107012 0.103757 0.101050 0.099073 0.097608 0.096537 0.095667 0.094816 0.094088 0.093471 0.092699 0.091693 0.090476 0.089085 0.087707 0.086488 0.085367 0.084323 0.083328 0.082340 0.081440 0.080671 0.079958 0.079299 0.078708 0.078208 0.077887 0.077794 0.077855 0.078001 0.078124 0.078128 0.078031 0.077842 0.077552 0.077173 0.076655 0.075964 0.075118 0.074111 0.072935 0.071583 0.069999 0.068169 0.066129 0.063926 0.061617 0.059271 0.056900 0.054537 0.052210 0.049963 0.047865 0.045993 0.044385 0.043099 0.042166 0.041610 0.041430 0.041620 0.042156 0.042984 0.044002 0.045131 0.046338 0.047589 0.048880 0.050183 0.051407 0.052461 0.053274 0.053765 0.053913 0.053691 0.053066 0.052035 0.050629 0.048907 0.046990 0.044978 0.042887 0.040737 0.038498 0.036171 0.033836 0.031566 0.029379 0.027334 0.025441 0.023729 0.022250 0.021033 0.020039 0.019220 0.018455 0.017665 0.016863 0.016064 0.015291 0.014580 0.013894 0.013220 0.012582 0.011986 0.011441 0.010941 0.010417 0.009838 0.009243 0.008668 0.008158 0.007762 0.007454 0.007217 0.007039 0.006890 0.006765 0.006636 0.006433 0.006113 0.005666 0.005093 0.004428 0.003700 0.002881 0.001964 0.000950 -0.000161 -0.001342 -0.002567 -0.003847 -0.005156 -0.006451 -0.007676 -0.008763 -0.009649 -0.010340 -0.010842 -0.011202 -0.011468 -0.011670 -0.011868 -0.012178 -0.012673 -0.013373 -0.014268 -0.015281 -0.016341 -0.017457 -0.018595 -0.019694 -0.020715 -0.021626 -0.022424 -0.023209 -0.024034 -0.024878 -0.025739 -0.026626 -0.027523 -0.028455 -0.029410 -0.030318 -0.031132 -0.031839 -0.032414 -0.032861 -0.033181 -0.033349 -0.033368 -0.033292 -0.033159 -0.033003 -0.032875 -0.032832 -0.032916 -0.033156 -0.033560 -0.034095 -0.034734 -0.035482 -0.036320 -0.037217 -0.038149 -0.039088 -0.040021 -0.040982 -0.041971 -0.042946 -0.043863 -0.044679 -0.045352 -0.045909 -0.046375 -0.046784 -0.047195 -0.047672 -0.048309 -0.049267 -0.050638 -0.052405 -0.054500 -0.056770 -0.059033 -0.061196 -0.063075 -0.064410 -0.065032 -0.064910 -0.064117 -0.062967 -0.061755 -0.060598 -0.059766 -0.059655 -0.060471 -0.062214 -0.064669 -0.067201 -0.069185 -0.070284 -0.069887 -0.067179 -0.061629 -0.053003 -0.041439 -0.027740 -0.012692 0.003477 0.020067 0.036143 0.050976 0.064052 0.075162 0.085082 0.094174 0.102059 0.108627 0.114029 0.118108 0.121086 0.122832 0.122610 0.120019 0.115251 0.108456 0.100092 0.090600 0.079808 0.067837 0.055099 0.041889 0.028539 0.015454 0.002677 -0.009549 -0.020915 -0.031145 -0.040122 -0.047646 -0.053741 -0.058445 -0.061959 -0.064401 -0.065798 -0.066156 -0.065535 -0.064009 -0.061882 -0.059492 -0.057219 -0.055398 -0.054103 -0.053395 -0.053324 -0.053813 -0.054763 -0.055935 -0.056835 -0.057130 -0.056804 -0.055946 -0.054923 -0.054040 -0.053155 -0.052289 -0.051621 -0.051184 -0.051097 -0.051340 -0.051513 -0.051404 -0.051117 -0.050697 -0.050274 |
From: yogesh k. <yog...@gm...> - 2010-03-31 09:08:46
|
0.053984 0.053983 0.053980 0.053999 0.054119 0.054526 0.055319 0.056504 0.058029 0.059709 0.061369 0.062987 0.064455 0.065613 0.066364 0.066632 0.066423 0.065936 0.065319 0.064583 0.063820 0.063156 0.062718 0.062739 0.063432 0.064922 0.067450 0.071387 0.077140 0.085242 0.096015 0.109363 0.124985 0.142379 0.160779 0.179595 0.197800 0.214061 0.227284 0.237090 0.243365 0.246919 0.248384 0.247664 0.245163 0.241907 0.238405 0.234970 0.231490 0.226807 0.220163 0.211887 0.202004 0.190443 0.177465 0.162822 0.146831 0.130684 0.115286 0.100947 0.088274 0.077534 0.069004 0.063175 0.060156 0.059252 0.059997 0.062025 0.064675 0.067132 0.068816 0.069358 0.068748 0.067607 0.066427 0.065130 0.063954 0.063351 0.063514 0.064658 0.066611 0.068410 0.069413 0.069722 0.069213 0.067799 0.065586 0.062375 0.058365 0.054452 0.051329 0.049410 0.049338 0.051672 0.056667 0.064278 0.073868 0.083930 0.092825 0.099200 0.101004 0.095657 0.081657 0.059278 0.030151 -0.001818 -0.032298 -0.058433 -0.075355 -0.076492 -0.057263 -0.015971 0.046735 0.125459 0.214966 0.314117 0.418401 0.521085 0.616810 0.701082 0.771093 0.830287 0.878763 0.910903 0.922198 0.908813 0.866835 0.798611 0.706279 0.590665 0.456666 0.311130 0.164495 0.032352 -0.073105 -0.150533 -0.200374 -0.230340 -0.248294 -0.254532 -0.254975 -0.263710 -0.288327 -0.331907 -0.392540 -0.456408 -0.513020 -0.565358 -0.611246 -0.646568 -0.670446 -0.677653 -0.668289 -0.654574 -0.643184 -0.632761 -0.624442 -0.617123 -0.609139 -0.605353 -0.606879 -0.608760 -0.609212 -0.607929 -0.604080 -0.599751 -0.596219 -0.591266 -0.584621 -0.577841 -0.571281 -0.565438 -0.560764 -0.556199 -0.551251 -0.546577 -0.542111 -0.537254 -0.531902 -0.525879 -0.519202 -0.512472 -0.506062 -0.499682 -0.493281 -0.486784 -0.480076 -0.473355 -0.466721 -0.459890 -0.452825 -0.445553 -0.438110 -0.430607 -0.423167 -0.415669 -0.408065 -0.400228 -0.392100 -0.383741 -0.375239 -0.366541 -0.357725 -0.348785 -0.339768 -0.330682 -0.321617 -0.312619 -0.303784 -0.295075 -0.286578 -0.278391 -0.270653 -0.263409 -0.256754 -0.250626 -0.244940 -0.239440 -0.233889 -0.228038 -0.221547 -0.213853 -0.204614 -0.193717 -0.181216 -0.167341 -0.152433 -0.136531 -0.119939 -0.103044 -0.086138 -0.069222 -0.052128 -0.034008 -0.014253 0.007394 0.031383 0.058576 0.089217 0.123294 0.160172 0.198589 0.237012 0.274602 0.309784 0.340909 0.366529 0.385911 0.398878 0.406980 0.411325 0.412063 0.410129 0.407337 0.404693 0.402878 0.401833 0.399907 0.395967 0.390524 0.383528 0.374744 0.364340 0.351704 0.336999 0.321799 0.306998 0.292363 0.277956 0.263247 0.247876 0.232468 0.217293 0.201838 0.186142 0.170132 0.153860 0.137716 0.122069 0.106795 0.092024 0.077723 0.064021 0.051277 0.039891 0.029969 0.021787 0.015388 0.010740 0.007597 0.005756 0.005044 0.005153 0.005502 0.005716 0.005661 0.005313 0.004911 0.004662 0.004421 0.004184 0.004070 0.004091 0.004363 0.004854 0.005190 0.005176 0.004940 0.004546 0.004140 0.003875 0.003639 0.003411 0.003330 0.003416 0.003664 0.004038 0.004337 0.004438 0.004406 0.004286 0.004169 0.004147 0.004150 0.004148 0.004185 0.004254 0.004382 0.004578 0.004762 0.004895 0.005000 0.005086 0.005190 0.005343 0.005513 0.005685 0.005867 0.006050 0.006246 0.006463 0.006689 0.006917 0.007150 0.007387 0.007636 0.007899 0.008173 0.008452 0.008740 0.009031 0.009328 0.009631 0.009941 0.010256 0.010578 0.010902 0.011233 0.011569 0.011910 0.012254 0.012603 0.012956 0.013314 0.013675 0.014042 0.014416 0.014794 0.015174 0.015557 0.015941 0.016323 0.016700 0.017073 0.017438 0.017798 0.018152 0.018508 0.018871 0.019247 0.019639 0.020063 0.020523 0.021017 0.021539 0.022079 0.022621 0.023156 0.023668 0.024139 0.024550 0.024891 0.025151 0.025341 0.025462 0.025502 0.025458 0.025331 0.025126 0.024867 0.024582 0.024306 0.024087 0.023987 0.024082 0.024474 0.025231 0.026355 0.027818 0.029538 0.031412 0.033379 0.035314 0.037040 0.038423 0.039418 0.040021 0.040366 0.040559 0.040589 0.040514 0.040463 0.040497 0.040665 0.040949 0.041177 0.041235 0.041148 0.040893 0.040444 0.039812 0.038957 0.037917 0.036866 0.035934 0.035175 0.034686 0.034545 0.034799 0.035502 0.036628 0.038022 0.039545 0.041105 0.042540 0.043654 0.044305 0.044422 0.044018 0.043276 0.042355 0.041279 0.040171 0.039224 0.038558 0.038264 0.038339 0.038571 0.038823 0.039148 0.039529 0.039928 0.040352 0.040728 0.041070 0.041565 0.042318 0.043310 0.044554 0.046014 0.047641 0.049480 0.051502 0.053583 0.055625 0.057547 0.059237 0.060628 0.061647 0.062231 0.062370 0.062142 0.061615 0.060830 0.059879 0.058898 0.057988 0.057211 0.056591 0.056055 0.055569 0.055208 0.055015 0.055013 0.055239 0.055653 0.056239 0.057047 0.058056 0.059176 0.060288 0.061205 0.061787 0.062074 0.062126 0.062070 0.062069 0.062204 0.062639 0.063674 0.065526 0.068340 0.072207 0.077080 0.082954 0.090048 0.098501 0.108465 0.119995 0.132936 0.147036 0.162112 0.177716 0.193376 0.208374 0.221866 0.233085 0.241809 0.247916 0.251794 0.253758 0.253760 0.252065 0.249419 0.246203 0.242555 0.238373 0.232937 0.225744 0.217013 0.206769 0.194904 0.181606 0.166805 0.150856 0.134721 0.119238 0.104784 0.092026 0.081439 0.073443 0.068428 0.066439 0.066754 0.068802 0.072195 0.076180 0.079719 0.082093 0.082929 0.082241 0.080814 0.079287 0.077587 0.076040 0.075276 0.075577 0.077204 0.079953 0.082640 0.084446 0.085444 0.085394 0.084054 0.081454 0.077337 0.071962 0.066500 0.061881 0.058603 0.057504 0.059379 0.064615 0.073221 0.084461 0.096437 0.107147 0.115058 0.117767 0.112242 0.096749 0.071601 0.038757 0.002977 -0.030537 -0.058367 -0.074722 -0.071803 -0.044338 0.009349 0.087930 0.184209 0.291014 0.406037 0.522676 0.631433 0.725094 0.798631 0.849830 0.885043 0.907187 0.911712 0.896741 0.862261 0.806908 0.734315 0.646394 0.540207 0.417696 0.285676 0.152872 0.032029 -0.066192 -0.142052 -0.195877 -0.231487 -0.254239 -0.265065 -0.269322 -0.280462 -0.306100 -0.347772 -0.403512 -0.462319 -0.515120 -0.564505 -0.608394 -0.641907 -0.663483 -0.669031 -0.658893 -0.644196 -0.631364 -0.619005 -0.608258 -0.598910 -0.589857 -0.585501 -0.586851 -0.588983 -0.589935 -0.589606 -0.587200 -0.584362 -0.582172 -0.578427 -0.572811 -0.567039 -0.561561 -0.556679 -0.552735 -0.548645 -0.543837 -0.539026 -0.534194 -0.528698 -0.522480 -0.515483 -0.507875 -0.500514 -0.493959 -0.487908 -0.482264 -0.476811 -0.471265 -0.465783 -0.460322 -0.454323 -0.447580 -0.440074 -0.431884 -0.423400 -0.414978 -0.406495 -0.398018 -0.389613 -0.381321 -0.373312 -0.365662 -0.358042 -0.350338 -0.342557 -0.334662 -0.326575 -0.318341 -0.309891 -0.301306 -0.292754 -0.284432 -0.276419 -0.268883 -0.261877 -0.255483 -0.249721 -0.244510 -0.239472 -0.234313 -0.228798 -0.222581 -0.215147 -0.206176 -0.195476 -0.183045 -0.169099 -0.153913 -0.137452 -0.119921 -0.101542 -0.082514 -0.062893 -0.042626 -0.021061 0.002145 0.027071 0.053856 0.082946 0.114279 0.147756 0.182775 0.218400 0.253415 0.287062 0.318053 0.345206 0.367391 0.384062 0.395074 0.401595 0.404493 0.404061 0.401231 0.397704 0.394490 0.392097 0.390445 0.388175 0.384259 0.379020 0.372239 0.363367 0.352321 0.338606 0.322453 0.305432 0.288572 0.271711 0.255091 0.238592 0.222125 0.206323 0.191416 0.176620 0.161737 0.146751 0.131628 0.116527 0.101707 0.086936 0.072337 0.058166 0.044720 0.032277 0.021232 0.011682 0.003855 -0.002102 -0.006214 -0.008901 -0.010446 -0.011006 -0.010892 -0.010605 -0.010457 -0.010649 -0.011215 -0.011867 -0.012387 -0.012895 -0.013367 -0.013724 -0.013961 -0.013938 -0.013677 -0.013546 -0.013728 -0.014116 -0.014660 -0.015220 -0.015654 -0.016076 -0.016498 -0.016780 -0.016894 -0.016844 -0.016665 -0.016551 -0.016621 -0.016810 -0.017073 -0.017334 -0.017509 -0.017665 -0.017827 -0.017950 -0.018034 -0.018056 -0.018011 -0.017975 -0.017986 -0.018021 -0.018068 -0.018099 -0.018082 -0.018048 -0.018012 -0.017964 -0.017911 -0.017843 -0.017753 -0.017656 -0.017556 -0.017450 -0.017339 -0.017217 -0.017078 -0.016929 -0.016771 -0.016605 -0.016432 -0.016251 -0.016060 -0.015860 -0.015652 -0.015436 -0.015214 -0.014983 -0.014746 -0.014502 -0.014252 -0.013994 -0.013730 -0.013458 -0.013180 -0.012893 -0.012599 -0.012296 -0.011986 -0.011666 -0.011337 -0.010997 -0.010649 -0.010287 -0.009912 -0.009523 -0.009123 -0.008709 -0.008283 -0.007844 -0.007395 -0.006932 -0.006458 -0.005972 -0.005472 -0.004953 -0.004413 -0.003847 -0.003254 -0.002623 -0.001953 -0.001245 -0.000505 0.000263 0.001044 0.001834 0.002618 0.003387 0.004126 0.004833 0.005507 0.006165 0.006818 0.007471 0.008133 0.008830 0.009569 0.010346 0.011146 0.011938 0.012685 0.013368 0.013952 0.014400 0.014686 0.014803 0.014769 0.014648 0.014500 0.014359 0.014288 0.014377 0.014686 0.015245 0.016054 0.017046 0.018164 0.019405 0.020729 0.022073 0.023386 0.024611 0.025708 0.026715 0.027619 0.028338 0.028799 0.028921 0.028635 0.027976 0.026984 0.025711 0.024258 0.022733 0.021304 0.020226 0.019688 0.019727 0.020332 0.021361 0.022674 0.024265 0.026032 0.027760 0.029319 0.030637 0.031710 0.032748 0.033877 0.035018 0.036157 0.037320 0.038471 0.039676 0.040920 0.042033 0.042926 0.043622 0.044125 0.044514 0.044849 0.045070 0.045166 0.045203 0.045197 0.045193 0.045228 0.045299 0.045413 0.045607 0.045898 0.046301 0.046826 0.047461 0.048188 0.048995 0.049861 0.050786 0.051772 0.052836 0.053984 0.055198 0.056459 0.057761 0.059077 0.060388 0.061652 0.062817 0.063822 0.064624 0.065166 0.065404 0.065314 0.064923 0.064300 0.063592 0.062965 0.062580 0.062668 0.063530 0.065419 0.068497 0.072872 0.078549 0.085533 0.093992 0.103992 0.115580 0.128705 0.143185 0.158726 0.175118 0.191869 0.208400 0.223892 0.237439 0.248205 0.255972 0.260645 0.262659 0.262426 0.260033 0.255948 0.251202 0.246407 0.241755 0.237159 0.231772 0.224979 0.217038 0.207921 0.197341 0.185389 0.171921 0.157275 0.142586 0.128767 0.116047 0.104982 0.095920 0.089143 0.085090 0.083814 0.084522 0.086657 0.089878 0.093527 0.096798 0.099129 0.100126 0.099772 0.098744 0.097573 0.096231 0.095027 0.094483 0.094847 0.096355 0.098830 0.101272 0.102986 0.104032 0.104206 0.103298 0.101335 0.098118 0.093893 0.089702 0.086380 0.084376 0.084432 0.087270 0.093204 0.102161 0.113367 0.124973 0.134997 0.141872 0.143195 0.135943 0.118440 0.091174 0.056332 0.018921 -0.015494 -0.043075 -0.057493 -0.050270 -0.015747 0.047551 0.137770 0.246702 0.365914 0.492115 0.617123 0.729329 0.820064 0.884055 0.919578 0.935000 0.935335 0.916936 0.880028 0.827714 0.760751 0.683696 0.598298 0.498793 0.384859 0.263329 0.141621 0.030172 -0.061594 -0.135143 -0.190705 -0.229059 -0.253609 -0.265846 -0.270763 -0.281351 -0.305320 -0.343044 -0.392574 -0.445160 -0.492909 -0.538174 -0.579027 -0.610045 -0.629182 -0.633246 -0.622756 -0.607928 -0.594911 -0.582182 -0.570723 -0.560794 -0.551557 -0.547012 -0.548084 -0.549981 -0.550706 -0.550312 -0.548106 -0.545559 -0.543690 -0.540365 -0.535221 -0.529908 -0.524837 -0.520230 -0.516366 -0.512146 -0.506977 -0.501561 -0.495920 -0.489506 -0.482358 -0.474487 -0.466168 -0.458372 -0.451747 -0.446036 -0.441138 -0.436724 -0.432407 -0.428306 -0.424269 -0.419582 -0.413932 -0.407234 -0.399561 -0.391440 -0.383314 -0.375015 -0.366619 -0.358238 -0.349919 -0.341889 -0.334230 -0.326502 -0.318547 -0.310429 -0.302162 -0.293759 -0.285351 -0.276830 -0.268274 -0.259881 -0.251839 -0.244231 -0.237206 -0.230727 -0.224818 -0.219502 -0.214692 -0.210041 -0.205272 -0.200093 -0.194118 -0.186812 -0.177826 -0.166988 -0.154316 -0.140029 -0.124440 -0.107571 -0.089710 -0.071203 -0.052337 -0.033160 -0.013582 0.007142 0.029472 0.053525 0.079546 0.108148 0.139374 0.173141 0.208798 0.245207 0.280965 0.315257 0.346645 0.373728 0.395244 0.410569 0.419588 0.423708 0.424003 0.420799 0.415176 0.409035 0.403526 0.399287 0.396276 0.392925 0.388096 0.382187 0.374987 0.365923 0.354928 0.341393 0.325503 0.308915 0.292640 0.276371 0.260192 0.243718 0.226663 0.209712 0.193149 0.176291 0.159115 0.141701 0.124228 0.107236 0.091244 0.076078 0.061834 0.048496 0.036123 0.025025 0.015482 0.007343 0.000698 -0.004437 -0.008105 -0.010449 -0.011601 -0.011839 -0.011518 -0.011188 -0.011242 -0.011769 -0.012780 -0.014135 -0.015640 -0.017341 -0.019128 -0.020710 -0.021922 -0.022667 -0.022987 -0.023279 -0.023792 -0.024392 -0.025059 -0.025806 -0.026562 -0.027453 -0.028472 -0.029356 -0.029986 -0.030417 -0.030688 -0.030980 -0.031423 -0.031907 -0.032380 -0.032855 -0.033287 -0.033725 -0.034186 -0.034589 -0.034901 -0.035134 -0.035291 -0.035438 -0.035618 -0.035799 -0.035970 -0.036131 -0.036268 -0.036404 -0.036552 -0.036699 -0.036841 -0.036981 -0.037115 -0.037259 -0.037420 -0.037595 -0.037785 -0.037996 -0.038230 -0.038495 -0.038797 -0.039141 -0.039531 -0.039966 -0.040443 -0.040959 -0.041506 -0.042079 -0.042668 -0.043266 -0.043860 -0.044437 -0.044982 -0.045487 -0.045935 -0.046306 -0.046574 -0.046721 -0.046722 -0.046571 -0.046262 -0.045800 -0.045194 -0.044450 -0.043588 -0.042637 -0.041627 -0.040575 -0.039503 -0.038414 -0.037328 -0.036284 -0.035327 -0.034489 -0.033812 -0.033307 -0.032986 -0.032851 -0.032898 -0.033116 -0.033479 -0.033927 -0.034418 -0.034933 -0.035457 -0.035991 -0.036525 -0.037007 -0.037389 -0.037635 -0.037702 -0.037584 -0.037273 -0.036755 -0.036038 -0.035145 -0.034123 -0.033050 -0.031989 -0.030941 -0.029904 -0.028836 -0.027708 -0.026538 -0.025327 -0.024034 -0.022661 -0.021212 -0.019728 -0.018299 -0.017011 -0.015884 -0.014968 -0.014307 -0.013923 -0.013837 -0.014024 -0.014374 -0.014785 -0.015184 -0.015449 -0.015429 -0.015016 -0.014164 -0.012887 -0.011306 -0.009541 -0.007629 -0.005681 -0.003865 -0.002301 -0.001061 -0.000156 0.000571 0.001213 0.001716 0.002082 0.002354 0.002527 0.002666 0.002774 0.002735 0.002501 0.002134 0.001690 0.001277 0.000997 0.000834 0.000814 0.001011 0.001465 0.002238 0.003381 0.004886 0.006748 0.008960 0.011473 0.014224 0.017104 0.019964 0.022601 0.024789 0.026336 0.027205 0.027418 0.027133 0.026518 0.025643 0.024689 0.023982 0.023726 0.023994 0.024760 0.025754 0.026758 0.027813 0.028839 0.029674 0.030254 0.030481 0.030387 0.030288 0.030388 0.030668 0.031188 0.032002 0.033102 0.034583 0.036412 0.038344 0.040197 0.041898 0.043301 0.044297 0.044824 0.044832 0.044400 0.043826 0.043384 0.043264 0.043775 0.045304 0.048144 0.052496 0.058422 0.065740 0.074298 0.084204 0.095398 0.107788 0.121233 0.135485 0.150275 0.165600 0.181140 0.196376 0.210638 0.223214 0.233394 0.241045 0.246057 0.248640 0.249031 0.247299 0.243798 0.239397 0.234618 0.229574 0.224210 0.217939 0.210339 0.201680 0.192032 0.181229 0.169420 0.156564 0.142990 0.129609 0.117183 0.105934 0.096337 0.088669 0.083169 0.080173 0.079710 0.081140 0.083975 0.087855 0.092131 0.095999 0.098878 0.100442 0.100677 0.100185 0.099465 0.098523 0.097697 0.097593 0.098512 0.100650 0.103810 0.106991 0.109455 0.111239 0.112081 0.111663 0.109940 0.106725 0.102297 0.097802 0.094178 0.091906 0.091815 0.094769 0.101158 0.110919 0.123219 0.136019 0.147149 0.154960 0.156879 0.149655 0.131514 0.103017 0.066587 0.027764 -0.007327 -0.034446 -0.046640 -0.034613 0.007724 0.081734 0.184982 0.307947 0.440706 0.578957 0.712821 0.828473 0.915758 0.969092 0.987330 0.981200 0.958116 0.915514 0.856018 0.786185 0.709102 0.630329 0.551327 0.463030 0.362379 0.255964 0.149386 0.050116 -0.034121 -0.106200 -0.166185 -0.211168 -0.242043 -0.260761 -0.271518 -0.286185 -0.312145 -0.348296 -0.392696 -0.439556 -0.482625 -0.523865 -0.561598 -0.590061 -0.606757 -0.609678 -0.599519 -0.585014 -0.571743 -0.558204 -0.545281 -0.533921 -0.523764 -0.518181 -0.517967 -0.518680 -0.518319 -0.517072 -0.514302 -0.511011 -0.508001 -0.503331 -0.496698 -0.489839 -0.483335 -0.477364 -0.472274 -0.467236 -0.461793 -0.456658 -0.451831 -0.446561 -0.440699 -0.434237 -0.427315 -0.420669 -0.414805 -0.409379 -0.404281 -0.399390 -0.394463 -0.389588 -0.384673 -0.379117 -0.372659 -0.365318 -0.357187 -0.348631 -0.340022 -0.331278 -0.322526 -0.313957 -0.305700 -0.297928 -0.290712 -0.283685 -0.276688 -0.269753 -0.262830 -0.255781 -0.248619 -0.241241 -0.233711 -0.226245 -0.219044 -0.212120 -0.205574 -0.199392 -0.193579 -0.188168 -0.183075 -0.177918 -0.172426 -0.166380 -0.159482 -0.151324 -0.141658 -0.130291 -0.117207 -0.102552 -0.086542 -0.069160 -0.050601 -0.031027 -0.010637 0.010502 0.032381 0.055500 0.080058 0.106063 0.133533 0.162780 0.193653 0.225996 0.259223 0.292551 0.324908 0.355607 0.383518 0.407669 0.427086 0.441294 0.450152 0.454629 0.455453 0.452919 0.447878 0.441863 0.435825 0.430224 0.425056 0.419233 0.411963 0.403600 0.394060 0.382922 0.370182 0.355436 0.338889 0.321816 0.305032 0.288292 0.271658 0.254782 0.237446 0.220190 0.203290 0.186256 0.169152 0.152055 0.135160 0.118911 0.103755 0.089573 0.076437 0.064220 0.052909 0.042724 0.033844 0.026065 0.019428 0.013915 0.009502 0.006143 0.003807 0.002306 0.001430 0.000817 0.000213 -0.000419 -0.001100 -0.001837 -0.002568 -0.003348 -0.004157 -0.004867 -0.005410 -0.005767 -0.005977 -0.006260 -0.006754 -0.007389 -0.008150 -0.009044 -0.010028 -0.011163 -0.012443 -0.013740 -0.014993 -0.016229 -0.017468 -0.018818 -0.020341 -0.021969 -0.023647 -0.025350 -0.027013 -0.028649 -0.030242 -0.031734 -0.033086 -0.034283 -0.035310 -0.036220 -0.037039 -0.037754 -0.038370 -0.038912 -0.039386 -0.039818 -0.040218 -0.040576 -0.040888 -0.041175 -0.041448 -0.041735 -0.042055 -0.042404 -0.042784 -0.043212 -0.043685 -0.044195 -0.044723 -0.045236 -0.045707 -0.046133 -0.046511 -0.046853 -0.047163 -0.047429 -0.047640 -0.047809 -0.047934 -0.048018 -0.048059 -0.048044 -0.047969 -0.047853 -0.047717 -0.047593 -0.047510 -0.047473 -0.047489 -0.047568 -0.047718 -0.047958 -0.048305 -0.048762 -0.049338 -0.050035 -0.050855 -0.051805 -0.052878 -0.054058 -0.055315 -0.056618 -0.057930 -0.059234 -0.060504 -0.061730 -0.062887 -0.063938 -0.064839 -0.065571 -0.066096 -0.066393 -0.066440 -0.066220 -0.065722 -0.064943 -0.063895 -0.062610 -0.061122 -0.059458 -0.057660 -0.055777 -0.053878 -0.052057 -0.050431 -0.049120 -0.048232 -0.047794 -0.047812 -0.048228 -0.048971 -0.049995 -0.051192 -0.052376 -0.053411 -0.054235 -0.054824 -0.055261 -0.055590 -0.055720 -0.055603 -0.055234 -0.054582 -0.053690 -0.052575 -0.051172 -0.049494 -0.047653 -0.045789 -0.044113 -0.042801 -0.041852 -0.041264 -0.040986 -0.040945 -0.041159 -0.041573 -0.042017 -0.042390 -0.042654 -0.042807 -0.042967 -0.043201 -0.043403 -0.043502 -0.043439 -0.043132 -0.042613 -0.041876 -0.040829 -0.039452 -0.037765 -0.035813 -0.033709 -0.031555 -0.029353 -0.027139 -0.024930 -0.022767 -0.020765 -0.019042 -0.017670 -0.016731 -0.016224 -0.016121 -0.016356 -0.016826 -0.017409 -0.017914 -0.018049 -0.017612 -0.016582 -0.015011 -0.013105 -0.011081 -0.008986 -0.006994 -0.005401 -0.004392 -0.004047 -0.004327 -0.004896 -0.005496 -0.006131 -0.006678 -0.006930 -0.006788 -0.006113 -0.004906 -0.003462 -0.001973 -0.000403 0.001189 0.002757 0.004283 0.005621 0.006721 0.007747 0.008742 0.009626 0.010338 0.010756 0.010804 0.010626 0.010358 0.010135 0.010192 0.010768 0.012201 0.015008 0.019563 0.025967 0.034223 0.044134 0.055444 0.068160 0.082053 0.096756 0.111914 0.127249 0.142480 0.157719 0.172758 0.187064 0.200052 0.211227 0.220008 0.226318 0.230050 0.231231 0.229990 0.226492 0.221135 0.214796 0.208073 0.201051 0.193736 0.185747 0.176806 0.167225 0.157145 0.146401 0.135141 0.123384 0.111444 0.100107 0.090018 0.081279 0.074178 0.068806 0.065236 0.063721 0.064262 0.066321 0.069495 0.073423 0.077528 0.081173 0.083867 0.085342 0.085573 0.084992 0.084001 0.082694 0.081455 0.080930 0.081491 0.083278 0.086096 0.089062 0.091480 0.093355 0.094384 0.094123 0.092439 0.089193 0.084701 0.080147 0.076532 0.074319 0.074357 0.077597 0.084465 0.094897 0.108035 0.121734 0.133732 0.142373 0.145033 0.138394 0.120682 0.092520 0.056474 0.018379 -0.015328 -0.040143 -0.048741 -0.031350 0.018328 0.101476 0.215158 0.348910 0.491684 0.638299 0.777515 0.893761 0.975707 1.017614 1.018878 0.992095 0.946683 0.881123 0.800181 0.713456 0.626148 0.544645 0.470192 0.391003 0.301725 0.208719 0.115999 0.028347 -0.048066 -0.117283 -0.179213 -0.227763 -0.261642 -0.283253 -0.296149 -0.311209 -0.335569 -0.366908 -0.403375 -0.441863 -0.477681 -0.512519 -0.545033 -0.569257 -0.582389 -0.583504 -0.573469 -0.559645 -0.547043 -0.534120 -0.521546 -0.510676 -0.501420 -0.496537 -0.496681 -0.497794 -0.497922 -0.497302 -0.495327 -0.492639 -0.489833 -0.485150 -0.478295 -0.470919 -0.463651 -0.456661 -0.450374 -0.444245 -0.437997 -0.432305 -0.427157 -0.421706 -0.415689 -0.409131 -0.402115 -0.395185 -0.388763 -0.382493 -0.376312 -0.370312 -0.364426 -0.358727 -0.353192 -0.347318 -0.340883 -0.333966 -0.326634 -0.319036 -0.311382 -0.303528 -0.295468 -0.287246 -0.278898 -0.270508 -0.262156 -0.253655 -0.244997 -0.236252 -0.227500 -0.218768 -0.210178 -0.201720 -0.193457 -0.185409 -0.177654 -0.170233 -0.163210 -0.156497 -0.150090 -0.143951 -0.138022 -0.132108 -0.126056 -0.119636 -0.112582 -0.104482 -0.095066 -0.084195 -0.071833 -0.057980 -0.042747 -0.026058 -0.008009 0.011311 0.031758 0.053322 0.075985 0.100137 0.125879 0.153164 0.181895 0.212246 0.243952 0.276774 0.310094 0.343214 0.375101 0.404999 0.431751 0.454378 0.471895 0.483897 0.490302 0.492061 0.489981 0.484509 0.476703 0.468364 0.460668 0.454085 0.448594 0.442990 0.436329 0.428920 0.420519 0.410373 0.398273 0.383749 0.367020 0.349605 0.332502 0.315386 0.298347 0.281144 0.263582 0.246294 0.229550 0.212616 0.195425 0.178124 0.160930 0.144363 0.128954 0.114502 0.101076 0.088659 0.077278 0.067181 0.058567 0.051172 0.044998 0.040062 0.036334 0.033737 0.032211 0.031491 0.031283 0.031154 0.030781 0.030107 0.029117 0.027849 0.026418 0.024792 0.023056 0.021446 0.020104 0.019084 0.018350 0.017601 0.016649 0.015606 0.014495 0.013294 0.012058 0.010700 0.009233 0.007864 0.006694 0.005673 0.004764 0.003813 0.002714 0.001556 0.000386 -0.000804 -0.001968 -0.003148 -0.004359 -0.005541 -0.006667 -0.007743 -0.008765 -0.009796 -0.010866 -0.011946 -0.013019 -0.014082 -0.015114 -0.016133 -0.017145 -0.018144 -0.019126 -0.020087 -0.021020 -0.021944 -0.022863 -0.023770 -0.024660 -0.025537 -0.026394 -0.027236 -0.028064 -0.028887 -0.029706 -0.030518 -0.031319 -0.032115 -0.032902 -0.033681 -0.034451 -0.035217 -0.035978 -0.036734 -0.037480 -0.038225 -0.038967 -0.039708 -0.040446 -0.041191 -0.041941 -0.042697 -0.043455 -0.044218 -0.044983 -0.045750 -0.046516 -0.047287 -0.048060 -0.048832 -0.049599 -0.050364 -0.051122 -0.051872 -0.052608 -0.053334 -0.054044 -0.054735 -0.055403 -0.056050 -0.056672 -0.057268 -0.057835 -0.058381 -0.058902 -0.059394 -0.059850 -0.060267 -0.060637 -0.060953 -0.061210 -0.061403 -0.061527 -0.061581 -0.061564 -0.061490 -0.061367 -0.061203 -0.061010 -0.060808 -0.060609 -0.060419 -0.060237 -0.060055 -0.059862 -0.059659 -0.059441 -0.059196 -0.058922 -0.058627 -0.058331 -0.058072 -0.057892 -0.057815 -0.057883 -0.058142 -0.058620 -0.059315 -0.060199 -0.061196 -0.062222 -0.063223 -0.064103 -0.064738 -0.065036 -0.064956 -0.064497 -0.063747 -0.062786 -0.061620 -0.060312 -0.058969 -0.057672 -0.056492 -0.055473 -0.054555 -0.053736 -0.053121 -0.052799 -0.052860 -0.053386 -0.054337 -0.055671 -0.057362 -0.059312 -0.061402 -0.063446 -0.065154 -0.066303 -0.066849 -0.066781 -0.066222 -0.065288 -0.063941 -0.062242 -0.060372 -0.058435 -0.056506 -0.054609 -0.052575 -0.050342 -0.048048 -0.045806 -0.043726 -0.041944 -0.040419 -0.039160 -0.038252 -0.037704 -0.037482 -0.037518 -0.037608 -0.037618 -0.037572 -0.037493 -0.037453 -0.037527 -0.037652 -0.037812 -0.038062 -0.038393 -0.038795 -0.039210 -0.039455 -0.039391 -0.038980 -0.038149 -0.036821 -0.034981 -0.032614 -0.029798 -0.026743 -0.023676 -0.020783 -0.018354 -0.016717 -0.016090 -0.016472 -0.017698 -0.019298 -0.020770 -0.021782 -0.021760 -0.019888 -0.015612 -0.008704 0.000775 0.012225 0.025060 0.039234 0.054304 0.069615 0.084656 0.099012 0.112473 0.125626 0.138632 0.151036 0.162499 0.172823 0.181592 0.188893 0.194557 0.198112 0.199300 0.198175 0.194837 0.189807 0.183462 0.175691 0.166545 0.156144 0.144595 0.132278 0.119600 0.106735 0.094039 0.081748 0.070167 0.059602 0.050377 0.042619 0.036484 0.031891 0.028845 0.027399 0.027558 0.029175 0.032068 0.035825 0.039912 0.043668 0.046559 0.048467 0.049381 0.049506 0.049140 0.048390 0.047618 0.047562 0.048654 0.050945 0.054225 0.057691 0.060666 0.063184 0.064966 0.065525 0.064698 0.062361 0.058799 0.055142 0.052333 0.050760 0.051180 0.054460 0.060968 0.070647 0.082697 0.095112 0.105789 0.113188 0.114879 0.107805 0.090406 0.063439 0.029555 -0.005465 -0.035205 -0.055022 -0.057534 -0.032941 0.024973 0.117066 0.239952 0.382694 0.533499 0.686346 0.828877 0.944158 1.019913 1.050458 1.035726 0.989713 0.923536 0.836805 0.736355 0.634735 0.539220 0.456780 0.388340 0.319642 0.243060 0.164519 0.086243 0.009992 -0.059885 -0.128479 -0.195453 -0.251459 -0.292801 -0.322174 -0.342170 -0.362098 -0.388434 -0.417561 -0.447718 -0.478791 -0.507909 -0.536413 -0.563397 -0.583039 -0.592384 -0.591713 -0.582041 -0.568942 -0.556607 -0.543589 -0.530374 -0.518766 -0.509049 -0.503248 -0.501908 -0.501664 -0.500780 -0.499573 -0.497533 -0.494874 -0.491942 -0.487269 -0.480576 -0.473311 -0.466073 -0.458906 -0.452154 -0.445439 -0.438552 -0.432073 -0.425993 -0.419479 -0.412270 -0.404477 -0.396256 -0.388155 -0.380632 -0.373357 -0.366264 -0.359416 -0.352724 -0.346233 -0.339876 -0.333078 -0.325586 -0.317481 -0.308880 -0.300032 -0.291252 -0.282432 -0.273645 -0.265033 -0.256690 -0.248725 -0.241182 -0.233718 -0.226179 -0.218570 -0.210832 -0.202810 -0.194506 -0.185844 -0.176901 -0.167875 -0.158995 -0.150333 -0.142076 -0.134319 -0.127166 -0.120655 -0.114708 -0.108903 -0.102924 -0.096548 -0.089432 -0.081047 -0.071069 -0.059266 -0.045603 -0.030272 -0.013503 0.004812 0.024551 0.045625 0.067886 0.091207 0.115496 0.141190 0.168341 0.196795 0.226329 0.256928 0.288190 0.319927 0.351590 0.382618 0.412177 0.439647 0.464125 0.485025 0.501633 0.513581 0.520724 0.523693 0.522975 0.518932 0.512349 0.504579 0.496527 0.488547 0.480687 0.472225 0.462621 0.452210 0.440991 0.428565 0.414931 0.399825 0.383461 0.366869 0.350730 0.334761 0.318931 0.302844 0.286248 0.269569 0.253057 0.236329 0.219504 0.202660 0.186026 0.170063 0.155225 0.141449 0.128805 0.117082 0.106228 0.096498 0.088090 0.080856 0.074875 0.070087 0.066446 0.063918 0.062441 0.061780 0.061658 0.061588 0.061226 0.060537 0.059518 0.058230 0.056812 0.055211 0.053497 0.051910 0.050585 0.049581 0.048868 0.048139 0.047206 0.046179 0.045084 0.043903 0.042697 0.041374 0.039945 0.038611 0.037468 0.036470 0.035584 0.034660 0.033594 0.032471 0.031338 0.030187 0.029060 0.027916 0.026741 0.025590 0.024489 0.023433 0.022422 0.021399 0.020333 0.019253 0.018174 0.017098 0.016046 0.015000 0.013954 0.012912 0.011877 0.010850 0.009839 0.008822 0.007797 0.006768 0.005742 0.004716 0.003697 0.002682 0.001671 0.000657 -0.000358 -0.001373 -0.002381 -0.003390 -0.004398 -0.005404 -0.006407 -0.007416 -0.008428 -0.009442 -0.010453 -0.011467 -0.012478 -0.013487 -0.014491 -0.015496 -0.016501 -0.017503 -0.018495 -0.019485 -0.020468 -0.021443 -0.022407 -0.023368 -0.024320 -0.025262 -0.026186 -0.027097 -0.027986 -0.028852 -0.029689 -0.030501 -0.031283 -0.032033 -0.032747 -0.033432 -0.034088 -0.034718 -0.035323 -0.035916 -0.036499 -0.037070 -0.037623 -0.038153 -0.038649 -0.039107 -0.039516 -0.039869 -0.040162 -0.040403 -0.040607 -0.040813 -0.041058 -0.041373 -0.041802 -0.042408 -0.043227 -0.044264 -0.045498 -0.046873 -0.048318 -0.049797 -0.051234 -0.052529 -0.053607 -0.054433 -0.055000 -0.055393 -0.055672 -0.055830 -0.055904 -0.055968 -0.056060 -0.056210 -0.056406 -0.056553 -0.056583 -0.056515 -0.056339 -0.056045 -0.055643 -0.055115 -0.054483 -0.053854 -0.053309 -0.052880 -0.052629 -0.052603 -0.052831 -0.053345 -0.054127 -0.055084 -0.056127 -0.057197 -0.058188 -0.058973 -0.059460 -0.059605 -0.059419 -0.059020 -0.058510 -0.057911 -0.057306 -0.056830 -0.056567 -0.056581 -0.056877 -0.057324 -0.057840 -0.058473 -0.059220 -0.060070 -0.061021 -0.061999 -0.062963 -0.063968 -0.064994 -0.065946 -0.066715 -0.067137 -0.067082 -0.066570 -0.065625 -0.064300 -0.062690 -0.060839 -0.058858 -0.056964 -0.055313 -0.053957 -0.052919 -0.052086 -0.051391 -0.050915 -0.050687 -0.050668 -0.050863 -0.051197 -0.051626 -0.052199 -0.052878 -0.053515 -0.053936 -0.053889 -0.053192 -0.051895 -0.050085 -0.047921 -0.045638 -0.043380 -0.041427 -0.040232 -0.040061 -0.040876 -0.042473 -0.044276 -0.045700 -0.046458 -0.045993 -0.043492 -0.038430 -0.030562 -0.019963 -0.007327 0.006696 0.022015 0.038122 0.054321 0.070053 0.084843 0.098438 0.111425 0.123956 0.135561 0.145908 0.154820 0.161907 0.167296 0.170868 0.172191 0.171088 0.167737 0.162394 0.155755 0.148348 0.140087 0.131016 0.121170 0.110543 0.099447 0.088137 0.076516 0.064753 0.053027 0.041650 0.031104 0.021855 0.013967 0.007622 0.002843 -0.000333 -0.001780 -0.001501 0.000154 0.002899 0.006395 0.010145 0.013567 0.016207 0.017880 0.018558 0.018525 0.018092 0.017362 0.016685 0.016693 0.017757 0.019961 0.023115 0.026453 0.029339 0.031778 0.033488 0.034017 0.033205 0.030926 0.027442 0.023813 0.020919 0.019129 0.019154 0.021815 0.027460 0.036031 0.046776 0.057798 0.067115 0.073282 0.074018 0.066450 0.049169 0.023037 -0.009240 -0.041919 -0.068606 -0.084576 -0.082429 -0.052374 0.011700 0.110361 0.239821 0.388703 0.544560 0.700637 0.843614 0.955391 1.022911 1.040586 1.008903 0.943156 0.856075 0.748395 0.628947 0.513035 0.409918 0.327119 0.265291 0.207907 0.145229 0.082734 0.020911 -0.041402 -0.101668 -0.165998 -0.233906 -0.293080 -0.337683 -0.370823 -0.394363 -0.416270 -0.442539 -0.468389 -0.492160 -0.516478 -0.540099 -0.563946 -0.587352 -0.604343 -0.611622 -0.610541 -0.602250 -0.590803 -0.579736 -0.567629 -0.554814 -0.543630 -0.534734 -0.529493 -0.528283 -0.528120 -0.527284 -0.526184 -0.524355 -0.521600 -0.518052 -0.512447 -0.504557 -0.495853 -0.487072 -0.478250 -0.469833 -0.461753 -0.453980 -0.447090 -0.441054 -0.434868 -0.428094 -0.420814 -0.413036 -0.405015 -0.397050 -0.388766 -0.380159 -0.371593 -0.363240 -0.355175 -0.347494 -0.339869 -0.332177 -0.324595 -0.317183 -0.309818 -0.302515 -0.295103 -0.287445 -0.279419 -0.270967 -0.262060 -0.252780 -0.243161 -0.233344 -0.223403 -0.213499 -0.203749 -0.194326 -0.185303 -0.176732 -0.168417 -0.160300 -0.152429 -0.144820 -0.137341 -0.129980 -0.122616 -0.115190 -0.107642 -0.099906 -0.091745 -0.082926 -0.073022 -0.061755 -0.049034 -0.034821 -0.019007 -0.001650 0.017362 0.037980 0.060158 0.083745 0.108709 0.134923 0.162595 0.191607 0.221739 0.252639 0.284200 0.315946 0.347582 0.378552 0.408460 0.436584 0.462330 0.484888 0.503779 0.518371 0.528412 0.533810 0.535114 0.532809 0.527365 0.519662 0.511155 0.502853 0.495066 0.487827 0.480421 0.472246 0.463537 0.454133 0.443361 0.431009 0.416777 0.400868 0.384396 0.368124 0.351706 0.335127 0.318120 0.300494 0.282746 0.265155 0.247234 0.229086 0.210962 0.193256 0.176629 0.161721 0.148436 0.136818 0.126636 0.117736 0.110305 0.104379 0.099497 0.095512 0.092321 0.089871 0.088297 0.087656 0.087615 0.087875 0.088040 0.087770 0.087105 0.086044 0.084488 0.082511 0.080176 0.077655 0.075360 0.073576 0.072311 0.071516 0.070903 0.070239 0.069631 0.069048 0.068296 0.067328 0.066059 0.064523 0.063045 0.061821 0.060760 0.059834 0.058951 0.058017 0.057163 0.056435 0.055713 0.054979 0.054218 0.053419 0.052667 0.052016 0.051414 0.050848 0.050295 0.049731 0.049182 0.048661 0.048137 0.047603 0.047056 0.046485 0.045895 0.045290 0.044659 0.043999 0.043300 0.042557 0.041769 0.040931 0.040031 0.039060 0.038012 0.036879 0.035643 0.034303 0.032855 0.031308 0.029664 0.027940 0.026142 0.024288 0.022387 0.020462 0.018536 0.016639 0.014778 0.012987 0.011301 0.009765 0.008408 0.007272 0.006372 0.005722 0.005308 0.005119 0.005147 0.005364 0.005710 0.006141 0.006630 0.007152 0.007694 0.008235 0.008710 0.009055 0.009208 0.009107 0.008736 0.008077 0.007114 0.005852 0.004304 0.002510 0.000544 -0.001523 -0.003665 -0.005849 -0.008076 -0.010318 -0.012488 -0.014496 -0.016282 -0.017765 -0.018938 -0.019788 -0.020324 -0.020574 -0.020592 -0.020468 -0.020369 -0.020412 -0.020611 -0.020954 -0.021362 -0.021758 -0.022175 -0.022594 -0.022941 -0.023187 -0.023311 -0.023335 -0.023405 -0.023614 -0.023942 -0.024399 -0.024996 -0.025715 -0.026595 -0.027624 -0.028707 -0.029772 -0.030782 -0.031675 -0.032412 -0.032961 -0.033276 -0.033355 -0.033262 -0.033047 -0.032743 -0.032414 -0.032146 -0.032000 -0.032018 -0.032205 -0.032499 -0.032859 -0.033317 -0.033874 -0.034521 -0.035261 -0.036072 -0.036957 -0.037989 -0.039196 -0.040554 -0.042040 -0.043613 -0.045215 -0.046831 -0.048407 -0.049860 -0.051097 -0.052025 -0.052525 -0.052500 -0.051880 -0.050664 -0.048916 -0.046790 -0.044475 -0.042138 -0.040043 -0.038546 -0.037903 -0.038172 -0.039305 -0.041014 -0.043014 -0.045217 -0.047363 -0.049029 -0.049950 -0.050015 -0.049282 -0.048201 -0.047135 -0.046089 -0.045256 -0.044948 -0.045306 -0.046458 -0.048302 -0.050275 -0.051939 -0.053198 -0.053769 -0.053323 -0.051702 -0.048765 -0.044659 -0.040041 -0.035486 -0.031270 -0.027933 -0.026111 -0.026195 -0.028330 -0.032277 -0.037081 -0.041844 -0.046115 -0.049009 -0.049339 -0.046308 -0.039500 -0.029016 -0.015978 -0.001365 0.014700 0.031496 0.047991 0.063451 0.077236 0.089148 0.100264 0.111088 0.121128 0.130190 0.138249 0.144967 0.150637 0.155092 0.157439 0.157190 0.154456 0.149303 0.142265 0.133794 0.123655 0.111953 0.099113 0.085454 0.071435 0.057612 0.044200 0.031591 0.020124 0.010073 0.001505 -0.005451 -0.010818 -0.014689 -0.017411 -0.019189 -0.020080 -0.020075 -0.019080 -0.017075 -0.014437 -0.011540 -0.008780 -0.006540 -0.004828 -0.003688 -0.003238 -0.003406 -0.004042 -0.004843 -0.005172 -0.004607 -0.003196 -0.001099 0.001208 0.003272 0.005161 0.006711 0.007512 0.007411 0.006343 0.004488 0.002628 0.001386 0.000918 0.001621 0.003965 0.008082 0.013899 0.020857 0.027591 0.032689 0.035066 0.033077 0.024698 0.009097 -0.012669 -0.038034 -0.062065 -0.079146 -0.084773 -0.072222 -0.032695 0.039180 0.143407 0.275945 0.426067 0.581605 0.735267 0.873475 0.977996 1.035612 1.041252 0.995837 0.914677 0.811133 0.687012 0.552577 0.425118 0.315455 0.231129 0.172549 0.122117 0.068770 0.017459 -0.032759 -0.085663 -0.140388 -0.203533 -0.274370 -0.338428 -0.388098 -0.426708 -0.455350 -0.480434 -0.507234 -0.530142 -0.547658 -0.564814 -0.581939 -0.599650 -0.617680 -0.630394 -0.634493 -0.632273 -0.624972 -0.615054 -0.605243 -0.594182 -0.581955 -0.571075 -0.562390 -0.556609 -0.554012 -0.552325 -0.550120 -0.547864 -0.545243 -0.541835 -0.537645 -0.531730 -0.523895 -0.515325 -0.506674 -0.497961 -0.489614 -0.481754 -0.474463 -0.468183 -0.462854 -0.457524 -0.451715 -0.445496 -0.438810 -0.431710 -0.424360 -0.416402 -0.407825 -0.399044 -0.390287 -0.381581 -0.373028 -0.364390 -0.355587 -0.346832 -0.338213 -0.329554 -0.320870 -0.312078 -0.303133 -0.294001 -0.284720 -0.275251 -0.265673 -0.256015 -0.246385 -0.236820 -0.227412 -0.218124 -0.209021 -0.200160 -0.191594 -0.183200 -0.174977 -0.166923 -0.159045 -0.151247 -0.143521 -0.135778 -0.127965 -0.119943 -0.111618 -0.102816 -0.093358 -0.082906 -0.071252 -0.058266 -0.043873 -0.027924 -0.010408 0.008838 0.029848 0.052749 0.077482 0.103998 0.132101 0.161823 0.192853 0.224893 0.257414 0.290063 0.322203 0.353485 0.383395 0.411815 0.438270 0.462245 0.483147 0.500813 0.514807 0.524974 0.531182 0.533620 0.532481 0.528188 0.521422 0.513341 0.504789 0.495945 0.486887 0.477313 0.466932 0.456007 0.444556 0.432130 0.418647 0.403991 0.388374 0.372564 0.357111 0.341702 0.326248 0.310405 0.293964 0.277274 0.260605 0.243712 0.226821 0.210141 0.194064 0.179201 0.166109 0.154758 0.145151 0.136875 0.129655 0.123609 0.118676 0.114377 0.110542 0.107012 0.103757 0.101050 0.099073 0.097608 0.096537 0.095667 0.094816 0.094088 0.093471 0.092699 0.091693 0.090476 0.089085 0.087707 0.086488 0.085367 0.084323 0.083328 0.082340 0.081440 0.080671 0.079958 0.079299 0.078708 0.078208 0.077887 0.077794 0.077855 0.078001 0.078124 0.078128 0.078031 0.077842 0.077552 0.077173 0.076655 0.075964 0.075118 0.074111 0.072935 0.071583 0.069999 0.068169 0.066129 0.063926 0.061617 0.059271 0.056900 0.054537 0.052210 0.049963 0.047865 0.045993 0.044385 0.043099 0.042166 0.041610 0.041430 0.041620 0.042156 0.042984 0.044002 0.045131 0.046338 0.047589 0.048880 0.050183 0.051407 0.052461 0.053274 0.053765 0.053913 0.053691 0.053066 0.052035 0.050629 0.048907 0.046990 0.044978 0.042887 0.040737 0.038498 0.036171 0.033836 0.031566 0.029379 0.027334 0.025441 0.023729 0.022250 0.021033 0.020039 0.019220 0.018455 0.017665 0.016863 0.016064 0.015291 0.014580 0.013894 0.013220 0.012582 0.011986 0.011441 0.010941 0.010417 0.009838 0.009243 0.008668 0.008158 0.007762 0.007454 0.007217 0.007039 0.006890 0.006765 0.006636 0.006433 0.006113 0.005666 0.005093 0.004428 0.003700 0.002881 0.001964 0.000950 -0.000161 -0.001342 -0.002567 -0.003847 -0.005156 -0.006451 -0.007676 -0.008763 -0.009649 -0.010340 -0.010842 -0.011202 -0.011468 -0.011670 -0.011868 -0.012178 -0.012673 -0.013373 -0.014268 -0.015281 -0.016341 -0.017457 -0.018595 -0.019694 -0.020715 -0.021626 -0.022424 -0.023209 -0.024034 -0.024878 -0.025739 -0.026626 -0.027523 -0.028455 -0.029410 -0.030318 -0.031132 -0.031839 -0.032414 -0.032861 -0.033181 -0.033349 -0.033368 -0.033292 -0.033159 -0.033003 -0.032875 -0.032832 -0.032916 -0.033156 -0.033560 -0.034095 -0.034734 -0.035482 -0.036320 -0.037217 -0.038149 -0.039088 -0.040021 -0.040982 -0.041971 -0.042946 -0.043863 -0.044679 -0.045352 -0.045909 -0.046375 -0.046784 -0.047195 -0.047672 -0.048309 -0.049267 -0.050638 -0.052405 -0.054500 -0.056770 -0.059033 -0.061196 -0.063075 -0.064410 -0.065032 -0.064910 -0.064117 -0.062967 -0.061755 -0.060598 -0.059766 -0.059655 -0.060471 -0.062214 -0.064669 -0.067201 -0.069185 -0.070284 -0.069887 -0.067179 -0.061629 -0.053003 -0.041439 -0.027740 -0.012692 0.003477 0.020067 0.036143 0.050976 0.064052 0.075162 0.085082 0.094174 0.102059 0.108627 0.114029 0.118108 0.121086 0.122832 0.122610 0.120019 0.115251 0.108456 0.100092 0.090600 0.079808 0.067837 0.055099 0.041889 0.028539 0.015454 0.002677 -0.009549 -0.020915 -0.031145 -0.040122 -0.047646 -0.053741 -0.058445 -0.061959 -0.064401 -0.065798 -0.066156 -0.065535 -0.064009 -0.061882 -0.059492 -0.057219 -0.055398 -0.054103 -0.053395 -0.053324 -0.053813 -0.054763 -0.055935 -0.056835 -0.057130 -0.056804 -0.055946 -0.054923 -0.054040 -0.053155 -0.052289 -0.051621 -0.051184 -0.051097 -0.051340 -0.051513 -0.051404 -0.051117 -0.050697 -0.050274 |
From: Nils W. <nw...@ia...> - 2010-03-31 08:30:33
|
On Wed, 24 Mar 2010 10:14:29 -0400 Michael Droettboom <md...@st...> wrote: > You can use Unicode. > > ylabel(u'\u2030') > > http://www.unicode.org/charts/charindex.html > > Mike Degree Celsius u'\u2103' doesn't work. /usr/local/lib64/python2.4/site.packages/matplotlib/mathtext.py:722: MathTextWarning: Unrecognized symbol '\u2103'. Substituting with a dummy symbol. How can I resolve the problem ? Nils |
From: yogesh k. <yog...@gm...> - 2010-03-31 07:24:18
|
Dear All, I am using one image of 235X130 and plotting the curve on it, now when i save it it goes in the resoltuion of 800X600, I want to keep the resolution intact.What can be done for that to keep the resolution same? I am using savefig('/home/jaguar/Softwares/Development/Python/bunty.png') Thanks in advance! Regards Yogesh |
From: Alan G I. <ai...@am...> - 2010-03-31 02:54:00
|
To get a field plot with null clines, I'm using the approach John illustrated here: http://mail.scipy.org/pipermail/scipy-user/2007-October/014290.html Is this the recommended approach these days? Thanks, Alan Isaac |
From: Ryan M. <rm...@gm...> - 2010-03-31 01:19:49
|
(Putting back on list) On Tue, Mar 30, 2010 at 5:06 PM, Rachel-Mikel Arce Jaeger <Rac...@hm...> wrote: > I see. I think utilizing the backend will be sufficient for now. One more question (and thank you so much for your help!). Switching the xaxis to the top crushes it into the title, but adding more linespace to the title causes the title to go off the canvas. I really want to either resize the canvas or shift the figure down, but all I can find are functions for resizing the figure, which causes resolution issues. Are there any calls that let me shift to location of the figure on the canvas or else resize the canvas in relation to the figure? You're looking for the subplots_adjust() method of the figure class. You don't have to manually create a figure, as one is created for you when you start calling pyplot functions. But it's useful to be able to get to the object sometimes. # At the beginning, before any plotting fig = plt.figure() #OR at some point during/after plotting, before show() fig = plt.gcf() # Gives margins in normalized figure coordinates, so 0.0 represents very bottom, 1.0 represents very top. fig.subplots_adjust(top=0.85) Hope that helps, Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Gökhan S. <gok...@gm...> - 2010-03-30 21:59:29
|
On Tue, Mar 30, 2010 at 3:17 PM, Ryan May <rm...@gm...> wrote: > > According to the docstring, it only puts ticks in both locations, not > labels, which is what I'm seeing here on SVN with the PyGTK backend. > > Are you seeing something different? > > Yes, same here. It is just a bit unexpected ax.xaxis.set_ticks_position('top') puts labels as well but 'both' works only for ticks. It would be nice in some instances to have tick-labels appear on bottom and top with this easy way one-line way. -- Gökhan |
From: Ryan M. <rm...@gm...> - 2010-03-30 21:55:43
|
On Tue, Mar 30, 2010 at 3:51 PM, Rachel-Mikel Arce Jaeger <Rac...@hm...> wrote: > Ryan's code works great - thanks! > > The only problem I have is that show() never terminates? If I force terminate it and close the figure, then all I ever have to do is call draw() and the figure reappears, but I have to call show() at least once, or else the figure will never appear. I don't want my program to create a figure until I absolutely have to, but I want to avoid non-termination and force-termination as well. Is there a way to do that? You really should only call show() once (because it starts the event loops for the user interface), usually at the end of your script, which will bring up all of the figures. The script will then exit when you close all of the figures. If you're doing interactive work, you probably want to look into something like ipython (http://ipython.scipy.org/moin/) which makes working with plots interactively a breeze. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Rachel-Mikel A. J. <Rac...@HM...> - 2010-03-30 21:52:01
|
Ryan's code works great - thanks! The only problem I have is that show() never terminates? If I force terminate it and close the figure, then all I ever have to do is call draw() and the figure reappears, but I have to call show() at least once, or else the figure will never appear. I don't want my program to create a figure until I absolutely have to, but I want to avoid non-termination and force-termination as well. Is there a way to do that? ~Rachel ----- Original Message ----- From: "Ryan May" <rm...@gm...> To: "Gökhan Sever" <gok...@gm...> Cc: "Rachel-Mikel_ArceJaeger" <Rac...@hm...>, "matplotlib-users" <mat...@li...> Sent: Tuesday, March 30, 2010 1:17:34 PM GMT -08:00 US/Canada Pacific Subject: Re: [Matplotlib-users] Shifting the Origin On Tue, Mar 30, 2010 at 2:10 PM, Gökhan Sever <gok...@gm...> wrote: > On Tue, Mar 30, 2010 at 2:37 PM, Ryan May <rm...@gm...> wrote: >> You're looking for the set_ticks_position method on the xaxis (I've >> also tweaked setting the limits): >> >> plt.plot(xcoords, ycoords, 'ro') >> plt.xlim(0, maxX) >> plt.ylim(maxY, 0) >> ax = plt.gca() # Get current axes object >> ax.xaxis.set_ticks_position('top') >> plt.show() > > This is easier :) > > Could you get this one working ? > > ax.xaxis.set_ticks_position('both') > > It doesn't have an effect here on Qt4Agg using svn copy of matplotlib. According to the docstring, it only puts ticks in both locations, not labels, which is what I'm seeing here on SVN with the PyGTK backend. Are you seeing something different? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Friedrich R. <fri...@gm...> - 2010-03-30 21:24:14
|
2010/3/30 Chloe Lewis <ch...@be...>: > But this example doesn't solve the problem I was thinking of: it shows lots > of colors in the colorbar that aren't used in the plot. I'm so stupid! Here is the correct code. I just interchanged "-bounds, bound" with "min_val, max_val" on line 28. The only thing I didn't fix was to exclude the 0.00 from the ticks, but this Ariel already did, so I leave it now like it is. Friedrich |
From: Friedrich R. <fri...@gm...> - 2010-03-30 21:10:11
|
2010/3/30 Filipe Pires Alvarenga Fernandes <oc...@gm...>: > However, my knowledge of python is very limited, even though I think I > understood what you suggested I do not know how to get the shape (of > the figure?) for this part: > >>>> fig.set_size_inches(float(shape[0]) / dpi, float(shape[1]) / dpi) > > error is: > > Traceback (most recent call last): > File "blueearth-map.py", line 108, in <module> > fig.set_size_inches(float(shape[0]) / dpi, float(shape[1]) / dpi) > TypeError: 'function' object is unsubscriptable > > It seems that it ended up calling a function shape instead of a variable shape. You're completely right, I assumed that you fill in some 2-element vector in *shape*, it was intended as an /argument/. The function attemted to be indexed is imported from numpy by matplotlib.pyplot: There is a code line "from numpy import *". So, simply put some line somewhere like: shape = [500, 500] . You have to set or have to calculate the figure's shape in pixels somewhere, because you need it to convert the rgb string back into a PIL image. It's not that nice, I know, for your problem? Friedrich |
From: Ryan M. <rm...@gm...> - 2010-03-30 20:17:40
|
On Tue, Mar 30, 2010 at 2:10 PM, Gökhan Sever <gok...@gm...> wrote: > On Tue, Mar 30, 2010 at 2:37 PM, Ryan May <rm...@gm...> wrote: >> You're looking for the set_ticks_position method on the xaxis (I've >> also tweaked setting the limits): >> >> plt.plot(xcoords, ycoords, 'ro') >> plt.xlim(0, maxX) >> plt.ylim(maxY, 0) >> ax = plt.gca() # Get current axes object >> ax.xaxis.set_ticks_position('top') >> plt.show() > > This is easier :) > > Could you get this one working ? > > ax.xaxis.set_ticks_position('both') > > It doesn't have an effect here on Qt4Agg using svn copy of matplotlib. According to the docstring, it only puts ticks in both locations, not labels, which is what I'm seeing here on SVN with the PyGTK backend. Are you seeing something different? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Gökhan S. <gok...@gm...> - 2010-03-30 20:10:36
|
On Tue, Mar 30, 2010 at 2:37 PM, Ryan May <rm...@gm...> wrote: > You're looking for the set_ticks_position method on the xaxis (I've > also tweaked setting the limits): > > plt.plot(xcoords, ycoords, 'ro') > plt.xlim(0, maxX) > plt.ylim(maxY, 0) > ax = plt.gca() # Get current axes object > ax.xaxis.set_ticks_position('top') > plt.show() > > Ryan > > This is easier :) Could you get this one working ? ax.xaxis.set_ticks_position('both') It doesn't have an effect here on Qt4Agg using svn copy of matplotlib. -- Gökhan |
From: Jae-Joon L. <lee...@gm...> - 2010-03-30 20:02:00
|
On Tue, Mar 30, 2010 at 11:12 AM, Julien <ju_...@ya...> wrote: > This script should give you a srange historamme, with bins that are half > the size they shoud be. > I'm sorry but it is not clear what is wrong. The histogram looks just fine to me. Maybe you wanted to do plt.hist(sorted(liste_histo),bins=range(31)) ? -JJ |
From: Jae-Joon L. <lee...@gm...> - 2010-03-30 19:46:22
|
On Tue, Mar 30, 2010 at 2:56 PM, Eric Firing <ef...@ha...> wrote: > Is even that worth the potential extra complexity, both in the code and in > the documentation? What is the real benefit? > I think there are some benefit of moving artists to another axes. Also this will help enabling moving an axes to another figure. http://www.mail-archive.com/mat...@li.../msg13544.html Anyhow, given that I don't know how the implementation will make things more complicated. I don't think i'm in a good position to discuss whether it is worth while to do. While (as I said) I'm not very kin to implementing this feature, I'll discuss this issue with you and others when I have more idea (or actual code) in the future. Regards, -JJ |
From: Ryan M. <rm...@gm...> - 2010-03-30 19:37:56
|
2010/3/29 Rachel-Mikel_ArceJaeger <Rac...@hm...>: > Hello, > > This is my first time trying out this list, so please forgive me if I've doing this wrong. > > I'm trying to create a plot that has its origin in the upper-left hand corner, rather than the lower-left hand corner. I've discovered that I get the same effect if I do: > > plt.plot( xcoords, ycoords, 'ro' ) > plt.axis( [0, maxX, maxY, 0] ) You're looking for the set_ticks_position method on the xaxis (I've also tweaked setting the limits): plt.plot(xcoords, ycoords, 'ro') plt.xlim(0, maxX) plt.ylim(maxY, 0) ax = plt.gca() # Get current axes object ax.xaxis.set_ticks_position('top') plt.show() Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Gökhan S. <gok...@gm...> - 2010-03-30 19:36:45
|
On Mon, Mar 29, 2010 at 10:20 PM, <Rac...@hm...> wrote: > Hello, > > This is my first time trying out this list, so please forgive me if I've > doing this wrong. > > I'm trying to create a plot that has its origin in the upper-left hand > corner, rather than the lower-left hand corner. I've discovered that I get > the same effect if I do: > > plt.plot( xcoords, ycoords, 'ro' ) > plt.axis( [0, maxX, maxY, 0] ) > > However, the x-axis still appears on the bottom of the graph rather than > the top. > > Is there a way that I can shift the location of the origin more easily, or > at least shift where the axis is written at? > > Thanks! > Spines should do the trick. Take a look at: http://matplotlib.sourceforge.net/examples/pylab_examples/spine_placement_demo.html#pylab-examples-spine-placement-demo -- Gökhan |
From: Ryan M. <rm...@gm...> - 2010-03-30 19:32:36
|
On Tue, Mar 30, 2010 at 11:15 AM, Chloe Lewis <ch...@be...> wrote: > But this example doesn't solve the problem I was thinking of: it shows > lots of colors in the colorbar that aren't used in the plot. Here's a patch (and example) that I've cooked up that adds a colorbar.set_limits() method. It works pretty well, but there's still one issue to be sorted out: Setting the data limits distorts the aspect ratio. I haven't quite figured out how best to make it so that the aspect ratio is handled based on the size in axes coordinates and not based on the data range (or rather, data aspect ratio). (I'd love to hear any ideas the other devs have.) Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Eric F. <ef...@ha...> - 2010-03-30 18:57:06
|
Jae-Joon Lee wrote: > Doing this in a general way is quite difficult (if possible) because a > user can set an arbitrary transform for an artist. What we may try to > do is recycling artists whose transform is simple, e.g., transData, > rather than try to come up with a general solution. Is even that worth the potential extra complexity, both in the code and in the documentation? What is the real benefit? Eric > > I'll see what I can do but I must admit that I'm not very kin to this > kind of feature and it may take a while. I recommend you to open a new > ticket in the feature requests tracker hoping that other developers > or contributors can take a look. > > http://sourceforge.net/tracker/?atid=560723&group_id=80706&func=browse > > Regards, > > -JJ > > > > On Mon, Mar 29, 2010 at 1:54 PM, Thomas Robitaille > <tho...@gm...> wrote: >> Hi Jae-Joon, >> >> Thanks for your quick reply! Since for example LineCollections can be created independent of the Axes in which they are going to be plotted through the creation of a LineCollection instance, would it not be possible to have a method that allows one to retrieve an Axes-independent LineCollection from an Axes instance? (for example a get_collection method) This would then allow one to 'recycle' existing collections. >> >> Cheers, >> >> Thomas >> >> On Mar 29, 2010, at 1:40 PM, Jae-Joon Lee wrote: >> >>> As far as I can say, moving around artists from one axes to the other >>> is NOT recommended. And I encourage you to create separate artists for >>> each axes rather than try to reuse the existing ones. >>> >>> For your particular example, >>> >>> fig = mpl.figure() >>> ax2 = fig.add_subplot(1,1,1) >>> for c in ax1.collections: >>> c._transOffset=ax2.transData >>> ax2.add_collection(c) >>> >>> should work. >>> >>> Regards, >>> >>> -JJ >>> >>> >>> >>> >>> On Mon, Mar 29, 2010 at 12:24 PM, Thomas Robitaille >>> <tho...@gm...> wrote: >>>> Hello, >>>> >>>> In the following example, I am trying to copy over existing collections from one plot to another: >>>> >>>> import matplotlib.pyplot as mpl >>>> >>>> fig = mpl.figure() >>>> ax1 = fig.add_subplot(1,1,1) >>>> ax1.scatter([0.5],[0.5]) >>>> fig.savefig('test1.png') >>>> >>>> fig = mpl.figure() >>>> ax2 = fig.add_subplot(1,1,1) >>>> for c in ax1.collections: >>>> ax2.add_collection(c) >>>> fig.savefig('test2.png') >>>> >>>> However, the circle appears in the wrong place in test2.png (close to 0.4, 0.4 instead of 0.5,0.5). Is it not possible/safe to copy over collections in this way? If not, then how should this be done? >>>> >>>> Thanks, >>>> >>>> Thomas >>>> ------------------------------------------------------------------------------ >>>> Download Intel® Parallel Studio Eval >>>> Try the new software tools for yourself. Speed compiling, find bugs >>>> proactively, and fine-tune applications for parallel performance. >>>> See why Intel Parallel Studio got high marks during beta. >>>> http://p.sf.net/sfu/intel-sw-dev >>>> _______________________________________________ >>>> Matplotlib-users mailing list >>>> Mat...@li... >>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-users >>>> >> >> ------------------------------------------------------------------------------ >> Download Intel® Parallel Studio Eval >> Try the new software tools for yourself. Speed compiling, find bugs >> proactively, and fine-tune applications for parallel performance. >> See why Intel Parallel Studio got high marks during beta. >> http://p.sf.net/sfu/intel-sw-dev >> _______________________________________________ >> Matplotlib-users mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-users >> > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users |