FFT code on time series?

I have run through the example used here: http://www.mathworks.co.uk/products/matlab/examples.html;jsessionid=20a658a2dcd514f152ada895e6f8?file=/products/demos/shipping/matlab/fftdemo.html and am now trying to do the same with my data. I have a time series that consists of 5127 data points which were collected every 12 hours for just over 7 years. It is of ocean current water movement and I am trying to look at cycles within it.
I have tried to do this and the graph comes up blank. I suspect it is something to do with this part f = 1000/251*(0:127);
I don't know why they have used 1000 or 127.
Would someone be able to explain this? Thanks
Ok sorry, This is what I used. I have a time variable and a measurement of water volume. By following the example above I used this, but have clearly done something wrong:
t=0:.5:2578;
>> plot (Thermocline(1:5157))
>> Y=fft(Thermocline,5157);
>> Pyy=Y.*conj(Y)/5127;
>> f=1000/5127*(0:2563);
plot(f,Pyy(1:2564))
Pyy - 1x5157
Max ans =
1.6713e+06
ans =
4.4727e-07
I am unsure of the range as I don't fully understand what Pyy is. If its time then its half days. If its volume then the range is 18.7 Sv and if its periodicity then I expect to see a strong annual signal (720).

2 Comments

Without a code example is hard to understand what you're plotting against what.
Tell us this:
whos Pyy
max(Pyy(:))
min(Pyy(:))
Also what range is Pyy in and is that the range you expected it to be in?

Sign in to comment.

 Accepted Answer

hi Sam,
in case you have verified the properties of the signal in the above comment,we can proceed as the following :
We have a signal of length L=3950 taken every 12 hours for 2563.5 days. So formally the sampling rate is Fs= 3950/2563 =~1.54 Hz .
For these types of times series , the range is dynamically changing therefore we plot the frequency in dB to expand the low values and compress the high ones :
1)Solution 1:
Fs=1.55; %
L=length(Thermocline);
N=ceil(log2(L));
FFTherm=fft(Thermocline,2^N);
f=(Fs/2^N)*(0:2^(N-1)-1);
Power=FFTherm.*conj(FFTherm);
figure,
semilogy(f,Power(1:2^(N-1)))
xlabel(' Frequency (Hz)'), ylabel(' Magnitude (w)'),
title(' Power Spectral Density'), grid on;
2) Solution : 2
% Directly you type in the C.P :
psd(Thermocline)
So the frequency is in the range [0,...,0.1] Hz. To see if this result, physically, makes sens, try to check :
"Stochastic climate models, Part I1, Application to sea-surface temperature anomalies and thermocline variability" by CLAUDE FRA NKIG NOUL :
And another paper: "MEAN AND EDDY DYNAMICS OF THE MAIN THERMOCLINE" by GEOFFREY K. VALLIS
These two papers give a general idea on how much an estimate of the frequency must be .
I hope this helps .
KHMOU Youssef.

1 Comment

Sam
Sam on 20 Feb 2013
Yes it does, thank you very much for all of your help, I understand it now, thanks for thaking the time for such detailed answers!

Sign in to comment.

More Answers (1)

hi Sam,
In the demo, they used 1000 and 127 because :
t and y are of length 251, and they computed FFT resulting in same number of points which is 251, so the spectrum is "TWO" sided ( Symmetric) and they created a frequency axis based on a number N satisfying the relation 2^N>=length(y) which is N=8 and this is for adjusting the frequency axis to match the exact frequency .
for a value 1000: its the sampling frequency Fs=1000 Hz , you can anderstand that by looking at the vector t :
t = 0:.001:.25; % t=0:1/Fs......
So to adjust the frequency axis you have to do :
F=Fs/Length(vector)*(0:2^(N-1)-1) ;
Second Part : concerning your data , i think you have to increase the sampling rate to 10 or even 20, to make sure that the Nyquist condition is met.

9 Comments

Sam
Sam on 19 Feb 2013
Hi thank you for your explaination. Sorry if this is in your answer and I just don't understand, how do I change the sampling rate? I see I went wrong by using 1000 but am not sure wat to change it to.
hi, depends on your data : the vector "Therocline", how that vector was measured ? you do not need to declare t at all if Fs in known in "Thermocline"
Sam
Sam on 19 Feb 2013
It was a measurement taken every 12 hours for 2563.5 days.
ok, try this :
% Given a vector Thermocline
Fs=10; % an essay
L=length(Thermocline);
N=ceil(log2(L));
FFTherm=fft(Thermocline,2^N);
f=(Fs/2^N)*(0:2^(N-1)-1);
Power=FFTherm.*conj(FFTherm);
figure,
plot(f,Power(1:2^(N-1)))
xlabel(' Frequency (Hz)'), ylabel(' Magnitude (w)'),
title(' Power Spectral Density'), grid on;
Do you visualize 2 or 3 peaks at least ?
Sam
Sam on 19 Feb 2013
There are no peaks, the blue line just follows the axis. Mmmm... Thank you very much for your help though.
ok can you upload the data , i mean the vector ?
Sam
Sam on 19 Feb 2013

-17 -16.8000000000000 -16.6000000000000 -16.4000000000000 -16.2000000000000 -16.1000000000000 -16.1000000000000 -16 -16.1000000000000 -16.1000000000000 -16.3000000000000 -16.5000000000000 -16.7000000000000 -16.9000000000000 -17.2000000000000 -17.5000000000000 -17.9000000000000 -18.2000000000000 -18.5000000000000 -18.9000000000000 -19.2000000000000 -19.5000000000000 -19.8000000000000 -20 -20.2000000000000 -20.3000000000000 -20.4000000000000 -20.5000000000000 -20.5000000000000 -20.6000000000000 -20.5000000000000 -20.5000000000000 -20.5000000000000 -20.5000000000000 -20.5000000000000 -20.6000000000000 -20.6000000000000 -20.7000000000000 -20.9000000000000 -21 -21.1000000000000 -21.3000000000000 -21.4000000000000 -21.4000000000000 -21.5000000000000 -21.5000000000000 -21.4000000000000 -21.3000000000000 -21.1000000000000 -20.8000000000000 -20.6000000000000 -20.2000000000000 -19.9000000000000 -19.6000000000000 -19.2000000000000 -18.9000000000000 -18.5000000000000 -18.2000000000000 -17.9000000000000 -17.6000000000000 -17.3000000000000 -17.1000000000000 -16.9000000000000 -16.7000000000000 -16.6000000000000 -16.5000000000000 -16.4000000000000 -16.5000000000000 -16.6000000000000 -16.8000000000000 -17.1000000000000 -17.5000000000000 -18 -18.5000000000000 -19.2000000000000 -19.9000000000000 -20.6000000000000 -21.3000000000000 -22 -22.6000000000000 -23.1000000000000 -23.5000000000000 -23.7000000000000 -23.8000000000000 -23.7000000000000 -23.5000000000000 -23.2000000000000 -22.7000000000000 -22.1000000000000 -21.5000000000000 -20.9000000000000 -20.2000000000000 -19.7000000000000 -19.2000000000000 -18.8000000000000 -18.5000000000000 -18.4000000000000 -18.3000000000000 -18.4000000000000 -18.6000000000000 -18.8000000000000 -19.1000000000000 -19.4000000000000 -19.7000000000000 -19.9000000000000 -20.1000000000000 -20.3000000000000 -20.4000000000000 -20.4000000000000 -20.4000000000000 -20.3000000000000 -20.1000000000000 -20 -19.8000000000000 -19.7000000000000 -19.6000000000000 -19.5000000000000 -19.5000000000000 -19.6000000000000 -19.7000000000000 -19.8000000000000 -20 -20.2000000000000 -20.4000000000000 -20.6000000000000 -20.8000000000000 -21 -21.1000000000000 -21.2000000000000 -21.2000000000000 -21.1000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.1000000000000 -19.9000000000000 -19.6000000000000 -19.4000000000000 -19.3000000000000 -19.1000000000000 -19 -19 -19 -19.1000000000000 -19.2000000000000 -19.3000000000000 -19.5000000000000 -19.6000000000000 -19.8000000000000 -20 -20.2000000000000 -20.4000000000000 -20.6000000000000 -20.7000000000000 -20.8000000000000 -20.9000000000000 -20.9000000000000 -20.9000000000000 -20.9000000000000 -20.8000000000000 -20.7000000000000 -20.5000000000000 -20.4000000000000 -20.3000000000000 -20.2000000000000 -20.1000000000000 -20.1000000000000 -20.1000000000000 -20.2000000000000 -20.3000000000000 -20.5000000000000 -20.6000000000000 -20.8000000000000 -20.9000000000000 -21.1000000000000 -21.2000000000000 -21.2000000000000 -21.2000000000000 -21.1000000000000 -20.9000000000000 -20.6000000000000 -20.3000000000000 -19.9000000000000 -19.4000000000000 -19 -18.5000000000000 -18.1000000000000 -17.8000000000000 -17.5000000000000 -17.2000000000000 -17.1000000000000 -17.1000000000000 -17.1000000000000 -17.2000000000000 -17.4000000000000 -17.6000000000000 -17.8000000000000 -18.1000000000000 -18.3000000000000 -18.4000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.3000000000000 -18.1000000000000 -17.9000000000000 -17.6000000000000 -17.3000000000000 -17 -16.7000000000000 -16.5000000000000 -16.3000000000000 -16.3000000000000 -16.3000000000000 -16.3000000000000 -16.5000000000000 -16.6000000000000 -16.8000000000000 -17 -17.2000000000000 -17.4000000000000 -17.5000000000000 -17.5000000000000 -17.4000000000000 -17.3000000000000 -17.2000000000000 -16.9000000000000 -16.7000000000000 -16.4000000000000 -16.2000000000000 -15.9000000000000 -15.7000000000000 -15.6000000000000 -15.5000000000000 -15.5000000000000 -15.6000000000000 -15.7000000000000 -15.9000000000000 -16.1000000000000 -16.4000000000000 -16.7000000000000 -17 -17.3000000000000 -17.6000000000000 -17.8000000000000 -18 -18.2000000000000 -18.3000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18.1000000000000 -18 -17.9000000000000 -17.7000000000000 -17.6000000000000 -17.5000000000000 -17.4000000000000 -17.4000000000000 -17.4000000000000 -17.4000000000000 -17.5000000000000 -17.6000000000000 -17.7000000000000 -17.9000000000000 -18.1000000000000 -18.3000000000000 -18.4000000000000 -18.5000000000000 -18.5000000000000 -18.4000000000000 -18.3000000000000 -18.1000000000000 -17.8000000000000 -17.5000000000000 -17.1000000000000 -16.7000000000000 -16.3000000000000 -15.9000000000000 -15.5000000000000 -15.3000000000000 -15.1000000000000 -15 -15.1000000000000 -15.2000000000000 -15.4000000000000 -15.7000000000000 -16 -16.4000000000000 -16.8000000000000 -17.1000000000000 -17.5000000000000 -17.7000000000000 -17.9000000000000 -18.1000000000000 -18.2000000000000 -18.1000000000000 -18.1000000000000 -17.9000000000000 -17.7000000000000 -17.4000000000000 -17 -16.7000000000000 -16.2000000000000 -15.8000000000000 -15.4000000000000 -14.9000000000000 -14.5000000000000 -14.1000000000000 -13.7000000000000 -13.4000000000000 -13.2000000000000 -13.1000000000000 -13.1000000000000 -13.1000000000000 -13.3000000000000 -13.6000000000000 -13.9000000000000 -14.3000000000000 -14.8000000000000 -15.3000000000000 -15.8000000000000 -16.2000000000000 -16.6000000000000 -16.9000000000000 -17.2000000000000 -17.4000000000000 -17.4000000000000 -17.4000000000000 -17.3000000000000 -17.2000000000000 -17 -16.8000000000000 -16.6000000000000 -16.4000000000000 -16.2000000000000 -16.2000000000000 -16.1000000000000 -16.1000000000000 -16.2000000000000 -16.3000000000000 -16.3000000000000 -16.3000000000000 -16.3000000000000 -16.2000000000000 -16.1000000000000 -15.8000000000000 -15.4000000000000 -15 -14.5000000000000 -13.9000000000000 -13.3000000000000 -12.7000000000000 -12.1000000000000 -11.6000000000000 -11.2000000000000 -11 -10.8000000000000 -10.7000000000000 -10.8000000000000 -11 -11.2000000000000 -11.6000000000000 -12 -12.4000000000000 -12.9000000000000 -13.3000000000000 -13.8000000000000 -14.2000000000000 -14.5000000000000 -14.9000000000000 -15.1000000000000 -15.4000000000000 -15.6000000000000 -15.8000000000000 -16 -16.1000000000000 -16.3000000000000 -16.5000000000000 -16.6000000000000 -16.7000000000000 -16.8000000000000 -16.9000000000000 -17 -16.9000000000000 -16.9000000000000 -16.7000000000000 -16.5000000000000 -16.2000000000000 -15.8000000000000 -15.4000000000000 -14.9000000000000 -14.4000000000000 -13.9000000000000 -13.5000000000000 -13.1000000000000 -12.8000000000000 -12.6000000000000 -12.5000000000000 -12.6000000000000 -12.8000000000000 -13.1000000000000 -13.6000000000000 -14.1000000000000 -14.6000000000000 -15.2000000000000 -15.7000000000000 -16.2000000000000 -16.6000000000000 -16.9000000000000 -17.1000000000000 -17.2000000000000 -17.2000000000000 -17.1000000000000 -16.9000000000000 -16.7000000000000 -16.5000000000000 -16.4000000000000 -16.2000000000000 -16.2000000000000 -16.2000000000000 -16.3000000000000 -16.5000000000000 -16.7000000000000 -16.9000000000000 -17.1000000000000 -17.3000000000000 -17.4000000000000 -17.4000000000000 -17.3000000000000 -17.2000000000000 -16.8000000000000 -16.4000000000000 -15.9000000000000 -15.3000000000000 -14.6000000000000 -14 -13.4000000000000 -12.8000000000000 -12.3000000000000 -11.9000000000000 -11.7000000000000 -11.7000000000000 -11.8000000000000 -12 -12.4000000000000 -12.9000000000000 -13.5000000000000 -14.2000000000000 -14.9000000000000 -15.6000000000000 -16.2000000000000 -16.8000000000000 -17.3000000000000 -17.7000000000000 -18 -18.2000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.2000000000000 -18.2000000000000 -18.1000000000000 -18 -18 -18 -18 -18.1000000000000 -18.2000000000000 -18.3000000000000 -18.3000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18.1000000000000 -17.9000000000000 -17.8000000000000 -17.6000000000000 -17.4000000000000 -17.3000000000000 -17.2000000000000 -17.2000000000000 -17.3000000000000 -17.4000000000000 -17.6000000000000 -17.8000000000000 -18.2000000000000 -18.5000000000000 -18.9000000000000 -19.3000000000000 -19.7000000000000 -20.1000000000000 -20.5000000000000 -20.7000000000000 -21 -21.1000000000000 -21.1000000000000 -21.1000000000000 -20.9000000000000 -20.7000000000000 -20.5000000000000 -20.2000000000000 -19.9000000000000 -19.6000000000000 -19.3000000000000 -19.1000000000000 -18.9000000000000 -18.9000000000000 -18.9000000000000 -19 -19.1000000000000 -19.4000000000000 -19.7000000000000 -20 -20.3000000000000 -20.7000000000000 -21 -21.4000000000000 -21.6000000000000 -21.9000000000000 -22.1000000000000 -22.3000000000000 -22.4000000000000 -22.5000000000000 -22.6000000000000 -22.6000000000000 -22.7000000000000 -22.7000000000000 -22.7000000000000 -22.7000000000000 -22.7000000000000 -22.7000000000000 -22.6000000000000 -22.6000000000000 -22.5000000000000 -22.3000000000000 -22.2000000000000 -22 -21.8000000000000 -21.6000000000000 -21.3000000000000 -21.1000000000000 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.2000000000000 -20.1000000000000 -20 -19.9000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.7000000000000 -19.7000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.3000000000000 -19.2000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.2000000000000 -19.2000000000000 -19.4000000000000 -19.5000000000000 -19.6000000000000 -19.7000000000000 -19.7000000000000 -19.7000000000000 -19.7000000000000 -19.5000000000000 -19.3000000000000 -19.1000000000000 -18.7000000000000 -18.3000000000000 -17.9000000000000 -17.3000000000000 -16.8000000000000 -16.3000000000000 -15.7000000000000 -15.2000000000000 -14.7000000000000 -14.2000000000000 -13.8000000000000 -13.5000000000000 -13.1000000000000 -12.9000000000000 -12.7000000000000 -12.6000000000000 -12.5000000000000 -12.5000000000000 -12.6000000000000 -12.7000000000000 -12.9000000000000 -13.2000000000000 -13.5000000000000 -13.8000000000000 -14.2000000000000 -14.7000000000000 -15.2000000000000 -15.7000000000000 -16.2000000000000 -16.8000000000000 -17.3000000000000 -17.8000000000000 -18.4000000000000 -18.8000000000000 -19.3000000000000 -19.7000000000000 -20 -20.3000000000000 -20.5000000000000 -20.7000000000000 -20.9000000000000 -21 -21.1000000000000 -21.1000000000000 -21.1000000000000 -21 -20.9000000000000 -20.8000000000000 -20.5000000000000 -20.3000000000000 -19.9000000000000 -19.6000000000000 -19.1000000000000 -18.6000000000000 -18.2000000000000 -17.6000000000000 -17.1000000000000 -16.6000000000000 -16.2000000000000 -15.8000000000000 -15.4000000000000 -15.1000000000000 -14.8000000000000 -14.7000000000000 -14.5000000000000 -14.5000000000000 -14.4000000000000 -14.4000000000000 -14.5000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.8000000000000 -14.9000000000000 -14.9000000000000 -15 -15 -14.9000000000000 -14.9000000000000 -14.8000000000000 -14.7000000000000 -14.5000000000000 -14.4000000000000 -14.2000000000000 -14 -13.9000000000000 -13.7000000000000 -13.5000000000000 -13.4000000000000 -13.3000000000000 -13.2000000000000 -13.1000000000000 -13.1000000000000 -13.1000000000000 -13.2000000000000 -13.2000000000000 -13.3000000000000 -13.4000000000000 -13.6000000000000 -13.7000000000000 -13.9000000000000 -14.1000000000000 -14.2000000000000 -14.5000000000000 -14.7000000000000 -14.9000000000000 -15.2000000000000 -15.4000000000000 -15.7000000000000 -16 -16.3000000000000 -16.6000000000000 -16.9000000000000 -17.2000000000000 -17.5000000000000 -17.7000000000000 -17.9000000000000 -18.1000000000000 -18.2000000000000 -18.3000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.4000000000000 -18.4000000000000 -18.5000000000000 -18.6000000000000 -18.8000000000000 -18.9000000000000 -19.1000000000000 -19.3000000000000 -19.5000000000000 -19.7000000000000 -20 -20.3000000000000 -20.5000000000000 -20.8000000000000 -21.1000000000000 -21.3000000000000 -21.5000000000000 -21.7000000000000 -21.8000000000000 -21.8000000000000 -21.8000000000000 -21.7000000000000 -21.6000000000000 -21.4000000000000 -21.1000000000000 -20.8000000000000 -20.4000000000000 -20.1000000000000 -19.8000000000000 -19.5000000000000 -19.2000000000000 -19 -18.9000000000000 -18.9000000000000 -19 -19.1000000000000 -19.2000000000000 -19.4000000000000 -19.7000000000000 -19.9000000000000 -20.1000000000000 -20.2000000000000 -20.4000000000000 -20.4000000000000 -20.4000000000000 -20.4000000000000 -20.3000000000000 -20.1000000000000 -19.9000000000000 -19.8000000000000 -19.6000000000000 -19.4000000000000 -19.2000000000000 -19.1000000000000 -19 -18.9000000000000 -18.9000000000000 -18.9000000000000 -18.9000000000000 -18.9000000000000 -18.8000000000000 -18.8000000000000 -18.8000000000000 -18.7000000000000 -18.7000000000000 -18.6000000000000 -18.5000000000000 -18.3000000000000 -18.2000000000000 -18.1000000000000 -18.1000000000000 -18 -18 -18 -18 -18 -18.1000000000000 -18.1000000000000 -18.2000000000000 -18.2000000000000 -18.3000000000000 -18.3000000000000 -18.2000000000000 -18.2000000000000 -18.1000000000000 -17.9000000000000 -17.8000000000000 -17.6000000000000 -17.3000000000000 -17.1000000000000 -16.8000000000000 -16.5000000000000 -16.3000000000000 -16 -15.8000000000000 -15.6000000000000 -15.4000000000000 -15.3000000000000 -15.3000000000000 -15.3000000000000 -15.4000000000000 -15.6000000000000 -15.9000000000000 -16.2000000000000 -16.6000000000000 -17 -17.4000000000000 -17.8000000000000 -18.2000000000000 -18.6000000000000 -18.9000000000000 -19.1000000000000 -19.3000000000000 -19.4000000000000 -19.4000000000000 -19.4000000000000 -19.3000000000000 -19.2000000000000 -19 -18.8000000000000 -18.6000000000000 -18.4000000000000 -18.1000000000000 -17.9000000000000 -17.7000000000000 -17.5000000000000 -17.3000000000000 -17.1000000000000 -17 -16.9000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.9000000000000 -17.1000000000000 -17.3000000000000 -17.5000000000000 -17.8000000000000 -18.1000000000000 -18.4000000000000 -18.6000000000000 -18.9000000000000 -19.1000000000000 -19.2000000000000 -19.3000000000000 -19.3000000000000 -19.3000000000000 -19.2000000000000 -19 -18.8000000000000 -18.6000000000000 -18.4000000000000 -18.2000000000000 -18 -17.9000000000000 -17.8000000000000 -17.9000000000000 -17.9000000000000 -18 -18.2000000000000 -18.4000000000000 -18.6000000000000 -18.8000000000000 -19 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19 -18.9000000000000 -18.7000000000000 -18.6000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18.2000000000000 -18.4000000000000 -18.6000000000000 -18.9000000000000 -19.2000000000000 -19.7000000000000 -20.1000000000000 -20.6000000000000 -21 -21.4000000000000 -21.7000000000000 -21.9000000000000 -22 -21.9000000000000 -21.8000000000000 -21.5000000000000 -21.2000000000000 -20.8000000000000 -20.5000000000000 -20.1000000000000 -19.7000000000000 -19.4000000000000 -19.2000000000000 -19 -18.9000000000000 -18.9000000000000 -18.9000000000000 -18.9000000000000 -19 -19.1000000000000 -19.2000000000000 -19.3000000000000 -19.3000000000000 -19.3000000000000 -19.3000000000000 -19.3000000000000 -19.2000000000000 -19.1000000000000 -19 -18.9000000000000 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.5000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18 -17.8000000000000 -17.6000000000000 -17.4000000000000 -17.2000000000000 -17 -16.7000000000000 -16.5000000000000 -16.2000000000000 -16 -15.8000000000000 -15.6000000000000 -15.4000000000000 -15.2000000000000 -15 -14.8000000000000 -14.6000000000000 -14.4000000000000 -14.2000000000000 -14 -13.9000000000000 -13.7000000000000 -13.5000000000000 -13.4000000000000 -13.3000000000000 -13.2000000000000 -13.2000000000000 -13.2000000000000 -13.3000000000000 -13.4000000000000 -13.5000000000000 -13.6000000000000 -13.8000000000000 -13.9000000000000 -14 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.3000000000000 -14.4000000000000 -14.4000000000000 -14.4000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.6000000000000 -14.6000000000000 -14.6000000000000 -14.7000000000000 -14.7000000000000 -14.7000000000000 -14.6000000000000 -14.6000000000000 -14.5000000000000 -14.4000000000000 -14.3000000000000 -14.2000000000000 -14.1000000000000 -14.1000000000000 -14 -13.9000000000000 -13.9000000000000 -14 -14 -14.1000000000000 -14.2000000000000 -14.4000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.8000000000000 -14.9000000000000 -14.8000000000000 -14.8000000000000 -14.6000000000000 -14.4000000000000 -14.1000000000000 -13.8000000000000 -13.5000000000000 -13.2000000000000 -12.9000000000000 -12.6000000000000 -12.3000000000000 -12.1000000000000 -12 -12 -12 -12.1000000000000 -12.3000000000000 -12.6000000000000 -12.9000000000000 -13.3000000000000 -13.6000000000000 -14 -14.4000000000000 -14.7000000000000 -15 -15.3000000000000 -15.4000000000000 -15.6000000000000 -15.6000000000000 -15.6000000000000 -15.5000000000000 -15.3000000000000 -15.1000000000000 -14.8000000000000 -14.5000000000000 -14.1000000000000 -13.6000000000000 -13.1000000000000 -12.7000000000000 -12.2000000000000 -11.7000000000000 -11.3000000000000 -10.9000000000000 -10.6000000000000 -10.4000000000000 -10.3000000000000 -10.3000000000000 -10.4000000000000 -10.6000000000000 -11 -11.4000000000000 -12 -12.6000000000000 -13.3000000000000 -14 -14.7000000000000 -15.4000000000000 -16.1000000000000 -16.6000000000000 -17.2000000000000 -17.6000000000000 -17.9000000000000 -18.2000000000000 -18.4000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.4000000000000 -18.4000000000000 -18.4000000000000 -18.3000000000000 -18.3000000000000 -18.2000000000000 -18.1000000000000 -18 -17.8000000000000 -17.6000000000000 -17.4000000000000 -17.2000000000000 -16.9000000000000 -16.7000000000000 -16.4000000000000 -16.2000000000000 -16 -15.8000000000000 -15.6000000000000 -15.4000000000000 -15.2000000000000 -15.1000000000000 -14.9000000000000 -14.7000000000000 -14.5000000000000 -14.2000000000000 -14 -13.8000000000000 -13.5000000000000 -13.3000000000000 -13 -12.8000000000000 -12.7000000000000 -12.5000000000000 -12.5000000000000 -12.4000000000000 -12.4000000000000 -12.4000000000000 -12.5000000000000 -12.5000000000000 -12.6000000000000 -12.6000000000000 -12.6000000000000 -12.6000000000000 -12.5000000000000 -12.4000000000000 -12.2000000000000 -12 -11.8000000000000 -11.6000000000000 -11.4000000000000 -11.2000000000000 -11.1000000000000 -11 -11 -11.1000000000000 -11.2000000000000 -11.4000000000000 -11.7000000000000 -12 -12.3000000000000 -12.6000000000000 -12.8000000000000 -13 -13.1000000000000 -13.2000000000000 -13.1000000000000 -12.9000000000000 -12.7000000000000 -12.4000000000000 -12 -11.6000000000000 -11.2000000000000 -10.8000000000000 -10.4000000000000 -10 -9.72000000000000 -9.48000000000000 -9.33000000000000 -9.25000000000000 -9.25000000000000 -9.32000000000000 -9.47000000000000 -9.67000000000000 -9.93000000000000 -10.2000000000000 -10.5000000000000 -10.9000000000000 -11.2000000000000 -11.6000000000000 -11.9000000000000 -12.2000000000000 -12.5000000000000 -12.8000000000000 -13.1000000000000 -13.4000000000000 -13.7000000000000 -13.9000000000000 -14.2000000000000 -14.4000000000000 -14.7000000000000 -14.9000000000000 -15.1000000000000 -15.3000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.3000000000000 -15.1000000000000 -14.9000000000000 -14.6000000000000 -14.2000000000000 -13.8000000000000 -13.3000000000000 -12.9000000000000 -12.4000000000000 -12 -11.7000000000000 -11.5000000000000 -11.3000000000000 -11.3000000000000 -11.3000000000000 -11.4000000000000 -11.7000000000000 -12 -12.3000000000000 -12.7000000000000 -13.1000000000000 -13.4000000000000 -13.8000000000000 -14.1000000000000 -14.3000000000000 -14.4000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.3000000000000 -14.1000000000000 -13.9000000000000 -13.6000000000000 -13.4000000000000 -13.1000000000000 -12.9000000000000 -12.6000000000000 -12.5000000000000 -12.4000000000000 -12.4000000000000 -12.4000000000000 -12.5000000000000 -12.6000000000000 -12.8000000000000 -13 -13.2000000000000 -13.4000000000000 -13.6000000000000 -13.8000000000000 -13.9000000000000 -14 -14.1000000000000 -14.1000000000000 -14.1000000000000 -14 -14 -13.9000000000000 -13.9000000000000 -13.9000000000000 -13.9000000000000 -13.9000000000000 -13.9000000000000 -14 -14.1000000000000 -14.2000000000000 -14.2000000000000 -14.3000000000000 -14.4000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.9000000000000 -15 -15.2000000000000 -15.4000000000000 -15.7000000000000 -15.9000000000000 -16.1000000000000 -16.2000000000000 -16.4000000000000 -16.5000000000000 -16.7000000000000 -16.8000000000000 -16.9000000000000 -17 -17.2000000000000 -17.4000000000000 -17.6000000000000 -17.9000000000000 -18.2000000000000 -18.6000000000000 -18.9000000000000 -19.2000000000000 -19.5000000000000 -19.8000000000000 -20 -20.1000000000000 -20.1000000000000 -20 -19.8000000000000 -19.5000000000000 -19.2000000000000 -18.7000000000000 -18.2000000000000 -17.6000000000000 -17.1000000000000 -16.5000000000000 -16 -15.6000000000000 -15.3000000000000 -15.1000000000000 -15 -15 -15.1000000000000 -15.3000000000000 -15.6000000000000 -15.9000000000000 -16.3000000000000 -16.7000000000000 -17 -17.4000000000000 -17.6000000000000 -17.8000000000000 -17.9000000000000 -17.9000000000000 -17.8000000000000 -17.6000000000000 -17.3000000000000 -17 -16.7000000000000 -16.3000000000000 -15.9000000000000 -15.6000000000000 -15.2000000000000 -14.9000000000000 -14.7000000000000 -14.5000000000000 -14.4000000000000 -14.4000000000000 -14.4000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.9000000000000 -15.1000000000000 -15.3000000000000 -15.5000000000000 -15.7000000000000 -15.9000000000000 -16.1000000000000 -16.3000000000000 -16.5000000000000 -16.7000000000000 -16.8000000000000 -17 -17.2000000000000 -17.4000000000000 -17.5000000000000 -17.7000000000000 -17.9000000000000 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.8000000000000 -19 -19.3000000000000 -19.5000000000000 -19.8000000000000 -20 -20.2000000000000 -20.3000000000000 -20.4000000000000 -20.4000000000000 -20.4000000000000 -20.3000000000000 -20.1000000000000 -19.8000000000000 -19.4000000000000 -19 -18.6000000000000 -18.2000000000000 -17.8000000000000 -17.5000000000000 -17.2000000000000 -17 -16.8000000000000 -16.8000000000000 -16.9000000000000 -17.1000000000000 -17.4000000000000 -17.8000000000000 -18.1000000000000 -18.5000000000000 -18.9000000000000 -19.3000000000000 -19.6000000000000 -19.9000000000000 -20 -20.1000000000000 -20.1000000000000 -20 -19.8000000000000 -19.6000000000000 -19.4000000000000 -19.2000000000000 -19 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.6000000000000 -18.7000000000000 -18.8000000000000 -19 -19.3000000000000 -19.6000000000000 -19.9000000000000 -20.2000000000000 -20.5000000000000 -20.7000000000000 -20.9000000000000 -21.1000000000000 -21.2000000000000 -21.3000000000000 -21.3000000000000 -21.2000000000000 -21.1000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.2000000000000 -20 -19.9000000000000 -19.7000000000000 -19.5000000000000 -19.4000000000000 -19.3000000000000 -19.2000000000000 -19.2000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19 -19 -18.9000000000000 -18.9000000000000 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.6000000000000 -18.7000000000000 -18.8000000000000 -18.9000000000000 -19.1000000000000 -19.3000000000000 -19.4000000000000 -19.5000000000000 -19.6000000000000 -19.7000000000000 -19.7000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.2000000000000 -19 -18.8000000000000 -18.6000000000000 -18.4000000000000 -18.3000000000000 -18.1000000000000 -18.1000000000000 -18 -18 -18 -18 -18.1000000000000 -18.1000000000000 -18.1000000000000 -18.2000000000000 -18.2000000000000 -18.1000000000000 -18.1000000000000 -18 -17.9000000000000 -17.8000000000000 -17.6000000000000 -17.5000000000000 -17.3000000000000 -17.2000000000000 -17.1000000000000 -17 -16.9000000000000 -16.9000000000000 -16.9000000000000 -17 -17.1000000000000 -17.2000000000000 -17.4000000000000 -17.6000000000000 -17.8000000000000 -18 -18.2000000000000 -18.5000000000000 -18.7000000000000 -18.8000000000000 -18.9000000000000 -19 -19 -19 -18.9000000000000 -18.7000000000000 -18.5000000000000 -18.3000000000000 -18.1000000000000 -17.8000000000000 -17.6000000000000 -17.4000000000000 -17.2000000000000 -17 -16.9000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.9000000000000 -16.9000000000000 -17 -17 -17 -17.1000000000000 -17 -17 -16.9000000000000 -16.8000000000000 -16.7000000000000 -16.6000000000000 -16.4000000000000 -16.3000000000000 -16.2000000000000 -16.1000000000000 -16.1000000000000 -16 -16.1000000000000 -16.1000000000000 -16.2000000000000 -16.3000000000000 -16.4000000000000 -16.6000000000000 -16.7000000000000 -16.9000000000000 -17.1000000000000 -17.3000000000000 -17.5000000000000 -17.7000000000000 -17.9000000000000 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.7000000000000 -18.8000000000000 -19 -19.1000000000000 -19.2000000000000 -19.2000000000000 -19.2000000000000 -19.2000000000000 -19.2000000000000 -19 -18.9000000000000 -18.7000000000000 -18.5000000000000 -18.2000000000000 -17.9000000000000 -17.6000000000000 -17.3000000000000 -17 -16.8000000000000 -16.5000000000000 -16.3000000000000 -16.2000000000000 -16.1000000000000 -16 -16.1000000000000 -16.1000000000000 -16.3000000000000 -16.5000000000000 -16.7000000000000 -17 -17.2000000000000 -17.5000000000000 -17.8000000000000 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.7000000000000 -18.8000000000000 -18.8000000000000 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.4000000000000 -18.2000000000000 -18 -17.7000000000000 -17.5000000000000 -17.3000000000000 -17.1000000000000 -16.9000000000000 -16.8000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.7000000000000 -16.6000000000000 -16.6000000000000 -16.5000000000000 -16.4000000000000 -16.3000000000000 -16.1000000000000 -16 -15.8000000000000 -15.7000000000000 -15.5000000000000 -15.4000000000000 -15.3000000000000 -15.1000000000000 -15 -14.9000000000000 -14.8000000000000 -14.7000000000000 -14.6000000000000 -14.5000000000000 -14.5000000000000 -14.4000000000000 -14.3000000000000 -14.2000000000000 -14.2000000000000 -14.2000000000000 -14.1000000000000 -14.1000000000000 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.3000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.9000000000000 -15.1000000000000 -15.3000000000000 -15.5000000000000 -15.6000000000000 -15.8000000000000 -16 -16.1000000000000 -16.2000000000000 -16.3000000000000 -16.3000000000000 -16.4000000000000 -16.4000000000000 -16.4000000000000 -16.4000000000000 -16.4000000000000 -16.4000000000000 -16.5000000000000 -16.5000000000000 -16.7000000000000 -16.8000000000000 -17 -17.2000000000000 -17.4000000000000 -17.7000000000000 -17.9000000000000 -18.2000000000000 -18.4000000000000 -18.5000000000000 -18.6000000000000 -18.7000000000000 -18.7000000000000 -18.6000000000000 -18.4000000000000 -18.2000000000000 -17.9000000000000 -17.6000000000000 -17.3000000000000 -16.9000000000000 -16.6000000000000 -16.3000000000000 -16.1000000000000 -15.9000000000000 -15.7000000000000 -15.6000000000000 -15.6000000000000 -15.5000000000000 -15.6000000000000 -15.6000000000000 -15.7000000000000 -15.8000000000000 -15.8000000000000 -15.9000000000000 -15.9000000000000 -15.9000000000000 -15.9000000000000 -15.9000000000000 -15.8000000000000 -15.8000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.8000000000000 -15.8000000000000 -15.9000000000000 -16 -16.1000000000000 -16.2000000000000 -16.2000000000000 -16.2000000000000 -16.2000000000000 -16.1000000000000 -16 -15.7000000000000 -15.5000000000000 -15.1000000000000 -14.8000000000000 -14.4000000000000 -14 -13.6000000000000 -13.2000000000000 -12.9000000000000 -12.6000000000000 -12.4000000000000 -12.3000000000000 -12.2000000000000 -12.2000000000000 -12.3000000000000 -12.5000000000000 -12.7000000000000 -12.9000000000000 -13.2000000000000 -13.5000000000000 -13.8000000000000 -14.1000000000000 -14.4000000000000 -14.7000000000000 -15 -15.2000000000000 -15.4000000000000 -15.6000000000000 -15.8000000000000 -16 -16.2000000000000 -16.4000000000000 -16.6000000000000 -16.8000000000000 -17 -17.3000000000000 -17.5000000000000 -17.8000000000000 -18 -18.3000000000000 -18.5000000000000 -18.7000000000000 -18.8000000000000 -19 -19.1000000000000 -19.1000000000000 -19.2000000000000 -19.2000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.2000000000000 -19.2000000000000 -19.3000000000000 -19.4000000000000 -19.4000000000000 -19.5000000000000 -19.6000000000000 -19.6000000000000 -19.6000000000000 -19.5000000000000 -19.5000000000000 -19.3000000000000 -19.2000000000000 -18.9000000000000 -18.7000000000000 -18.4000000000000 -18.1000000000000 -17.8000000000000 -17.5000000000000 -17.3000000000000 -17.1000000000000 -16.9000000000000 -16.7000000000000 -16.6000000000000 -16.6000000000000 -16.7000000000000 -16.8000000000000 -16.9000000000000 -17.1000000000000 -17.3000000000000 -17.5000000000000 -17.8000000000000 -18 -18.2000000000000 -18.3000000000000 -18.4000000000000 -18.5000000000000 -18.5000000000000 -18.5000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18 -17.8000000000000 -17.7000000000000 -17.5000000000000 -17.4000000000000 -17.2000000000000 -17.1000000000000 -17.1000000000000 -17 -17 -17 -17 -17 -17.1000000000000 -17.1000000000000 -17.1000000000000 -17.2000000000000 -17.2000000000000 -17.2000000000000 -17.2000000000000 -17.2000000000000 -17.2000000000000 -17.2000000000000 -17.3000000000000 -17.3000000000000 -17.4000000000000 -17.5000000000000 -17.6000000000000 -17.7000000000000 -17.9000000000000 -18 -18.2000000000000 -18.3000000000000 -18.3000000000000 -18.4000000000000 -18.3000000000000 -18.2000000000000 -18 -17.6000000000000 -17.2000000000000 -16.7000000000000 -16.2000000000000 -15.6000000000000 -14.9000000000000 -14.3000000000000 -13.7000000000000 -13.1000000000000 -12.6000000000000 -12.2000000000000 -11.9000000000000 -11.6000000000000 -11.5000000000000 -11.4000000000000 -11.4000000000000 -11.4000000000000 -11.5000000000000 -11.6000000000000 -11.6000000000000 -11.7000000000000 -11.8000000000000 -11.8000000000000 -11.8000000000000 -11.8000000000000 -11.8000000000000 -11.8000000000000 -11.7000000000000 -11.6000000000000 -11.5000000000000 -11.4000000000000 -11.3000000000000 -11.2000000000000 -11 -10.9000000000000 -10.7000000000000 -10.5000000000000 -10.2000000000000 -9.94000000000000 -9.66000000000000 -9.38000000000000 -9.12000000000000 -8.87000000000000 -8.66000000000000 -8.51000000000000 -8.42000000000000 -8.39000000000000 -8.45000000000000 -8.60000000000000 -8.83000000000000 -9.13000000000000 -9.51000000000000 -9.95000000000000 -10.4000000000000 -11 -11.5000000000000 -12 -12.5000000000000 -12.9000000000000 -13.3000000000000 -13.6000000000000 -13.8000000000000 -13.9000000000000 -14 -13.9000000000000 -13.8000000000000 -13.6000000000000 -13.4000000000000 -13.2000000000000 -12.9000000000000 -12.7000000000000 -12.6000000000000 -12.5000000000000 -12.5000000000000 -12.7000000000000 -12.9000000000000 -13.2000000000000 -13.7000000000000 -14.2000000000000 -14.7000000000000 -15.3000000000000 -15.9000000000000 -16.4000000000000 -16.9000000000000 -17.3000000000000 -17.6000000000000 -17.8000000000000 -17.8000000000000 -17.8000000000000 -17.7000000000000 -17.5000000000000 -17.3000000000000 -17 -16.8000000000000 -16.6000000000000 -16.4000000000000 -16.4000000000000 -16.4000000000000 -16.6000000000000 -16.9000000000000 -17.2000000000000 -17.6000000000000 -18 -18.5000000000000 -18.9000000000000 -19.2000000000000 -19.4000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19 -18.6000000000000 -18 -17.4000000000000 -16.8000000000000 -16.1000000000000 -15.5000000000000 -15 -14.6000000000000 -14.4000000000000 -14.2000000000000 -14.2000000000000 -14.4000000000000 -14.7000000000000 -15 -15.4000000000000 -15.8000000000000 -16.2000000000000 -16.5000000000000 -16.7000000000000 -16.9000000000000 -16.9000000000000 -16.8000000000000 -16.6000000000000 -16.3000000000000 -16 -15.6000000000000 -15.2000000000000 -14.8000000000000 -14.5000000000000 -14.2000000000000 -14 -13.9000000000000 -13.9000000000000 -13.9000000000000 -14.1000000000000 -14.3000000000000 -14.5000000000000 -14.8000000000000 -15.1000000000000 -15.4000000000000 -15.7000000000000 -15.9000000000000 -16.1000000000000 -16.3000000000000 -16.3000000000000 -16.4000000000000 -16.3000000000000 -16.3000000000000 -16.2000000000000 -16 -15.8000000000000 -15.7000000000000 -15.5000000000000 -15.4000000000000 -15.2000000000000 -15.1000000000000 -15 -15 -15 -15 -15.1000000000000 -15.1000000000000 -15.2000000000000 -15.3000000000000 -15.3000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.3000000000000 -15.2000000000000 -15.1000000000000 -15 -14.8000000000000 -14.6000000000000 -14.5000000000000 -14.3000000000000 -14.1000000000000 -13.9000000000000 -13.7000000000000 -13.6000000000000 -13.5000000000000 -13.4000000000000 -13.4000000000000 -13.4000000000000 -13.5000000000000 -13.7000000000000 -13.8000000000000 -14.1000000000000 -14.3000000000000 -14.7000000000000 -15 -15.4000000000000 -15.7000000000000 -16.1000000000000 -16.4000000000000 -16.8000000000000 -17.1000000000000 -17.4000000000000 -17.7000000000000 -17.9000000000000 -18.2000000000000 -18.4000000000000 -18.7000000000000 -18.9000000000000 -19.2000000000000 -19.5000000000000 -19.9000000000000 -20.2000000000000 -20.6000000000000 -21 -21.4000000000000 -21.7000000000000 -22 -22.3000000000000 -22.5000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.5000000000000 -22.3000000000000 -22.1000000000000 -21.8000000000000 -21.5000000000000 -21.2000000000000 -20.9000000000000 -20.5000000000000 -20.2000000000000 -20 -19.7000000000000 -19.5000000000000 -19.3000000000000 -19.2000000000000 -19.1000000000000 -19.1000000000000 -19.1000000000000 -19.2000000000000 -19.3000000000000 -19.5000000000000 -19.8000000000000 -20 -20.4000000000000 -20.7000000000000 -21.1000000000000 -21.5000000000000 -21.8000000000000 -22.2000000000000 -22.5000000000000 -22.8000000000000 -23 -23.2000000000000 -23.3000000000000 -23.4000000000000 -23.5000000000000 -23.6000000000000 -23.6000000000000 -23.7000000000000 -23.7000000000000 -23.8000000000000 -23.9000000000000 -24 -24 -24.1000000000000 -24.1000000000000 -24.1000000000000 -24 -23.8000000000000 -23.6000000000000 -23.3000000000000 -22.9000000000000 -22.4000000000000 -21.9000000000000 -21.3000000000000 -20.8000000000000 -20.2000000000000 -19.6000000000000 -19.1000000000000 -18.6000000000000 -18.3000000000000 -18 -17.8000000000000 -17.8000000000000 -17.8000000000000 -17.9000000000000 -18.1000000000000 -18.4000000000000 -18.7000000000000 -19 -19.3000000000000 -19.7000000000000 -19.9000000000000 -20.2000000000000 -20.4000000000000 -20.5000000000000 -20.5000000000000 -20.5000000000000 -20.4000000000000 -20.3000000000000 -20.1000000000000 -19.9000000000000 -19.7000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.4000000000000 -19.5000000000000 -19.7000000000000 -20 -20.4000000000000 -20.8000000000000 -21.3000000000000 -21.8000000000000 -22.3000000000000 -22.8000000000000 -23.2000000000000 -23.6000000000000 -23.8000000000000 -24 -24.1000000000000 -24 -23.9000000000000 -23.6000000000000 -23.3000000000000 -23 -22.6000000000000 -22.2000000000000 -21.9000000000000 -21.6000000000000 -21.3000000000000 -21.1000000000000 -21 -21 -21.1000000000000 -21.2000000000000 -21.3000000000000 -21.5000000000000 -21.7000000000000 -21.9000000000000 -22.1000000000000 -22.3000000000000 -22.5000000000000 -22.6000000000000 -22.7000000000000 -22.8000000000000 -22.9000000000000 -22.9000000000000 -22.9000000000000 -23 -23 -23 -23 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23 -23 -22.9000000000000 -22.8000000000000 -22.7000000000000 -22.6000000000000 -22.6000000000000 -22.5000000000000 -22.4000000000000 -22.3000000000000 -22.2000000000000 -22.1000000000000 -22 -21.9000000000000 -21.8000000000000 -21.8000000000000 -21.7000000000000 -21.7000000000000 -21.7000000000000 -21.8000000000000 -21.9000000000000 -22 -22.1000000000000 -22.2000000000000 -22.4000000000000 -22.5000000000000 -22.5000000000000 -22.5000000000000 -22.4000000000000 -22.3000000000000 -22.1000000000000 -21.9000000000000 -21.6000000000000 -21.3000000000000 -20.9000000000000 -20.6000000000000 -20.2000000000000 -19.9000000000000 -19.7000000000000 -19.5000000000000 -19.3000000000000 -19.3000000000000 -19.2000000000000 -19.2000000000000 -19.3000000000000 -19.4000000000000 -19.4000000000000 -19.5000000000000 -19.6000000000000 -19.6000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.3000000000000 -19.1000000000000 -18.9000000000000 -18.6000000000000 -18.4000000000000 -18.1000000000000 -17.9000000000000 -17.7000000000000 -17.5000000000000 -17.4000000000000 -17.3000000000000 -17.2000000000000 -17.2000000000000 -17.3000000000000 -17.3000000000000 -17.4000000000000 -17.5000000000000 -17.6000000000000 -17.7000000000000 -17.7000000000000 -17.8000000000000 -17.8000000000000 -17.7000000000000 -17.7000000000000 -17.6000000000000 -17.4000000000000 -17.3000000000000 -17.1000000000000 -16.8000000000000 -16.6000000000000 -16.3000000000000 -16 -15.7000000000000 -15.4000000000000 -15 -14.7000000000000 -14.5000000000000 -14.2000000000000 -14 -13.8000000000000 -13.7000000000000 -13.7000000000000 -13.7000000000000 -13.9000000000000 -14.1000000000000 -14.4000000000000 -14.7000000000000 -15.2000000000000 -15.6000000000000 -16.1000000000000 -16.5000000000000 -16.9000000000000 -17.3000000000000 -17.6000000000000 -17.9000000000000 -18 -18.1000000000000 -18.2000000000000 -18.1000000000000 -18.1000000000000 -18 -17.9000000000000 -17.9000000000000 -17.8000000000000 -17.9000000000000 -17.9000000000000 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.8000000000000 -19.1000000000000 -19.4000000000000 -19.7000000000000 -20 -20.2000000000000 -20.3000000000000 -20.4000000000000 -20.4000000000000 -20.3000000000000 -20.2000000000000 -20 -19.7000000000000 -19.3000000000000 -18.9000000000000 -18.5000000000000 -18.1000000000000 -17.6000000000000 -17.2000000000000 -16.8000000000000 -16.5000000000000 -16.3000000000000 -16.1000000000000 -16 -16.1000000000000 -16.2000000000000 -16.4000000000000 -16.7000000000000 -17 -17.4000000000000 -17.9000000000000 -18.3000000000000 -18.7000000000000 -19.1000000000000 -19.4000000000000 -19.7000000000000 -19.8000000000000 -19.9000000000000 -19.9000000000000 -19.9000000000000 -19.8000000000000 -19.7000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.4000000000000 -19.5000000000000 -19.5000000000000 -19.7000000000000 -19.9000000000000 -20.1000000000000 -20.3000000000000 -20.5000000000000 -20.6000000000000 -20.8000000000000 -20.8000000000000 -20.7000000000000 -20.6000000000000 -20.4000000000000 -20.1000000000000 -19.8000000000000 -19.5000000000000 -19.1000000000000 -18.7000000000000 -18.4000000000000 -18.1000000000000 -17.9000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.8000000000000 -18 -18.3000000000000 -18.7000000000000 -19.1000000000000 -19.5000000000000 -20 -20.5000000000000 -21.1000000000000 -21.6000000000000 -22.1000000000000 -22.5000000000000 -22.9000000000000 -23.2000000000000 -23.4000000000000 -23.5000000000000 -23.4000000000000 -23.3000000000000 -22.9000000000000 -22.5000000000000 -21.9000000000000 -21.3000000000000 -20.5000000000000 -19.7000000000000 -18.9000000000000 -18.1000000000000 -17.3000000000000 -16.6000000000000 -15.9000000000000 -15.4000000000000 -15 -14.8000000000000 -14.6000000000000 -14.6000000000000 -14.7000000000000 -14.8000000000000 -14.9000000000000 -15.1000000000000 -15.3000000000000 -15.4000000000000 -15.5000000000000 -15.5000000000000 -15.5000000000000 -15.4000000000000 -15.2000000000000 -15.1000000000000 -14.8000000000000 -14.6000000000000 -14.4000000000000 -14.2000000000000 -14.1000000000000 -14 -14 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.5000000000000 -14.8000000000000 -15 -15.2000000000000 -15.5000000000000 -15.7000000000000 -15.8000000000000 -15.9000000000000 -16 -16 -16 -15.9000000000000 -15.8000000000000 -15.6000000000000 -15.5000000000000 -15.3000000000000 -15.1000000000000 -14.9000000000000 -14.7000000000000 -14.5000000000000 -14.3000000000000 -14.2000000000000 -14.1000000000000 -14 -13.9000000000000 -13.9000000000000 -13.9000000000000 -14 -14.1000000000000 -14.2000000000000 -14.4000000000000 -14.6000000000000 -14.7000000000000 -14.9000000000000 -15.1000000000000 -15.3000000000000 -15.4000000000000 -15.5000000000000 -15.6000000000000 -15.6000000000000 -15.7000000000000 -15.6000000000000 -15.6000000000000 -15.5000000000000 -15.5000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.4000000000000 -15.5000000000000 -15.6000000000000 -15.7000000000000 -15.9000000000000 -16 -16.2000000000000 -16.3000000000000 -16.4000000000000 -16.5000000000000 -16.6000000000000 -16.6000000000000 -16.6000000000000 -16.5000000000000 -16.5000000000000 -16.3000000000000 -16.2000000000000 -16.1000000000000 -15.9000000000000 -15.7000000000000 -15.6000000000000 -15.5000000000000 -15.4000000000000 -15.4000000000000 -15.3000000000000 -15.3000000000000 -15.4000000000000 -15.4000000000000 -15.5000000000000 -15.6000000000000 -15.8000000000000 -15.9000000000000 -16 -16.1000000000000 -16.2000000000000 -16.3000000000000 -16.3000000000000 -16.4000000000000 -16.3000000000000 -16.3000000000000 -16.2000000000000 -16.2000000000000 -16.1000000000000 -16 -15.9000000000000 -15.8000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.8000000000000 -15.9000000000000 -16 -16.1000000000000 -16.3000000000000 -16.4000000000000 -16.5000000000000 -16.6000000000000 -16.6000000000000 -16.6000000000000 -16.6000000000000 -16.5000000000000 -16.4000000000000 -16.3000000000000 -16.2000000000000 -16 -15.8000000000000 -15.6000000000000 -15.4000000000000 -15.2000000000000 -15.1000000000000 -14.9000000000000 -14.9000000000000 -14.8000000000000 -14.8000000000000 -14.8000000000000 -14.9000000000000 -15 -15.1000000000000 -15.2000000000000 -15.3000000000000 -15.4000000000000 -15.4000000000000 -15.5000000000000 -15.4000000000000 -15.4000000000000 -15.3000000000000 -15.1000000000000 -15 -14.8000000000000 -14.5000000000000 -14.3000000000000 -14 -13.8000000000000 -13.6000000000000 -13.4000000000000 -13.2000000000000 -13 -12.9000000000000 -12.8000000000000 -12.8000000000000 -12.8000000000000 -12.8000000000000 -12.9000000000000 -13 -13.2000000000000 -13.4000000000000 -13.5000000000000 -13.7000000000000 -13.9000000000000 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.4000000000000 -14.4000000000000 -14.3000000000000 -14.2000000000000 -14 -13.8000000000000 -13.6000000000000 -13.4000000000000 -13.1000000000000 -12.9000000000000 -12.8000000000000 -12.7000000000000 -12.7000000000000 -12.8000000000000 -13 -13.4000000000000 -13.8000000000000 -14.4000000000000 -15.1000000000000 -15.9000000000000 -16.7000000000000 -17.5000000000000 -18.4000000000000 -19.3000000000000 -20.1000000000000 -20.8000000000000 -21.5000000000000 -22 -22.5000000000000 -22.8000000000000 -23 -23.1000000000000 -23.1000000000000 -22.9000000000000 -22.7000000000000 -22.4000000000000 -22.1000000000000 -21.8000000000000 -21.4000000000000 -21 -20.7000000000000 -20.4000000000000 -20.1000000000000 -19.9000000000000 -19.6000000000000 -19.4000000000000 -19.2000000000000 -19 -18.8000000000000 -18.6000000000000 -18.3000000000000 -18 -17.7000000000000 -17.3000000000000 -16.9000000000000 -16.5000000000000 -16.1000000000000 -15.6000000000000 -15.2000000000000 -14.7000000000000 -14.3000000000000 -14 -13.7000000000000 -13.4000000000000 -13.2000000000000 -13.1000000000000 -13.1000000000000 -13.1000000000000 -13.2000000000000 -13.3000000000000 -13.5000000000000 -13.8000000000000 -14.1000000000000 -14.5000000000000 -14.9000000000000 -15.3000000000000 -15.7000000000000 -16.1000000000000 -16.5000000000000 -16.8000000000000 -17.1000000000000 -17.3000000000000 -17.4000000000000 -17.5000000000000 -17.4000000000000 -17.3000000000000 -17.1000000000000 -16.8000000000000 -16.5000000000000 -16.1000000000000 -15.7000000000000 -15.3000000000000 -14.9000000000000 -14.6000000000000 -14.4000000000000 -14.2000000000000 -14 -14 -14 -14.2000000000000 -14.3000000000000 -14.6000000000000 -14.8000000000000 -15.1000000000000 -15.4000000000000 -15.6000000000000 -15.7000000000000 -15.9000000000000 -15.9000000000000 -15.8000000000000 -15.7000000000000 -15.5000000000000 -15.3000000000000 -15 -14.6000000000000 -14.3000000000000 -14 -13.7000000000000 -13.5000000000000 -13.4000000000000 -13.4000000000000 -13.4000000000000 -13.6000000000000 -13.8000000000000 -14.2000000000000 -14.6000000000000 -15 -15.4000000000000 -15.8000000000000 -16.2000000000000 -16.5000000000000 -16.7000000000000 -16.8000000000000 -16.8000000000000 -16.7000000000000 -16.5000000000000 -16.3000000000000 -16 -15.8000000000000 -15.5000000000000 -15.3000000000000 -15.1000000000000 -15 -15.1000000000000 -15.3000000000000 -15.6000000000000 -16 -16.5000000000000 -17.1000000000000 -17.8000000000000 -18.5000000000000 -19.3000000000000 -20 -20.7000000000000 -21.2000000000000 -21.7000000000000 -22 -22.1000000000000 -22.1000000000000 -22 -21.7000000000000 -21.2000000000000 -20.7000000000000 -20.1000000000000 -19.4000000000000 -18.7000000000000 -18 -17.3000000000000 -16.7000000000000 -16.2000000000000 -15.8000000000000 -15.4000000000000 -15.2000000000000 -15 -15 -15 -15.2000000000000 -15.3000000000000 -15.6000000000000 -15.9000000000000 -16.2000000000000 -16.5000000000000 -16.9000000000000 -17.3000000000000 -17.7000000000000 -18.1000000000000 -18.5000000000000 -18.9000000000000 -19.3000000000000 -19.6000000000000 -19.9000000000000 -20.1000000000000 -20.3000000000000 -20.5000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.6000000000000 -20.7000000000000 -20.8000000000000 -21 -21.2000000000000 -21.5000000000000 -21.8000000000000 -22.1000000000000 -22.3000000000000 -22.6000000000000 -22.8000000000000 -22.9000000000000 -22.9000000000000 -22.9000000000000 -22.8000000000000 -22.6000000000000 -22.3000000000000 -22 -21.7000000000000 -21.4000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.3000000000000 -20.3000000000000 -20.4000000000000 -20.6000000000000 -20.8000000000000 -21 -21.3000000000000 -21.5000000000000 -21.7000000000000 -21.8000000000000 -21.9000000000000 -21.9000000000000 -21.9000000000000 -21.7000000000000 -21.5000000000000 -21.1000000000000 -20.8000000000000 -20.3000000000000 -19.9000000000000 -19.5000000000000 -19.1000000000000 -18.7000000000000 -18.4000000000000 -18.2000000000000 -18 -17.9000000000000 -18 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.8000000000000 -19.1000000000000 -19.4000000000000 -19.6000000000000 -19.9000000000000 -20.1000000000000 -20.3000000000000 -20.4000000000000 -20.5000000000000 -20.6000000000000 -20.7000000000000 -20.7000000000000 -20.8000000000000 -20.9000000000000 -21.1000000000000 -21.2000000000000 -21.4000000000000 -21.5000000000000 -21.7000000000000 -21.7000000000000 -21.8000000000000 -21.7000000000000 -21.6000000000000 -21.3000000000000 -20.9000000000000 -20.5000000000000 -19.9000000000000 -19.2000000000000 -18.5000000000000 -17.7000000000000 -17 -16.3000000000000 -15.7000000000000 -15.2000000000000 -14.8000000000000 -14.6000000000000 -14.5000000000000 -14.5000000000000 -14.7000000000000 -14.9000000000000 -15.2000000000000 -15.6000000000000 -16 -16.4000000000000 -16.7000000000000 -16.9000000000000 -17.1000000000000 -17.1000000000000 -17.1000000000000 -16.9000000000000 -16.7000000000000 -16.4000000000000 -16 -15.7000000000000 -15.3000000000000 -15 -14.8000000000000 -14.6000000000000 -14.5000000000000 -14.5000000000000 -14.5000000000000 -14.6000000000000 -14.8000000000000 -15 -15.1000000000000 -15.3000000000000 -15.3000000000000 -15.3000000000000 -15.3000000000000 -15.1000000000000 -14.9000000000000 -14.5000000000000 -14.1000000000000 -13.6000000000000 -13.1000000000000 -12.6000000000000 -12.2000000000000 -11.7000000000000 -11.3000000000000 -11 -10.8000000000000 -10.6000000000000 -10.6000000000000 -10.7000000000000 -10.8000000000000 -11 -11.3000000000000 -11.6000000000000 -12 -12.4000000000000 -12.8000000000000 -13.2000000000000 -13.6000000000000 -14 -14.3000000000000 -14.6000000000000 -14.9000000000000 -15.2000000000000 -15.4000000000000 -15.6000000000000 -15.8000000000000 -16 -16.2000000000000 -16.3000000000000 -16.4000000000000 -16.6000000000000 -16.7000000000000 -16.8000000000000 -17 -17.2000000000000 -17.3000000000000 -17.6000000000000 -17.8000000000000 -18.1000000000000 -18.3000000000000 -18.6000000000000 -18.9000000000000 -19.1000000000000 -19.4000000000000 -19.6000000000000 -19.7000000000000 -19.9000000000000 -19.9000000000000 -20 -20 -20 -19.9000000000000 -19.9000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.9000000000000 -20 -20.1000000000000 -20.3000000000000 -20.5000000000000 -20.7000000000000 -21 -21.3000000000000 -21.7000000000000 -22 -22.4000000000000 -22.8000000000000 -23.2000000000000 -23.6000000000000 -23.9000000000000 -24.3000000000000 -24.6000000000000 -24.9000000000000 -25.1000000000000 -25.3000000000000 -25.3000000000000 -25.4000000000000 -25.3000000000000 -25.2000000000000 -25 -24.7000000000000 -24.5000000000000 -24.2000000000000 -23.9000000000000 -23.6000000000000 -23.3000000000000 -23.1000000000000 -22.9000000000000 -22.7000000000000 -22.5000000000000 -22.4000000000000 -22.2000000000000 -22.1000000000000 -22 -21.8000000000000 -21.6000000000000 -21.5000000000000 -21.2000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.1000000000000 -20 -19.8000000000000 -19.6000000000000 -19.5000000000000 -19.4000000000000 -19.3000000000000 -19.3000000000000 -19.2000000000000 -19.2000000000000 -19.1000000000000 -19.1000000000000 -19 -19 -19 -19 -19 -19 -19 -19 -19.1000000000000 -19.2000000000000 -19.3000000000000 -19.4000000000000 -19.6000000000000 -19.7000000000000 -19.8000000000000 -20 -20.1000000000000 -20.2000000000000 -20.4000000000000 -20.5000000000000 -20.6000000000000 -20.7000000000000 -20.9000000000000 -21 -21.1000000000000 -21.2000000000000 -21.3000000000000 -21.4000000000000 -21.5000000000000 -21.5000000000000 -21.5000000000000 -21.5000000000000 -21.5000000000000 -21.4000000000000 -21.2000000000000 -21.1000000000000 -20.9000000000000 -20.7000000000000 -20.5000000000000 -20.3000000000000 -20.2000000000000 -20.1000000000000 -20 -20 -20.1000000000000 -20.2000000000000 -20.3000000000000 -20.5000000000000 -20.7000000000000 -20.9000000000000 -21 -21.2000000000000 -21.2000000000000 -21.3000000000000 -21.3000000000000 -21.2000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.1000000000000 -19.9000000000000 -19.8000000000000 -19.6000000000000 -19.6000000000000 -19.6000000000000 -19.6000000000000 -19.7000000000000 -19.9000000000000 -20.1000000000000 -20.4000000000000 -20.7000000000000 -21 -21.3000000000000 -21.5000000000000 -21.8000000000000 -22 -22.2000000000000 -22.3000000000000 -22.5000000000000 -22.5000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.5000000000000 -22.5000000000000 -22.5000000000000 -22.5000000000000 -22.4000000000000 -22.4000000000000 -22.4000000000000 -22.5000000000000 -22.5000000000000 -22.6000000000000 -22.7000000000000 -22.8000000000000 -23 -23.2000000000000 -23.4000000000000 -23.7000000000000 -24 -24.3000000000000 -24.5000000000000 -24.8000000000000 -25 -25.2000000000000 -25.3000000000000 -25.4000000000000 -25.4000000000000 -25.3000000000000 -25.2000000000000 -25 -24.7000000000000 -24.4000000000000 -24.1000000000000 -23.8000000000000 -23.6000000000000 -23.3000000000000 -23.2000000000000 -23 -23 -23.1000000000000 -23.2000000000000 -23.4000000000000 -23.6000000000000 -23.9000000000000 -24.2000000000000 -24.6000000000000 -24.8000000000000 -25.1000000000000 -25.3000000000000 -25.4000000000000 -25.4000000000000 -25.3000000000000 -25.1000000000000 -24.8000000000000 -24.4000000000000 -23.9000000000000 -23.4000000000000 -22.8000000000000 -22.1000000000000 -21.5000000000000 -20.8000000000000 -20.2000000000000 -19.6000000000000 -19.2000000000000 -18.8000000000000 -18.5000000000000 -18.4000000000000 -18.3000000000000 -18.4000000000000 -18.5000000000000 -18.8000000000000 -19 -19.3000000000000 -19.6000000000000 -19.8000000000000 -19.9000000000000 -20 -19.9000000000000 -19.7000000000000 -19.5000000000000 -19.1000000000000 -18.7000000000000 -18.2000000000000 -17.7000000000000 -17.1000000000000 -16.7000000000000 -16.2000000000000 -15.8000000000000 -15.6000000000000 -15.4000000000000 -15.3000000000000 -15.2000000000000 -15.3000000000000 -15.4000000000000 -15.5000000000000 -15.6000000000000 -15.7000000000000 -15.7000000000000 -15.7000000000000 -15.5000000000000 -15.4000000000000 -15.1000000000000 -14.8000000000000 -14.4000000000000 -14.1000000000000 -13.7000000000000 -13.3000000000000 -13 -12.8000000000000 -12.6000000000000 -12.5000000000000 -12.5000000000000 -12.6000000000000 -12.7000000000000 -12.9000000000000 -13.1000000000000 -13.3000000000000 -13.5000000000000 -13.7000000000000 -13.9000000000000 -14 -14 -14 -14 -13.9000000000000 -13.8000000000000 -13.6000000000000 -13.4000000000000 -13.2000000000000 -13 -12.7000000000000 -12.5000000000000 -12.2000000000000 -11.9000000000000 -11.6000000000000 -11.4000000000000 -11.1000000000000 -10.9000000000000 -10.7000000000000 -10.6000000000000 -10.5000000000000 -10.5000000000000 -10.5000000000000 -10.7000000000000 -10.9000000000000 -11.2000000000000 -11.6000000000000 -12 -12.5000000000000 -13 -13.5000000000000 -14 -14.4000000000000 -14.8000000000000 -15.2000000000000 -15.4000000000000 -15.6000000000000 -15.7000000000000 -15.7000000000000 -15.6000000000000 -15.5000000000000 -15.3000000000000 -15.1000000000000 -14.9000000000000 -14.7000000000000 -14.5000000000000 -14.3000000000000 -14.1000000000000 -14 -13.9000000000000 -13.9000000000000 -13.9000000000000 -14 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.4000000000000 -14.5000000000000 -14.6000000000000 -14.7000000000000 -14.7000000000000 -14.7000000000000 -14.7000000000000 -14.6000000000000 -14.5000000000000 -14.4000000000000 -14.3000000000000 -14.2000000000000 -14 -13.9000000000000 -13.7000000000000 -13.6000000000000 -13.5000000000000 -13.4000000000000 -13.3000000000000 -13.2000000000000 -13.2000000000000 -13.1000000000000 -13.1000000000000 -13 -13 -13 -12.9000000000000 -12.9000000000000 -12.9000000000000 -12.8000000000000 -12.8000000000000 -12.9000000000000 -12.9000000000000 -13 -13.1000000000000 -13.3000000000000 -13.5000000000000 -13.6000000000000 -13.8000000000000 -14 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.3000000000000 -14.3000000000000 -14.2000000000000 -14.2000000000000 -14.1000000000000 -14.1000000000000 -14.2000000000000 -14.3000000000000 -14.4000000000000 -14.7000000000000 -15 -15.5000000000000 -16 -16.6000000000000 -17.2000000000000 -17.8000000000000 -18.5000000000000 -19.1000000000000 -19.6000000000000 -20.1000000000000 -20.5000000000000 -20.8000000000000 -21 -21.2000000000000 -21.3000000000000 -21.4000000000000 -21.4000000000000 -21.4000000000000 -21.5000000000000 -21.6000000000000 -21.7000000000000 -22 -22.2000000000000 -22.5000000000000 -22.9000000000000 -23.3000000000000 -23.7000000000000 -24.1000000000000 -24.4000000000000 -24.7000000000000 -25 -25.2000000000000 -25.3000000000000 -25.4000000000000 -25.5000000000000 -25.5000000000000 -25.5000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.4000000000000 -25.3000000000000 -25.2000000000000 -25 -24.8000000000000 -24.4000000000000 -24 -23.5000000000000 -23 -22.4000000000000 -21.8000000000000 -21.2000000000000 -20.7000000000000 -20.1000000000000 -19.7000000000000 -19.3000000000000 -19 -18.8000000000000 -18.8000000000000 -18.8000000000000 -19 -19.2000000000000 -19.5000000000000 -19.8000000000000 -20.1000000000000 -20.5000000000000 -20.8000000000000 -21 -21.2000000000000 -21.2000000000000 -21.2000000000000 -21.1000000000000 -20.9000000000000 -20.7000000000000 -20.4000000000000 -20.1000000000000 -19.8000000000000 -19.5000000000000 -19.2000000000000 -19.1000000000000 -19 -18.9000000000000 -19 -19.1000000000000 -19.2000000000000 -19.4000000000000 -19.7000000000000 -19.9000000000000 -20.2000000000000 -20.4000000000000 -20.6000000000000 -20.8000000000000 -20.9000000000000 -21 -21.1000000000000 -21.2000000000000 -21.2000000000000 -21.3000000000000 -21.4000000000000 -21.5000000000000 -21.7000000000000 -21.9000000000000 -22.2000000000000 -22.5000000000000 -22.8000000000000 -23.2000000000000 -23.5000000000000 -23.9000000000000 -24.2000000000000 -24.5000000000000 -24.8000000000000 -25 -25.1000000000000 -25.1000000000000 -25.1000000000000 -24.9000000000000 -24.7000000000000 -24.4000000000000 -24 -23.5000000000000 -23.1000000000000 -22.6000000000000 -22.1000000000000 -21.6000000000000 -21.1000000000000 -20.6000000000000 -20.2000000000000 -19.8000000000000 -19.5000000000000 -19.2000000000000 -18.9000000000000 -18.7000000000000 -18.5000000000000 -18.3000000000000 -18.1000000000000 -18 -17.9000000000000 -17.8000000000000 -17.8000000000000 -17.8000000000000 -17.9000000000000 -18 -18.1000000000000 -18.3000000000000 -18.6000000000000 -18.8000000000000 -19.2000000000000 -19.6000000000000 -20 -20.4000000000000 -20.9000000000000 -21.4000000000000 -21.9000000000000 -22.3000000000000 -22.8000000000000 -23.3000000000000 -23.7000000000000 -24.1000000000000 -24.5000000000000 -24.7000000000000 -24.9000000000000 -25 -25 -24.8000000000000 -24.5000000000000 -24.1000000000000 -23.6000000000000 -23 -22.3000000000000 -21.6000000000000 -20.9000000000000 -20.2000000000000 -19.6000000000000 -19 -18.6000000000000 -18.3000000000000 -18.2000000000000 -18.2000000000000 -18.4000000000000 -18.7000000000000 -19.2000000000000 -19.7000000000000 -20.3000000000000 -21 -21.6000000000000 -22.1000000000000 -22.6000000000000 -22.9000000000000 -23.1000000000000 -23.2000000000000 -23.2000000000000 -23.1000000000000 -22.9000000000000 -22.6000000000000 -22.3000000000000 -21.9000000000000 -21.6000000000000 -21.4000000000000 -21.3000000000000 -21.2000000000000 -21.2000000000000 -21.3000000000000 -21.4000000000000 -21.7000000000000 -21.9000000000000 -22.1000000000000 -22.4000000000000 -22.5000000000000 -22.6000000000000 -22.7000000000000 -22.6000000000000 -22.5000000000000 -22.2000000000000 -22 -21.6000000000000 -21.3000000000000 -20.9000000000000 -20.5000000000000 -20.1000000000000 -19.8000000000000 -19.5000000000000 -19.2000000000000 -19 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.5000000000000 -18.4000000000000 -18.4000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.3000000000000 -18.4000000000000 -18.5000000000000 -18.6000000000000 -18.7000000000000 -18.9000000000000 -19 -19.2000000000000 -19.4000000000000 -19.5000000000000 -19.7000000000000 -19.8000000000000 -19.9000000000000 -20 -20.1000000000000 -20.1000000000000 -20.1000000000000 -20 -20 -19.9000000000000 -19.9000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.9000000000000 -20 -20.1000000000000 -20.2000000000000 -20.4000000000000 -20.5000000000000 -20.7000000000000 -20.9000000000000 -21.1000000000000 -21.2000000000000 -21.4000000000000 -21.6000000000000 -21.7000000000000 -21.9000000000000 -22.1000000000000 -22.2000000000000 -22.4000000000000 -22.5000000000000 -22.6000000000000 -22.7000000000000 -22.8000000000000 -22.9000000000000 -23 -23 -23 -22.9000000000000 -22.9000000000000 -22.8000000000000 -22.7000000000000 -22.6000000000000 -22.5000000000000 -22.4000000000000 -22.4000000000000 -22.3000000000000 -22.3000000000000 -22.2000000000000 -22.2000000000000 -22.2000000000000 -22.1000000000000 -22.1000000000000 -22.1000000000000 -22 -21.9000000000000 -21.8000000000000 -21.6000000000000 -21.4000000000000 -21.2000000000000 -21 -20.7000000000000 -20.5000000000000 -20.2000000000000 -19.9000000000000 -19.7000000000000 -19.4000000000000 -19.2000000000000 -19 -18.8000000000000 -18.7000000000000 -18.6000000000000 -18.6000000000000 -18.6000000000000 -18.7000000000000 -18.8000000000000 -18.9000000000000 -19.1000000000000 -19.3000000000000 -19.5000000000000 -19.7000000000000 -19.9000000000000 -20.1000000000000 -20.2000000000000 -20.3000000000000 -20.4000000000000 -20.4000000000000 -20.3000000000000 -20.2000000000000 -20 -19.7000000000000 -19.5000000000000 -19.2000000000000 -18.9000000000000 -18.6000000000000 -18.4000000000000 -18.1000000000000 -17.9000000000000 -17.8000000000000 -17.7000000000000 -17.6000000000000 -17.6000000000000 -17.6000000000000 -17.7000000000000 -17.7000000000000 -17.9000000000000 -18 -18.1000000000000 -18.3000000000000 -18.5000000000000 -18.7000000000000 -18.9000000000000 -19.1000000000000 -19.3000000000000 -19.5000000000000 -19.7000000000000 -19.9000000000000 -20 -20.1000000000000 -20.2000000000000 -20.2000000000000 -20.1000000000000 -20 -19.8000000000000 -19.5000000000000 -19.2000000000000 -18.9000000000000 -18.5000000000000 -18.2000000000000 -17.8000000000000 -17.5000000000000 -17.3000000000000 -17.1000000000000 -16.9000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.8000000000000 -16.7000000000000 -16.6000000000000 -16.5000000000000 -16.3000000000000 -16.2000000000000 -16 -15.9000000000000 -15.8000000000000 -15.7000000000000 -15.8000000000000 -15.8000000000000 -15.9000000000000 -16.1000000000000 -16.3000000000000 -16.6000000000000 -16.8000000000000 -17 -17.3000000000000 -17.4000000000000 -17.6000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.7000000000000 -17.8000000000000 -17.9000000000000 -18 -18.2000000000000 -18.4000000000000 -18.6000000000000 -18.8000000000000 -19.1000000000000 -19.3000000000000 -19.4000000000000 -19.6000000000000 -19.7000000000000 -19.8000000000000 -19.8000000000000 -19.8000000000000 -19.9000000000000 -19.9000000000000 -20 -20 -20.1000000000000 -20.2000000000000 -20.3000000000000 -20.4000000000000 -20.5000000000000 -20.7000000000000 -20.8000000000000 -20.9000000000000 -21 -21.1000000000000 -21.1000000000000 -21.2000000000000 -21.2000000000000 -21.2000000000000 -21.2000000000000 -21.3000000000000 -21.3000000000000 -21.3000000000000 -21.4000000000000 -21.5000000000000 -21.6000000000000 -21.7000000000000 -21.8000000000000 -21.9000000000000 -21.9000000000000 -22 -22.1000000000000 -22.1000000000000 -22.1000000000000 -22.1000000000000 -22 -21.9000000000000 -21.8000000000000 -21.6000000000000 -21.4000000000000 -21.2000000000000 -21 -20.8000000000000 -20.6000000000000 -20.4000000000000 -20.2000000000000 -20 -19.9000000000000 -19.9000000000000 -19.8000000000000 -19.9000000000000 -19.9000000000000 -20 -20.2000000000000 -20.4000000000000 -20.6000000000000 -20.9000000000000 -21.1000000000000 -21.4000000000000 -21.7000000000000 -21.9000000000000 -22.2000000000000 -22.4000000000000 -22.6000000000000 -22.8000000000000 -23 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23.1000000000000 -23 -22.9000000000000 -22.8000000000000 -22.7000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.6000000000000 -22.7000000000000 -22.8000000000000 -23 -23.2000000000000 -23.4000000000000 -23.7000000000000 -24 -24.3000000000000 -24.6000000000000 -24.9000000000000 -25.1000000000000 -25.3000000000000 -25.4000000000000 -25.5000000000000 -25.5000000000000 -25.5000000000000 -25.4000000000000 -25.3000000000000 -25.1000000000000 -24.9000000000000 -24.7000000000000 -24.5000000000000 -24.3000000000000 -24.1000000000000 -23.9000000000000 -23.8000000000000 -23.8000

Sam
Sam on 19 Feb 2013
I imagine there was a better way to do that but couldn't see one.
Youssef  Khmou
Youssef Khmou on 19 Feb 2013
Edited: Youssef Khmou on 20 Feb 2013
hi Sam it is ok, i tried to copy the vector, so to make sure the process of copying was correct verify these properties :
1.Length=3950.
2. Expectation=-17.7831.
3. Variance = 10.6303 .

Sign in to comment.

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!