Octave Fundamentals

SIGSLAB I

Octave Fundamentals

I. Objectives:

  1. To be able to familiarize with some of the commands and capabilities of Octave.

  2. To be able to learn how to do Matrix/Vector manipulation, complex algebra, and graphics in Octave.

II. Introduction

GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems, and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Working with the Octave environment is straightforward because most commands are entered as you write them mathematically.

from IPython.display import IFrame
IFrame('https://www.gnu.org/software/octave/', width='100%', height=540)
    <iframe
        width="100%"
        height="540"
        src="https://www.gnu.org/software/octave/"
        frameborder="0"
        allowfullscreen
    ></iframe>

2.1 Loading Octave in iPython Notebook

%load_ext oct2py.ipython

2.2 Running Octave in a cell

%%octave 

x=exp(-0.2696*.2)*sin(2*pi*0.2)/(0.01*sqrt(3)*log(18))
x =  18.000

The result is displayed above as x = 18.000.

If you want to know the value of an expression without the variable, you can simply type the expression by itself, e.x.

%%octave 

4/3
ans =  1.3333

If you wish to create a new variable but do not want to see the Octave response, type a semicolon at the end of the expression, e.x.

%%octave 

a = 7 + 5;

The semicolon is very useful when large vectors or matrices are defined or computed in intermediate step of a computation. You can check the value of variable at any time by entering the variable name.

%%octave 

a = 7 + 5;

a
a =  12

2.3 Output formatting

%%octave

printf("Area = %7.3f Square meters \n",pi*4.5^2)
Area =  63.617 Square meters

The %7.3f prints a floating point number at least 7 characters wide, with 3 digits after the decimal point . The sequence \n advances the output to the left margin on the next line

%%octave

a = pi
disp(sprintf('2 decimals: %0.2f', a))
disp(sprintf('6 decimals: %0.6f', a))
format long
a
format short
a
a =  3.1416
2 decimals: 3.14
6 decimals: 3.141593
a =  3.14159265358979
a =  3.1416

2.4 Character String

%%octave

c = "Good"
c = Good

A text variable can be augmented with more text variable, e.x.

%%octave

c = "Good"
cs = [ c, "luck"]
c = Good
cs = Goodluck

2.5 Elementary Matrix Operation

%%octave

A = [1 2; 3 4]
A =

        1        2
        3        4

The entire row or column of a matrix can be addressed by means of the symbol (:), e.x.

%%octave

A = [1 2; 3 4];
row2 = A(2,:)
row2 =

        3        4

Similarly, the statement A( : , 2) addresses all elements of the second column in A.

%%octave

A = [1 2; 3 4];
col2 = A(:,2)
col2 =

        2
        4

Typing A(:) will return all the elements of A in one column.

%%octave

A = [1 2; 3 4];
B = A(:)
size(B)
B =

        1
        3
        2
        4

ans =

        4        1

Matrices of the same dimension can be added or subtracted.

%%octave

A = [1 2; 3 4];
B = [4 3; 2 1];
C = A + B
C =

        5        5
        5        5

Two matrices, A and B, can be multiplied together to form the product AB if they are comformable.

%%octave

A = [1 2; 3 4];
B = [1 2 3; 4 5 6];
A * B
ans =

        9       12       15
       19       26       33

$A \backslash B$ is equivalent to $A^{-1} B$, and $A/B$ is equivalent to $A B^{-1}$

The inverse of a matrix can be obtained using the Octave function inv or pinv.

Octave has commands for generating special matrices. For example, you can create a diagonal matrix with the diag command using a vector containing the diagonal elements as the input argument, such as

%%octave

D = diag ([1 2])
D =

Diagonal Matrix

        1        0
        0        2
%%octave

A = [1 2; 3 4; 5 6]

v = [1 2 3]
v = [1; 2; 3]
v = [1:0.1:2]   
v = 1:6         

C = 2*ones(2,3)  
w = ones(1,3)    
w = zeros(1,3)
w = rand(1,3)   
w = randn(1,3)  
w = -6 + sqrt(10)*(randn(1,10000))   
hist(w)
A =

        1        2
        3        4
        5        6

v =

        1        2        3

v =

        1
        2
        3

v =

  1.00000  1.10000  1.20000  1.30000  1.40000  1.50000  1.60000  1.70000  1.80000  1.90000  2.00000

v =

   1   2   3   4   5   6

C =

        2        2        2
        2        2        2

w =

   1   1   1

w =

        0        0        0

w =

  0.76678  0.80289  0.22341

w =

  -0.41749  1.51084  0.84159

w =

  1.0e+01  *

 Columns 1 through 16:

  -0.12028  -0.26340  -0.75090  -1.17422  -1.07842  -1.24532  -0.60715  -1.24389  -0.34697  -0.69043  -0.37300  -0.67318  -0.77804  -0.18708  -0.50207  -1.05946

 Columns 17 through 32:

  -0.47696  -0.48694  -1.38874  -0.31065  -0.61338  -0.91791  -0.29503  -0.99515  -0.13924  -0.87035  -0.47799  -0.41886  -0.57474  -0.87951  -0.54936  -0.69468

 Columns 33 through 48:

  -0.36401  -0.44967  -0.38764  -0.26405  -0.54555  -0.64815  -0.53099  -0.44794  -0.91095  -0.07918  -0.47537  -0.70608  -1.01502  -0.61632  -0.48126  -0.99565

 Columns 49 through 64:

  -0.69299  -0.53593  -0.77566  -0.83003  -0.77934  -0.73334  -0.49830  -1.29919  -0.62888  -0.18664  -0.96117  -1.01258  -0.70574  -0.60797  -1.20411  -0.73722

 Columns 65 through 80:

  -0.77990  -0.73377  -0.49149  -0.41690  -0.86261  -0.97049  -0.62709  -1.17289  -0.00913  -0.67658  -0.53466  -0.41145  -0.65490  -0.40355  -0.19872  -1.26438

 Columns 81 through 96:

  -0.37891  -0.57243  -0.83215  -0.88888  -0.31429  -0.76718  -1.04094  -0.86859  -0.22820  -0.51168  -0.28447  -0.55662  -0.22425  -0.30117  -0.53008  -0.45878

 Columns 97 through 112:

  -0.45804  -0.53871  -0.50889  -0.46516  -0.92027  -1.17576  -0.84641  -0.44926  -0.53167  -0.51677  -0.05719  -0.13187  0.02139  -0.70097  -0.14213  -0.17168

 Columns 113 through 128:

  -1.01172  -0.43474  -0.96008  -0.37882  -0.61402  0.03327  -0.68613  -0.14847  -0.36056  -0.65231  -0.74918  -0.44111  -0.63726  -0.81095  -1.39155  -0.55181

 Columns 129 through 144:

  -0.77953  -0.81251  -0.55608  -0.57426  0.04687  -0.85939  -0.12342  -0.85865  -0.17465  -0.63883  0.04272  -0.34929  -0.65220  -0.94188  -0.52415  -0.58807

 Columns 145 through 160:

  -1.12203  -0.65049  -0.76981  -0.75713  -0.46582  -0.66494  -0.70284  -0.68590  -0.60000  -0.76433  -0.25824  -0.80784  -0.62182  -0.68197  -0.79625  -0.88171

 Columns 161 through 176:

  -0.72807  -0.37062  -1.32785  -0.46037  -0.70069  -0.74429  -0.78337  -0.66018  -1.36786  -0.33365  -1.23440  -0.78593  -0.88886  -0.60553  -1.57465  -0.59855

 Columns 177 through 192:

  -0.33817  -0.35247  -0.30689  -0.70213  -0.25276  -0.51873  -0.10682  -0.46544  -0.66623  0.10958  -0.52054  -0.40090  -0.89420  -0.27503  -0.70429  -0.37383

 Columns 193 through 208:

  -0.76234  -1.12855  -0.57315  -0.83619  -0.46907  -0.60518  -0.79282  -0.89614  -0.09617  -0.43456  -0.66758  -0.22972  -0.43773  -0.38852  -0.57073  -0.51618

 Columns 209 through 224:

  -0.65304  -0.48148  -0.58763  -0.53130  -0.79997  -0.67822  -0.96313  -1.06498  -0.30396  -0.74940  -0.86581  -0.46539  -0.27671  -0.43580  0.09580  -0.57353

 Columns 225 through 240:

  -0.74706  -0.33043  -0.34110  0.16390  -0.54534  -0.01766  -0.39411  -0.89616  0.34150  -0.99051  -0.30252  -0.64000  -0.85271  -0.68626  -0.54287  -0.64821

 Columns 241 through 256:

  -0.49068  -0.40109  -0.76412  0.12907  -0.97294  -0.10892  -0.59973  -0.24983  -0.59952  -0.26749  -0.47694  -0.69872  -1.11695  -0.81274  -0.72361  -0.70324

 Columns 257 through 272:

  -0.03074  -1.18650  -0.97519  -0.83967  -1.27420  -0.33348  -0.45607  -0.30412  -0.30386  -0.75459  0.23832  -1.02171  -0.66852  -0.78811  -0.65523  -0.33530

 Columns 273 through 288:

  -1.20725  -0.47627  -0.43456  -0.29591  -1.23767  -0.26160  -0.20134  -0.95454  -0.72074  -0.66591  -0.81723  -0.25628  -0.10794  -0.33495  -0.60319  -0.23113

 Columns 289 through 304:

  -0.47142  -0.60264  -0.45500  -0.90220  -0.68951  -0.69991  -0.49036  0.17757  0.13791  -0.37571  -1.06170  -0.40464  -0.49356  -0.67362  -0.16509  -0.17156

 Columns 305 through 320:

  -0.14361  -0.19918  -0.37575  -0.15956  -0.59431  -0.57548  -0.10393  -0.39269  -0.97374  -0.55268  -0.85944  -1.13449  -0.59483  -1.15316  -1.05783  -0.49156

 Columns 321 through 336:

  -0.95860  -0.62008  -0.70652  -0.78681  -1.00920  -0.52521  0.51373  -0.37386  -0.38148  -0.64106  -0.82096  -0.64219  -0.95817  -0.38410  -0.93572  -1.05935

 Columns 337 through 352:

  -0.53379  -0.78771  -0.73029  -0.91050  -0.60084  -0.58668  -0.08442  -0.61339  -0.44548  -0.59623  -0.29427  -0.69953  -0.68145  -0.64260  -0.58649  -0.71091

 Columns 353 through 368:

  -0.16970  -1.20511  -0.31088  -0.56329  -0.04828  -0.10948  -0.48314  -0.53323  -0.62331  -0.28459  -0.67491  -0.27495  -0.24218  -0.89339  -0.68586  -0.36282

 Columns 369 through 384:

  -0.96974  -0.59486  -1.21009  -0.55988  -0.88761  -0.82873  -0.47196  -0.31498  -1.33908  -0.45387  -0.65793  -0.46702  -0.60721  -1.31149  -0.45769  -0.19382

 Columns 385 through 400:

  -0.40936  -0.56460  -0.82026  -0.30336  -0.45569  -0.48970  -0.43994  -0.16213  -0.12685  -0.51060  -0.21140  -0.11010  -0.93012  -0.81952  -0.20339  -0.39395

 Columns 401 through 416:

  -0.49411  -0.50526  -0.35138  -0.82643  -0.46878  -1.07261  -0.22140  -0.55704  -0.43326  -0.57441  -0.63625  -1.00549  -0.45536  -0.75402  -0.47114  -1.22028

 Columns 417 through 432:

  0.41473  -0.51113  -0.74939  -0.45061  -0.08665  -0.77670  -0.77879  -0.98453  -1.03691  -0.40572  -0.75888  -0.46510  -0.53530  -0.57884  -0.41407  -0.30502

 Columns 433 through 448:

  -0.83564  -0.41633  -1.04927  -0.63014  -0.49519  -0.69842  -0.59071  -0.47832  -0.46773  -0.83281  -0.41579  -0.54636  -0.31797  -0.97861  -0.89459  -0.68473

 Columns 449 through 464:

  -0.05859  -0.55163  -0.65283  -0.77502  -0.55808  -0.73058  -0.21314  -0.36499  -0.01969  -0.52076  -0.08757  -0.52930  0.10743  -0.21631  -0.55742  -1.29738

 Columns 465 through 480:

  -1.16292  -0.46503  -0.56017  -0.70395  -0.29870  -0.58188  -0.93457  -0.39828  -0.63910  -1.03966  -0.72368  -0.93174  -0.34805  -0.60094  -0.23644  -1.48338

 Columns 481 through 496:

  -0.22197  -1.09964  -0.32232  -0.24561  -0.97711  -0.39766  -0.45657  -1.11368  -0.85841  -1.08616  -0.24594  -0.22325  -0.57922  -0.67720  -0.31306  -0.21191

 Columns 497 through 512:

  -1.26998  -0.39703  -0.83764  -0.90296  -1.07449  -0.65390  -0.64164  -0.47116  -0.78063  -0.35096  -0.51897  -0.94154  -0.23205  -0.46680  -0.67919  -0.70788

 Columns 513 through 528:

  -0.73566  -0.06009  -1.33884  -0.53781  -0.88321  -0.95405  -0.94035  -0.89294  -0.11828  -0.44947  -0.99431  -1.45330  -0.43749  -0.69227  -1.13257  -0.83552

 Columns 529 through 544:

  -0.58203  -0.75750  -0.45105  -1.12056  -0.85847  -0.98386  -0.74980  -0.59314  0.08180  -0.41012  -0.03287  -0.95418  -1.30780  -0.56513  -0.93294  -0.93173

 Columns 545 through 560:

  -0.64394  -0.16030  -1.21372  -0.60369  -0.45986  -0.16080  -0.24823  -0.56922  -0.53897  -0.30425  -0.35312  -0.41155  -0.65356  -0.94166  -0.90390  -0.40508

 Columns 561 through 576:

  -0.59711  -0.54486  -0.86021  -0.93563  -0.51773  -0.81169  -0.57097  -1.13000  -0.35939  -0.88781  -0.90236  -0.83461  -0.32460  -0.85530  -0.76215  -0.27012

 Columns 577 through 592:

  -0.52101  -0.45285  -0.51200  -0.71451  -0.71980  -0.23353  -1.08870  -0.55541  -0.97940  -0.40542  -0.94315  -1.18708  -0.79387  -0.30898  -0.16063  -0.58286

 Columns 593 through 608:

  -0.79988  -0.67844  -0.83650  -0.71295  -0.66591  -0.42221  -0.55751  -0.64295  0.02468  -0.26809  -0.56440  -0.41816  -0.62742  -0.80111  -0.84020  -0.14853

 Columns 609 through 624:

  -0.73312  -1.44471  -1.57222  -0.72265  -0.29035  -1.04497  -0.78732  -0.05237  -0.45327  -0.37210  -0.68153  -0.83507  -0.86509  -0.89790  -0.92129  -0.42418

 Columns 625 through 640:

  -0.27650  -0.92577  -0.27385  -0.80167  -0.67325  -0.39285  -0.91530  -0.57728  -0.62817  -1.30238  -0.44558  -0.86733  -0.04419  -0.32972  -0.55736  -0.39578

 Columns 641 through 656:

  -0.50824  -0.81498  -0.26352  -0.80862  -0.02288  -0.58694  -0.10993  -0.91698  -0.83473  -0.63391  -0.70433  -0.55183  -0.45259  -0.45854  -0.99729  -0.42554

 Columns 657 through 672:

  0.00658  -0.75785  -0.71428  -0.26622  -0.83403  -0.65783  -0.69906  -0.59340  -0.57757  -0.42299  -1.13976  -0.69017  -0.48807  -0.25915  -0.25121  -0.70516

 Columns 673 through 688:

  -0.25897  -0.22232  -0.36578  -0.63048  -0.81740  -0.84975  -0.77275  -0.66191  -0.06100  -0.56362  -0.83929  -0.80341  -1.45028  -0.13697  -0.54246  -1.12016

 Columns 689 through 704:

  -0.88829  -0.57042  -0.49097  -0.35987  -0.69151  -0.38759  -1.17066  -0.63984  -0.49972  -0.21129  -0.99842  -0.93333  -0.24572  0.33723  -0.44359  -0.73252

 Columns 705 through 720:

  -0.39439  -0.26356  -1.02999  -0.70794  -0.57541  -0.78644  -0.86437  -0.19386  -0.77315  -1.42102  -0.21953  -0.80903  -0.67230  -0.59755  -0.46699  -0.78273

 Columns 721 through 736:

  -0.36280  -1.15031  -0.32242  -0.59043  -0.61674  -1.24498  -0.62442  -0.75550  -0.52021  -0.22835  -0.61980  -0.62193  -1.26622  -0.52906  -0.85443  -0.77883

 Columns 737 through 752:

  -0.53509  -0.39054  -0.73798  -0.81070  -0.82435  -0.81199  -0.74744  -0.39668  -1.22530  -0.97944  -0.19403  -0.48784  -0.94731  -0.46966  -0.57379  -0.81694

 Columns 753 through 768:

  -1.05552  -1.03123  -0.43964  -0.59451  -0.94937  -0.46704  -0.30678  -1.02339  -0.70850  -0.43774  -0.94830  -0.26166  -0.43155  -0.21438  0.35884  -0.39381

 Columns 769 through 784:

  -0.72685  -0.92640  -1.05950  -0.70934  -0.16413  -1.03029  -0.79855  -0.55248  -0.45720  -0.55843  -0.46331  -0.09183  -1.02745  -0.86764  -0.06760  -0.44823

 Columns 785 through 800:

  -0.40975  -0.36770  -0.57672  -0.09809  -0.42561  -0.04713  -0.64523  -0.48932  -0.74522  -0.57932  -0.58403  -0.34235  -0.23847  -0.82660  -0.37061  -0.92493

 Columns 801 through 816:

  -0.15578  -0.27077  -0.55978  -0.63251  -0.88969  -0.28192  -0.35338  -0.93900  -1.26644  -0.44036  -0.45320  -0.39291  -0.26842  -0.61562  -0.94075  -0.29411

 Columns 817 through 832:

  -0.60118  -0.70229  -0.41487  -0.86023  -0.47663  -0.96020  -1.27685  -0.89170  -0.17382  -0.44293  -0.90038  -0.89809  -1.38317  -0.39955  -0.44678  -0.38462

 Columns 833 through 848:

  -0.81844  -0.73959  -0.54232  -0.39344  -0.91496  -0.66374  -1.19829  -0.79499  -1.10003  -0.81185  -0.49875  -0.59634  -0.04632  -0.25280  -1.02399  -0.24147

 Columns 849 through 864:

  -0.85247  -0.27404  0.00022  -0.43068  -0.84372  -0.53993  -0.14032  -0.51043  -0.88808  -0.92270  -0.59392  -0.47623  -0.72786  -0.67046  -0.23895  -0.30125

 Columns 865 through 880:

  -0.08489  -0.33909  -0.00968  -0.41216  -0.94798  -0.41249  -0.92842  -0.72716  -1.24860  -0.18947  0.16157  -0.29311  -0.38324  -0.67937  -0.46513  -0.44029

 Columns 881 through 896:

  -1.19427  -0.57702  -0.50900  -1.12522  -0.18599  -1.04383  -0.53438  -0.55415  -0.56596  -0.84194  -0.46076  -0.46525  -0.79588  -0.72102  -0.40807  -0.47915

 Columns 897 through 912:

  -0.78059  -0.53879  -0.53803  -0.32987  -0.51570  -0.71278  0.14341  -0.25284  -1.09546  -0.39662  -0.52133  -0.40931  -0.57021  -0.45948  -0.51877  -0.98467

 Columns 913 through 928:

  -0.75338  -0.53894  -1.29639  -0.81565  -0.49457  -0.84755  -0.27772  -1.00459  -0.55414  -0.85124  -0.65247  -1.00105  -0.67033  -0.80229  -0.74177  -0.41135

 Columns 929 through 944:

  -0.19203  -0.94624  -0.67429  -0.72431  -1.03740  -0.78595  -0.25743  -0.78197  -0.68086  -0.05431  -0.39257  -0.51872  -0.57442  -0.16397  -0.38785  -0.69019

 Columns 945 through 960:

  -0.81892  -0.62525  -0.51516  -0.41878  -1.29429  -0.76546  0.09571  -0.43488  -0.93708  -0.49190  -0.62222  -0.44874  -0.92106  -0.19858  -0.48128  -0.66467

 Columns 961 through 976:

  -0.76689  -0.20264  -0.34086  -0.52842  -0.55601  -0.04376  -0.76662  -0.92306  -0.84802  -0.85436  -0.54512  -0.29142  -1.26545  -0.60814  -0.21456  -0.62513

 Columns 977 through 992:

  -0.75749  0.18053  -1.04921  -0.55077  -0.87490  -0.50172  -0.07896  -0.56906  -0.61243  -0.41128  -1.55082  -0.97548  -0.04476  -0.71634  -1.13942  -0.14456

 Columns 993 through 1008:

  -0.78252  -0.83578  -0.85230  -0.99390  -1.01474  -0.75248  -0.64024  -0.35479  -0.63513  -0.49277  -0.95151  -0.32702  -0.83033  -0.52430  0.12750  -0.43928

 Columns 1009 through 1024:

  -0.90475  -0.59785  -0.79605  -0.64198  -1.10933  -0.75210  -0.92238  -0.70891  -0.59529  -0.31229  -1.04909  -1.00650  -0.79579  -0.69953  -0.24662  -0.52579

 Columns 1025 through 1040:

  -0.69391  -0.96235  -0.63856  -0.98698  -0.42523  -0.32405  -0.96200  -0.55518  -0.67129  -0.81784  -0.37865  -0.66483  -0.30110  -0.55082  -1.04031  -0.48791

 Columns 1041 through 1056:

  -0.82039  -0.46273  -0.78820  -0.10337  -0.68713  -0.53125  -0.92488  -0.40841  -0.80553  -0.66785  -0.71522  -0.41778  -0.86289  -0.58105  -0.37285  -0.30293

 Columns 1057 through 1072:

  -0.77631  -0.38259  0.01206  -0.57449  -0.27810  -0.40234  -0.92979  -0.81271  0.00294  -0.89528  -1.10469  -1.04477  -1.00575  -0.89501  -0.65030  -0.62217

 Columns 1073 through 1088:

  -0.48015  -0.11710  -0.51333  -0.31648  -0.43399  0.02460  -1.09759  -0.77306  -0.76566  -0.72013  -0.81771  -0.75230  -0.43263  -0.66205  -0.33456  -0.65355

 Columns 1089 through 1104:

  -0.75506  -0.27031  -0.49585  -0.29002  -0.44285  -0.82782  -1.02532  -1.49844  -0.30548  -0.43270  -0.13689  -0.72592  -1.19365  -0.82572  -0.57131  -0.73728

 Columns 1105 through 1120:

  -0.54041  -0.62892  -0.33707  -0.30826  -0.67093  -0.52890  -0.38270  -0.62609  -0.70971  -0.53523  -0.89471  -0.48060  -0.42393  -0.66832  -0.43511  -0.43318

 Columns 1121 through 1136:

  -0.31738  -1.14632  -0.38916  0.06355  -0.23617  -0.58666  -0.32341  -0.61841  -0.22253  -0.36145  -1.06382  -1.01548  -0.67007  -0.74665  -1.16060  -0.93516

 Columns 1137 through 1152:

  -0.63986  -0.44830  -0.77190  -1.06383  -0.28321  -1.21746  -0.34333  -0.38042  -0.29646  -0.43453  -0.33548  -0.52275  -0.73125  -0.09101  -0.54728  -0.30632

 Columns 1153 through 1168:

  -0.19926  -0.44910  -0.42004  -0.84213  -0.32544  -0.99842  -0.40898  -0.90611  -0.76184  -0.45729  -0.47086  -0.28687  -0.24564  -0.31472  -0.14928  -0.33657

 Columns 1169 through 1184:

  -0.67356  -1.02607  -0.72152  -0.81945  -0.59194  -0.95678  -0.66792  -0.37484  -0.22369  -0.73718  -0.70596  -0.26387  -0.55319  -0.98886  -0.87020  -0.16666

 Columns 1185 through 1200:

  -0.65372  -0.49294  -0.69708  -0.23705  -0.47013  -0.97448  -0.55023  -0.64225  -0.71685  -1.33975  -0.73259  -0.43030  0.14801  -0.37574  -0.90951  -0.70580

 Columns 1201 through 1216:

  -0.92670  -0.96798  -0.89065  -0.10136  -0.35707  -1.12988  -0.97874  -0.17202  -0.84763  -0.73618  -1.07485  -0.73116  -0.67756  -0.26989  -0.87819  -0.75322

 Columns 1217 through 1232:

  -0.47292  -0.81131  -0.87556  -0.66149  -0.31949  -0.34849  -0.78434  -0.68036  -1.16597  -0.13114  -1.01640  -0.29289  -0.48447  -1.03370  -0.64988  -0.95527

 Columns 1233 through 1248:

  -0.21383  -0.58016  -1.13008  -0.48959  -0.86394  -0.78274  -0.51267  -0.61053  -0.89386  -0.85825  -1.00887  -0.29288  -0.82729  -0.33035  -0.94451  -0.56384

 Columns 1249 through 1264:

  -0.02323  -0.93502  -0.77011  -0.59754  -0.34524  -0.40550  -0.78009  -0.43867  -0.60181  -0.42689  -0.04099  -1.21738  -0.49078  -0.44386  -0.88394  -0.86765

 Columns 1265 through 1280:

  -0.69912  -0.33114  -0.76193  -1.01236  -0.64206  -0.39039  -0.95264  -1.14225  0.13991  -0.38337  0.01925  -0.76028  -0.70248  -0.23605  -0.64054  -0.74125

 Columns 1281 through 1296:

  -0.84234  -0.34739  -0.70079  -0.47424  -0.18474  -0.32752  -0.65206  -0.63446  -0.68581  -0.88460  -0.25122  -0.65337  -0.61074  -0.72992  -0.72604  -0.82734

 Columns 1297 through 1312:

  -0.36441  -0.61494  -0.69397  -0.36078  -1.03841  -0.13581  -0.37280  -0.51529  -1.20954  -0.21179  -0.90471  -0.62988  -0.66206  -0.19352  -0.42391  -1.10566

 Columns 1313 through 1328:

  -1.04894  -0.84615  -0.77526  -0.80501  -0.51430  -0.13825  -0.96787  -0.89481  -0.79073  -0.65604  -0.09012  -1.17654  -0.46192  -0.64471  -0.62389  -0.71660

 Columns 1329 through 1344:

  -0.88057  -0.75553  -0.42139  -0.21645  -0.61683  -0.80866  -0.39131  -0.63851  -0.81569  -0.23746  -0.42409  -0.68716  -0.61794  -0.54391  -0.42234  -0.12190

 Columns 1345 through 1360:

  -0.67174  -0.72283  -0.52332  -0.95957  -0.96492  -1.01949  -1.43353  -0.50415  -0.72138  -0.43034  -0.49367  0.30831  -1.39113  -0.41964  -0.67306  -0.43592

 Columns 1361 through 1376:

  -0.90831  -0.75881  -0.46281  -0.31483  -0.32769  -0.18224  -1.11903  -0.05921  -0.48055  -0.65787  -0.52833  -0.80723  -0.79795  -0.49591  -0.67335  -0.80480

 Columns 1377 through 1392:

  -0.37339  -0.81491  -0.98769  -0.61460  -0.58490  -0.36698  -0.18218  -0.99805  -0.40655  -0.46493  0.00929  -0.54910  -0.42114  -0.43982  -0.64166  -0.52473

 Columns 1393 through 1408:

  -1.09887  -0.55942  -0.26633  -1.22558  -0.16084  -0.60252  -0.34573  -0.53262  -0.80215  -0.82174  -0.83885  -0.28732  -0.49302  -0.82306  0.03001  -0.00362

 Columns 1409 through 1424:

  -0.65625  -0.28317  -0.71182  -0.90916  -1.12791  -0.09461  -0.60225  -1.12764  -0.29502  -0.88280  -1.00410  -0.85753  -0.41110  -0.25741  -0.94387  -0.50316

 Columns 1425 through 1440:

  -0.80046  -0.75570  -0.31207  -1.03481  -0.75993  -0.11808  -0.02413  0.15477  0.00749  -0.76445  -0.30972  0.02426  -0.45162  -0.55748  -0.57049  -0.28361

 Columns 1441 through 1456:

  -0.93025  -0.69215  -1.16258  -0.68427  -0.69343  -0.29293  -1.04788  -1.07885  -0.50694  -0.96379  -1.09439  -0.23398  -0.17444  -0.68477  -0.72105  -0.73972

 Columns 1457 through 1472:

  -0.66834  -0.99313  -0.49649  -0.47800  -0.31887  -0.35666  -0.11396  -0.79976  -0.41864  -0.31892  -0.62269  -0.18041  -0.34259  -0.56376  -1.02778  -0.51746

 Columns 1473 through 1488:

  -1.09682  -0.45381  -0.30606  -0.83959  -0.41326  -0.19090  -0.79780  -1.44882  -0.79884  -0.74507  -0.95537  -0.42690  -0.89959  -0.33692  -0.34382  -0.75513

 Columns 1489 through 1504:

  -0.55372  -0.87461  -0.47284  -0.94967  -0.86392  -1.21077  -0.24289  -0.18567  -0.91636  -0.82383  -0.74384  -0.68616  -0.81332  -0.22831  -0.47201  -0.29512

 Columns 1505 through 1520:

  -0.52944  -0.05268  -0.20064  -0.34138  -0.26601  -0.65580  -1.45430  -0.31455  -0.20304  -0.51071  -0.50517  -0.59060  -0.37413  -0.81243  -0.83137  -0.87999

 Columns 1521 through 1536:

  -0.66986  -0.29281  -0.70889  -0.27630  -1.00634  -0.80113  -0.64473  -0.90201  -0.66224  -0.58140  -0.61159  -0.02922  -0.85388  -0.66179  -0.23830  -0.45080

 Columns 1537 through 1552:

  -0.51957  -0.64578  -0.64430  -0.46838  -0.17520  -0.43596  -0.57595  -0.28992  -0.59510  -0.74282  -0.45596  -0.67913  -0.29744  -0.50577  -0.55865  -0.21410

 Columns 1553 through 1568:

  -0.55101  -0.62227  -0.65513  -0.40497  -0.59388  -0.12491  -0.47788  0.20143  -0.21298  0.05106  -0.66864  -0.46886  -0.54975  -1.23912  -0.81590  -1.02381

 Columns 1569 through 1584:

  -0.43265  -0.84218  -0.36844  -0.85389  -0.61119  -0.19783  -0.32119  -1.03358  -0.45335  -0.33628  -1.48584  -0.02431  -0.80399  -1.26986  -0.20946  -0.20229

 Columns 1585 through 1600:

  -1.27806  -0.73827  -0.79200  -0.64355  -0.89968  -0.65708  -0.73608  -0.20739  -0.27818  -0.15002  -1.08761  -0.83825  -0.65645  -0.68991  -0.41783  -0.06276

 Columns 1601 through 1616:

  -0.60515  -0.45635  -0.34965  -0.42236  0.17899  -0.60406  -0.74654  -0.71881  -1.23723  -0.48598  -0.43825  -0.98875  -0.15844  -0.59888  -0.89664  -0.67257

 Columns 1617 through 1632:

  -0.90650  -0.75192  -0.84514  -0.82351  -0.81467  -0.33633  -0.28219  -0.63166  -0.33909  -0.80622  -0.63854  -0.95045  -0.52248  -0.38342  -0.64297  -0.09848

 Columns 1633 through 1648:

  -0.81035  -0.56849  -0.20196  -0.46138  -1.06127  0.04379  -0.49149  -1.19826  -0.88722  -0.54901  -1.06456  -0.26589  -0.33944  -0.66763  -0.27375  -1.09206

 Columns 1649 through 1664:

  -0.55075  -0.67040  -0.33113  -0.74860  -0.43989  -0.56318  -0.79119  -1.04111  -0.63980  -1.13083  -0.70819  -1.35174  -1.15390  -1.13175  -0.95809  -0.38140

 Columns 1665 through 1680:

  -0.74258  -0.79679  -0.87209  -0.84186  -0.99386  -0.82978  -0.35747  -0.52168  -0.16745  -0.49654  -0.80744  -0.35834  -0.71295  -0.29094  -0.73006  -0.87665

 Columns 1681 through 1696:

  -0.47024  -0.90091  -0.57969  -0.54511  -0.62380  -0.24280  -0.26655  -0.60729  -0.23835  -0.40252  -0.53563  -0.94809  -0.14454  -0.86701  -0.69834  -0.38083

 Columns 1697 through 1712:

  -0.46825  -0.58319  0.52063  -0.56861  -0.71137  -0.40564  -0.50344  -0.38927  -0.91620  -0.23840  -0.61902  -0.22428  -1.15270  -0.40151  -0.23893  -0.15031

 Columns 1713 through 1728:

  -0.55352  -0.91270  -0.81270  -1.13478  -0.55026  -0.42314  -0.27970  -0.79945  -0.36727  -0.53272  -0.32550  -0.19461  -0.90227  -1.13080  -1.69213  -0.70899

 Columns 1729 through 1744:

  -0.73865  -0.77822  -0.78453  -0.58204  -0.82709  -0.89288  -0.53827  -0.40252  -0.52881  -0.29472  -0.26759  -0.77274  -0.32042  -0.55953  -0.77007  -0.81293

 Columns 1745 through 1760:

  -0.33580  -0.57591  -0.82073  -0.25139  -1.50646  -0.34275  -0.78768  -0.65237  -0.74254  -0.01358  -0.30749  -0.74331  -0.58916  -0.83435  -0.71325  -0.47147

 Columns 1761 through 1776:

  -0.59835  -0.41063  -0.75022  -1.06334  -0.34654  -0.63458  -1.12395  -0.31971  -0.45936  -0.48965  -0.36589  -0.64124  -0.59828  -0.19390  -0.40573  -0.63297

 Columns 1777 through 1792:

  -0.80963  -0.46814  -0.54174  -0.57017  0.15544  -0.37298  -1.01373  -0.08661  -0.11068  -0.80957  -0.30873  -0.70051  -0.43696  -0.68456  -0.98268  -0.97415

 Columns 1793 through 1808:

  -0.33227  -0.70979  -0.36613  -0.69799  -0.85594  -0.50686  -0.40388  -1.28642  0.09809  -0.66025  0.03826  -0.73816  -0.56765  -0.65062  -0.38745  -1.51830

 Columns 1809 through 1824:

  -0.35589  -0.67140  -0.75817  -0.30435  -0.38474  -0.92176  -0.82113  -0.56564  -0.48499  -0.76147  -0.52457  -0.37243  -1.01923  -0.56269  -0.65019  -0.71475

 Columns 1825 through 1840:

  -0.50345  -0.17068  -0.52589  -1.31737  -1.09813  -0.57604  -0.52157  -0.67415  -0.35394  -0.66677  -0.24063  -0.75088  -0.77004  -0.38780  -0.39025  -1.21049

 Columns 1841 through 1856:

  -0.88460  -0.18631  0.12464  -0.20572  -0.06309  -0.94973  -0.82797  -0.41086  -0.50602  -0.07968  -0.78729  -0.98016  -0.80907  -1.16543  -1.05149  -0.64857

 Columns 1857 through 1872:

  -0.47032  -0.34949  -0.48762  -0.81573  -0.57176  -0.88295  -0.40505  -0.90810  -0.52642  -0.48659  -1.16617  -0.67029  -0.74867  -1.21201  -0.92247  -0.81991

 Columns 1873 through 1888:

  -0.19446  -0.67511  -0.22701  -0.66202  -0.11127  -0.55717  -0.71928  -0.49788  -0.91418  -0.31562  -0.36113  -0.54698  -0.65604  -0.83967  -0.60596  -0.55187

 Columns 1889 through 1904:

  -0.31124  -0.92019  -0.77455  -0.69752  -1.22999  -0.38987  -0.60659  -0.99649  -1.23031  -0.32280  -0.72284  -0.67213  -0.50080  -0.43944  -0.42694  -0.85225

 Columns 1905 through 1920:

  -0.60128  -0.60619  -0.57583  -1.18118  -0.29439  -0.79566  -0.36181  -0.72269  -1.40383  -1.09195  -0.80739  -1.33225  -0.22097  -1.11355  -0.19431  -0.82380

 Columns 1921 through 1936:

  -1.00998  -0.88209  -0.54647  -0.30117  -0.56750  -0.43916  -0.63066  -0.68690  -0.57776  -0.77247  -0.51978  -0.15029  0.03267  -0.40260  -0.66222  -0.36624

 Columns 1937 through 1952:

  -0.53299  -0.67867  -0.25252  -0.68064  -0.59658  -1.02977  -0.91776  -0.98139  -0.96441  -0.93351  -0.00898  -0.54822  -1.11229  -0.65106  -0.74053  -0.22959

 Columns 1953 through 1968:

  -0.71578  -0.76360  -0.61404  -0.90826  -0.42932  -0.82143  -1.27963  -0.72790  -0.86983  -0.96708  -0.69091  -0.66449  -0.34991  -0.67479  -0.53688  -0.43217

 Columns 1969 through 1984:

  -0.86875  -0.49730  -0.49921  -0.38964  -0.75372  -0.46747  -0.67911  -0.51100  -0.62156  -0.59979  -0.75564  -0.70288  -0.52759  -0.83819  -0.93459  -0.72648

 Columns 1985 through 2000:

  -0.66807  -0.48604  -0.83538  -0.03223  -0.32292  -0.80874  -0.62630  -1.18896  -1.25522  -1.20305  -0.65186  -0.21468  -0.62829  -0.71892  -0.27129  -0.62721

 Columns 2001 through 2016:

  -0.22888  -0.48237  -0.61684  -0.01443  -0.86116  -1.07801  -0.25153  -0.42971  -0.78175  -0.84652  -0.56991  -0.46610  -0.91868  -0.26658  -0.55367  -0.39024

 Columns 2017 through 2032:

  -0.60263  -0.85687  -0.96222  -0.60923  -0.35447  -0.54383  -1.24089  -0.78291  -0.73120  -0.91240  -0.54736  -0.96996  -0.56559  -0.58183  -0.63080  -0.82662

 Columns 2033 through 2048:

  -0.61346  -1.08924  -0.32878  -0.51168  -0.11781  -0.39143  -0.87809  -0.67954  -0.21750  -0.23826  -0.23398  -0.92064  -0.33846  -0.41785  -0.43309  -0.42587

 Columns 2049 through 2064:

  -0.41116  -0.25102  -0.61319  -0.23307  -0.31789  -0.35290  -0.44819  -0.68999  -0.50479  -0.65114  -0.53141  -0.86057  -0.25648  -0.45779  -0.71620  0.22086

 Columns 2065 through 2080:

  -0.96082  -0.07925  -0.68717  -0.65773  -1.22506  -0.33320  -0.90400  -0.85221  -0.35726  -0.47644  -0.67299  -0.72905  -0.31249  -0.99802  -1.00502  -0.39192

 Columns 2081 through 2096:

  -0.12807  -0.46634  -0.44752  -0.98609  -0.59837  -0.76187  -0.68510  -0.34400  -1.10189  -0.66158  -0.82507  -0.65380  0.08212  -0.94881  -1.20210  -0.53981

 Columns 2097 through 2112:

  -0.57684  -0.35296  -1.23176  -0.54110  -0.76357  -0.89343  -0.32789  -0.92388  -0.36147  -0.84118  -0.66469  -0.68689  -0.27111  -0.26404  -0.78937  0.02473

 Columns 2113 through 2128:

  -0.76061  -0.70585  -0.55894  0.13689  -0.15312  -0.52480  -0.68687  -0.18292  -0.78050  -0.83850  -0.98240  -0.37859  -0.07784  -0.52948  -0.46458  -0.31176

 Columns 2129 through 2144:

  -0.76272  -0.52318  -0.57859  -0.68972  -0.71483  -0.07678  -0.52517  -0.16835  -0.53104  -0.72028  -0.75005  -1.10632  -0.95540  -0.32929  -0.38906  -0.40054

 Columns 2145 through 2160:

  -0.99024  -0.89249  -0.68264  -0.40961  -0.61745  -0.74440  -0.62683  -1.02342  -1.08729  -0.48033  -1.05951  -0.90187  -0.66886  -0.39096  -0.40571  -0.21345

 Columns 2161 through 2176:

  -0.62262  -0.18128  -0.68873  -0.73357  -0.44770  -0.47456  -0.76832  -0.56174  -0.47715  -0.89612  -0.80573  -0.73699  0.18809  -0.65747  -0.94152  -1.33551

 Columns 2177 through 2192:

  0.14855  -0.33039  -0.20812  -0.79485  -0.47176  -0.74057  -0.85159  -0.88637  -0.57374  -0.63903  -0.80903  -0.65449  -0.28825  -1.05016  -0.79539  -0.25387

 Columns 2193 through 2208:

  -0.55970  -0.88793  -1.05354  -0.31678  -0.04446  -1.03564  -0.50301  -0.37819  -1.14955  -0.39664  -1.06350  -0.32677  -0.60783  -0.24124  0.01831  -0.85176

 Columns 2209 through 2224:

  -0.65819  -0.64231  -0.53520  -0.33878  -0.45233  0.22649  -0.44612  -0.51116  -0.84668  -1.08406  -0.35405  -0.35562  -0.23896  -0.09039  -1.18337  -0.86559

 Columns 2225 through 2240:

  -0.62728  -0.74004  -1.00757  -0.34642  -0.97673  -0.19138  -0.99840  -0.25313  -0.39176  -0.57281  -0.75468  -0.60297  -0.66397  -0.85576  -0.32347  -0.96930

 Columns 2241 through 2256:

  -0.39348  -0.89788  -0.88100  -0.79785  -0.42867  -0.63922  -0.24854  -1.02370  -0.87704  -0.61504  -0.65581  -0.92345  -0.56333  -0.59381  -0.50113  -0.24312

 Columns 2257 through 2272:

  -0.83476  -1.02577  -0.59013  -1.24281  -0.34694  -0.15738  -0.81307  -0.61059  -0.50632  -0.07290  -0.57618  -0.72278  -0.50404  -0.41672  -0.79295  -0.17953

 Columns 2273 through 2288:

  -0.49978  -0.78262  -0.70705  -0.42871  -0.34349  -0.48385  -0.33425  -0.26142  -0.45222  -0.72312  -0.29960  -0.55957  -0.27427  -1.51324  -1.06806  -0.69314

 Columns 2289 through 2304:

  -0.94476  -0.13122  -0.37026  -0.50656  -0.68147  -0.73119  -0.26715  -0.75158  0.00749  -0.95947  -0.97097  -0.11866  -0.86153  -0.47817  -0.56074  -0.21409

 Columns 2305 through 2320:

  -0.57316  -0.49279  -0.59870  -0.82745  -1.35186  -0.78555  -0.60428  -1.11952  -0.53525  -0.32337  -0.55199  -0.67194  -1.04585  -0.87367  -0.91837  -0.56672

 Columns 2321 through 2336:

  -1.07603  -0.50700  -0.33660  -0.95735  -0.74202  -0.04250  -0.45944  -0.66690  -0.50961  -0.95943  -0.66719  -0.80677  -0.24321  -0.53097  -0.45687  -0.41645

 Columns 2337 through 2352:

  -0.11774  -0.45098  -0.42710  -0.43983  -0.62983  -0.90440  -1.30477  -0.79512  -0.69860  -0.28484  -0.42406  -0.70655  -0.84934  0.03053  -0.59071  -0.56672

 Columns 2353 through 2368:

  -0.23493  -0.77870  -1.09095  -0.20798  -0.71846  -0.57054  -0.75378  -0.48696  -0.32966  -0.66003  -0.95262  -0.63010  -0.54600  -0.56303  -0.51839  -0.19492

 Columns 2369 through 2384:

  -0.98606  -0.66747  -0.51202  -0.34458  -0.50872  -0.67348  -1.03234  -0.38157  -0.45309  -0.56247  -1.03281  -0.72439  0.05599  -0.42496  -0.12041  -0.39574

 Columns 2385 through 2400:

  -0.42761  -0.59367  -0.00561  -0.98842  -0.12882  -0.24590  -0.75659  -0.81008  -0.95660  -0.89246  0.39937  -0.59064  -0.55267  -0.47589  -0.85298  -0.63434

 Columns 2401 through 2416:

  -1.18658  -0.56587  -0.37878  -0.69286  -1.00038  -0.88195  -0.39827  -0.59755  -0.92425  -1.18360  -0.76651  -0.53882  -0.80594  -0.75066  -0.19821  -0.44155

 Columns 2417 through 2432:

  -0.40104  -0.84166  -0.52592  -1.14882  -1.03057  -0.24411  -0.70909  -0.74605  -0.29903  -0.24398  -0.59678  -0.62146  -0.62276  -0.51124  -0.70547  -0.72972

 Columns 2433 through 2448:

  -0.57297  -0.73806  -1.57047  -0.76945  -0.70920  -0.72899  -0.34492  -0.21780  -0.17946  -0.97209  -0.84135  -1.37090  -0.83836  -0.64901  -0.84975  -0.39834

 Columns 2449 through 2464:

  -0.01868  -0.40726  -0.37540  -0.69309  -0.80270  -0.73823  -0.60072  -0.58220  0.09561  -0.23398  -0.77826  -0.67264  -0.02878  -0.45179  -0.48831  -0.90082

 Columns 2465 through 2480:

  -0.73043  -0.14655  -0.40370  -0.96068  -0.83920  -0.30414  -0.80646  -0.44156  -0.04224  -0.60861  0.04554  -0.88518  -0.57020  -0.41120  -0.65669  -0.41621

 Columns 2481 through 2496:

  -0.13514  -0.14756  -0.89026  -0.96509  -0.46552  -0.53740  -0.88127  -0.69242  -0.55852  -0.83086  -0.84883  -1.11171  -0.77984  -0.43337  -0.28696  -0.90662

 Columns 2497 through 2512:

  -0.89219  -1.04009  -0.75901  -1.41154  -0.53852  -0.86712  -0.54989  -0.40772  -0.68429  -0.51625  -0.63822  -0.42797  -0.76240  -0.63259  -0.37280  -0.93152

 Columns 2513 through 2528:

  -0.89079  -0.12493  -0.99185  -0.79335  -0.60201  -0.55984  -0.67376  -0.16792  -0.62868  -0.69372  -0.14021  -0.69472  -0.61980  -0.50276  -0.51820  -0.90480

 Columns 2529 through 2544:

  -0.77066  -0.55738  -0.00251  0.15877  -0.58588  -0.91661  -0.45910  -0.35113  -0.31357  -0.69143  -0.12565  -0.61857  -0.69826  -0.69282  -0.86835  -0.31029

 Columns 2545 through 2560:

  -0.37875  -0.19053  -0.61022  -0.64697  -0.07866  -0.42580  -0.81020  -0.80284  -0.17223  -1.12024  -0.46366  -0.38457  0.16246  -0.66399  -1.03497  -0.30085

 Columns 2561 through 2576:

  -0.67042  -0.52396  -1.15687  -0.79702  -0.39144  -0.24470  -0.64323  -0.67316  -0.55772  -0.90805  -0.22131  -0.61605  -0.45938  -0.48390  -0.38247  -0.95416

 Columns 2577 through 2592:

  -0.32990  -0.48204  -0.70653  -0.55171  -0.80089  -1.20755  -0.44475  -0.56656  -0.52136  -0.04821  -0.11178  -0.72038  -0.45285  -0.52892  -0.29052  -0.91951

 Columns 2593 through 2608:

  -0.62086  0.07814  -1.28331  -0.48203  -0.54223  -0.59491  -0.52703  -0.75379  -0.50435  -0.48534  0.05379  -0.04741  -1.11313  -0.94456  -0.62674  -0.02884

 Columns 2609 through 2624:

  -0.66937  -0.81793  -1.07637  -1.22441  -0.69573  -0.57143  -0.15369  -0.78395  -0.77578  -0.22139  -0.55876  -0.27096  -0.63459  -0.69326  -0.70160  -0.17039

 Columns 2625 through 2640:

  -0.61799  -0.27539  -1.05434  -0.01556  -0.25238  -0.70864  -0.44013  -1.08524  -0.29588  0.09922  -0.66872  -0.88869  -0.27470  -1.09483  -0.39307  -0.40175

 Columns 2641 through 2656:

  -0.28936  -0.52913  -0.51399  -0.80255  -0.52448  -0.34384  -0.96814  -1.27870  -0.79865  -0.81318  -0.75410  -0.71087  -0.62098  -1.25251  -0.49881  -0.88799

 Columns 2657 through 2672:

  -0.41630  -0.77922  -0.35993  -0.66341  -0.40999  -0.33203  -0.28149  -0.50826  -0.92450  -0.18808  -0.78363  -0.50573  -0.36942  0.08229  -0.48905  -1.21196

 Columns 2673 through 2688:

  -0.32611  -0.28645  -0.99374  -0.52600  -0.84058  -0.95586  -0.51839  -0.18636  -1.19022  -0.22090  -0.12354  -0.16818  -0.25821  -0.52775  -0.40631  -1.07714

 Columns 2689 through 2704:

  -1.28240  -0.42507  -0.18789  -0.96603  -0.23324  -0.71859  -0.62612  -0.36874  -0.24214  -0.68367  -0.68093  -0.43736  -0.54569  -0.71056  -0.94694  -0.45736

 Columns 2705 through 2720:

  -1.17132  -0.97678  -0.66630  -0.39431  -0.62611  -0.56842  -0.48847  -0.33730  -0.31649  -1.08603  -0.71978  -0.99052  -0.92645  -0.77191  -1.19244  -0.38942

 Columns 2721 through 2736:

  -0.68525  -1.18769  -1.05936  -0.27090  -0.75444  -0.70726  -0.30911  -0.02405  -0.06700  -1.12572  -1.28726  -0.64592  -0.30866  -0.63035  -0.64195  -0.36390

 Columns 2737 through 2752:

  -0.20845  -0.79878  -0.47978  -0.45235  -0.35295  -0.59123  -0.32163  -0.86746  -0.37960  -0.67520  -0.88726  -0.67440  -0.24007  -0.93697  -0.96084  -0.56981

 Columns 2753 through 2768:

  -0.40713  -0.30749  -0.96109  -1.00506  -0.53461  -1.21505  -0.72163  -1.01462  -0.35169  -0.51814  -0.66246  -0.93696  -0.80560  -0.52690  -0.49076  -0.40962

 Columns 2769 through 2784:

  -1.01910  -0.85070  -0.88988  -0.76078  -0.59007  -0.26637  -0.68171  -0.39466  -1.31796  -1.40293  -0.07106  -0.55784  -0.23143  -0.78006  -0.42494  0.30303

 Columns 2785 through 2800:

  -0.46150  -0.44000  -0.75678  -0.77720  -1.40818  -0.61509  -0.56723  -0.88020  -0.63342  -0.20158  -0.40705  -0.37998  -0.76078  -1.15767  -0.72824  -0.76851

 Columns 2801 through 2816:

  -1.12786  0.13428  -0.46722  -0.44757  -0.96768  -0.48489  -0.57721  -0.51604  -0.23063  -1.30720  -0.73605  -0.84943  -1.04581  -0.20879  -1.44358  -0.76263

 Columns 2817 through 2832:

  -0.87824  -0.42961  -1.03600  -1.06129  -1.00697  -0.89208  -0.69528  -0.07802  -0.44969  -0.89988  -0.31629  0.00866  -1.10412  -0.71959  -0.43647  -0.78697

 Columns 2833 through 2848:

  -1.28823  -0.16327  -0.67751  -0.57749  -0.41297  -0.84030  -0.84357  -0.14019  -0.68748  -0.22627  -0.51873  -0.36315  -0.44261  -0.91931  -0.58168  -0.38602

 Columns 2849 through 2864:

  -0.45291  -0.82037  -0.50804  -0.92408  -0.50594  -0.52724  -0.86573  -0.96454  -0.61090  -0.72091  -0.20134  -0.52232  -0.54185  -0.16718  -1.16251  -0.21419

 Columns 2865 through 2880:

  -0.48217  0.13387  -0.95551  -0.60998  -0.07801  -0.88456  -0.47466  -1.07829  -0.60047  -0.55268  -0.24290  -1.05254  -0.86595  -0.40967  -0.96146  -0.33678

 Columns 2881 through 2896:

  -0.66932  -0.88580  -0.48004  -1.12334  -0.68491  0.05845  -0.92187  -0.61710  -0.47772  -0.75588  -0.45700  -0.66702  -0.43538  -0.75335  -0.47785  -0.58342

 Columns 2897 through 2912:

  -0.21946  -0.25266  -0.02108  -0.54432  -0.48393  -0.33769  -1.07382  0.00865  -0.22675  -0.80970  -0.53105  -0.27481  -0.93800  -0.30506  -0.72587  -0.58070

 Columns 2913 through 2928:

  -0.53724  -0.94154  -0.60432  -0.96696  -0.33197  -0.06000  -0.75106  0.06818  -0.40156  -0.66726  -0.88790  -0.84778  -0.56218  -1.20781  -1.11289  -0.72886

 Columns 2929 through 2944:

  -0.47797  -0.78981  -0.17310  -0.49136  -0.82344  -0.95764  -0.50107  -0.75470  -0.50283  -0.93789  -0.39056  -0.45861  -0.47081  -0.38943  -1.08480  -0.65464

 Columns 2945 through 2960:

  -0.90532  -0.55220  -0.34816  -0.82059  -0.72582  -0.49606  0.16743  -1.05574  -0.43597  -0.25141  -0.55801  -0.55493  -0.91216  -0.59822  -0.46012  -0.72267

 Columns 2961 through 2976:

  -1.25519  -0.42928  -0.21986  -0.36147  -0.26583  -0.60923  -0.99748  -0.73745  -0.48281  -1.19624  -0.96014  -0.58731  -0.64468  -0.94805  -0.65668  -0.11536

 Columns 2977 through 2992:

  -1.02284  -0.39752  -0.41926  -0.59664  -0.00631  -0.72067  -0.77272  -0.63005  -0.51633  -0.23658  -0.70912  -0.36701  -0.62473  -0.82814  -0.50923  -0.76421

 Columns 2993 through 3008:

  -0.96111  -0.75721  -0.82202  -0.78891  -0.13344  -0.70069  -0.47451  -0.12002  -0.98416  -0.98223  -1.14443  -0.83659  -0.51649  -0.54836  -0.74213  -0.35254

 Columns 3009 through 3024:

  -1.10246  -0.91934  -0.48232  -0.41773  -0.97871  -0.44460  -0.54251  -0.79175  -0.60432  -0.73537  -0.68893  -0.31096  -0.42050  -0.54280  -0.88061  -0.21676

 Columns 3025 through 3040:

  -0.58122  -0.84882  -0.53629  -0.11741  -0.60369  -0.26753  -0.72434  -0.52664  -0.80109  -1.18868  -0.31387  -0.36291  -0.56686  -0.29249  -0.73746  -0.33750

 Columns 3041 through 3056:

  -0.20648  0.17278  -0.17441  -0.86370  -0.66170  -0.76707  -0.56561  -0.80965  0.01762  -1.03227  -0.70202  -0.41479  -0.70366  -0.26324  -0.79654  -0.45161

 Columns 3057 through 3072:

  -0.81944  -0.71175  -0.70463  -0.94567  -0.54637  -0.30584  -0.67089  -0.55941  -1.19243  -0.82739  -0.43990  -0.73499  -0.83385  -0.86134  -0.71013  -0.81364

 Columns 3073 through 3088:

  -0.34535  -0.48878  -0.30375  -0.90641  -0.41516  -0.62848  -0.22161  -0.52739  -0.64514  -0.88843  -0.98679  -1.08645  -0.66848  -0.90082  -0.00363  -0.83030

 Columns 3089 through 3104:

  -0.52667  -0.24777  -0.94116  -0.38183  -0.57608  -0.56006  -1.69323  -0.94014  -0.71690  -0.81382  -0.28779  -0.91198  -0.84496  -0.48955  -0.69388  -0.78259

 Columns 3105 through 3120:

  -0.80114  -0.51675  -0.42535  -0.05046  -0.60332  -0.10451  -1.02964  -1.01752  -0.62426  -0.54966  -0.63951  -0.34781  -0.81571  -0.85372  -0.41937  -0.38518

 Columns 3121 through 3136:

  0.06867  -0.85807  -0.40173  -0.65268  -0.49964  -0.81048  -0.54868  -1.19798  -0.92209  -0.07428  -0.08518  -0.70570  -0.53642  -0.99543  -1.12009  -0.80126

 Columns 3137 through 3152:

  -0.74700  0.19808  -0.34508  -0.54720  -0.24015  -0.49005  -0.89761  -0.61304  -0.70120  -0.53813  -0.69608  -0.72563  -0.60467  -0.70701  -0.72034  -0.10891

 Columns 3153 through 3168:

  -0.33555  -0.60352  -0.58640  -0.80995  -0.20605  0.21677  -0.53073  -0.39488  -0.68819  -0.44340  -0.45596  -0.59041  -0.16997  -1.04053  -1.29892  -0.93105

 Columns 3169 through 3184:

  -0.92525  -0.69630  -0.22217  -0.67094  0.00601  -0.60250  -0.42609  0.05861  -0.17420  -0.56324  -0.78115  -0.63318  -0.62051  -0.97468  -0.56028  -0.28593

 Columns 3185 through 3200:

  -0.59363  -0.46258  -0.19583  -0.74311  -0.81758  -0.75624  -0.74638  -0.31299  -0.57851  -0.75184  -0.61098  -0.56932  -0.84742  -0.75752  -0.52641  -0.45870

 Columns 3201 through 3216:

  -0.50598  -1.31412  0.22662  -0.44262  -0.57368  -0.60116  -0.31582  -0.60619  -0.60827  -1.00221  -0.23148  -0.28546  -0.63644  -1.01611  -0.62506  0.08370

 Columns 3217 through 3232:

  -1.03211  -0.60401  -0.29448  -0.72886  -0.82733  -0.57050  -0.07438  -0.66865  -0.52336  -0.66522  -0.77724  -0.27638  -1.03274  -0.41586  -0.30754  -0.21788

 Columns 3233 through 3248:

  -0.92671  -0.85880  -0.67843  -0.86523  -0.33564  -0.78621  -0.16966  -0.43078  0.02150  -0.52524  0.03962  -1.14587  -0.65102  -0.87357  -0.42728  -0.22618

 Columns 3249 through 3264:

  -0.62310  -1.09310  -0.48737  -1.09145  -0.51603  -0.02204  -1.05964  -0.64674  -1.24425  -0.86425  -0.46419  -0.31302  -1.04265  -0.78214  -0.29975  -0.29397

 Columns 3265 through 3280:

  -0.86699  -1.00846  -0.53633  -0.58617  -1.08215  -0.71538  -0.79132  -1.03802  -0.66338  -1.03815  -0.32615  -1.12922  -0.49165  -0.30624  -1.25771  -0.81493

 Columns 3281 through 3296:

  -0.30162  -0.42085  -0.26298  0.14898  -0.30410  -0.65229  -0.59999  -0.81234  0.00472  -0.83379  -0.74225  -0.37081  -0.24721  -0.88531  -0.63264  -1.15832

 Columns 3297 through 3312:

  -0.50151  -0.76863  -0.23970  -0.71657  -1.52621  -0.53489  -0.65580  -0.62061  -0.50695  -0.30269  -0.37190  -0.58001  -0.80079  -0.42225  -0.08461  -0.95769

 Columns 3313 through 3328:

  -0.23476  -0.51070  0.11232  -0.89389  -0.35643  -0.84708  -0.60855  -0.44638  -0.42174  -0.71801  -0.59083  -0.26582  -0.96916  -0.27430  -0.41932  -0.27579

 Columns 3329 through 3344:

  -0.73007  -0.66115  -0.88063  -0.82008  -0.54865  -0.56846  -0.80177  -1.07236  -1.02530  -0.45819  -0.16186  -0.31342  -0.79115  -0.45648  -0.31981  -0.48367

 Columns 3345 through 3360:

  -0.78488  -0.39816  -0.69313  -0.64013  -1.14225  -0.47117  -0.09958  -0.09424  -0.68335  -0.82476  -0.54498  -0.75443  -0.58264  -0.40610  -0.84301  -0.35391

 Columns 3361 through 3376:

  -0.80451  -0.72502  -0.71243  -0.39596  -0.76285  -0.86077  -0.53324  -0.50401  -0.45219  -0.54316  -0.58818  -0.48134  -0.75242  -0.98112  -0.94904  -0.55576

 Columns 3377 through 3392:

  -0.24525  -0.59917  -0.76546  -0.75498  0.15033  -0.58873  -0.41273  -0.55189  -0.38422  -0.25844  -0.45996  0.06932  0.38596  -0.35932  -0.31941  -0.59094

 Columns 3393 through 3408:

  -0.84397  -0.10903  -0.44744  -0.86175  -0.35635  -0.61180  -0.15015  -0.70005  -0.84098  -1.32956  -0.70685  -1.04110  -1.05059  -0.84020  -0.35124  -1.05434

 Columns 3409 through 3424:

  -0.95527  -0.30036  -0.61465  -0.88668  -0.48970  -0.73460  -0.87703  -0.49631  -0.73566  -1.16631  -0.49920  -0.00979  -0.09579  -0.88958  -0.69664  -1.02002

 Columns 3425 through 3440:

  -0.40913  -0.51804  -0.48704  -0.82667  -0.92014  -0.52382  -0.79413  -0.64476  -0.27620  0.00476  -0.80745  -0.74166  -0.76773  -0.56816  -0.33231  -0.99651

 Columns 3441 through 3456:

  -0.63008  -1.08339  -0.14200  -0.85395  -0.20446  -0.40625  -0.33803  -0.94166  -0.76958  -1.23849  -0.80176  -0.65588  -1.10677  -0.48075  -0.14949  -0.79232

 Columns 3457 through 3472:

  -0.84636  -0.38698  -0.08072  -0.76685  -0.64199  -0.51642  -0.20501  -0.84815  -0.88615  -0.98624  0.21744  -0.87003  -1.00742  -0.93506  -1.00971  -0.44527

 Columns 3473 through 3488:

  -0.72904  -0.92937  -0.76680  -0.52782  -0.82228  -0.30640  -0.38141  -0.85874  0.25777  -0.49067  -0.72518  -0.66384  -0.77176  -0.46109  -0.85914  -0.57270

 Columns 3489 through 3504:

  -0.88931  -0.52388  -0.71634  -1.00477  -0.59787  -0.63363  -0.76381  -0.83611  -0.56660  -0.91178  -0.50500  -0.75585  -0.55913  -0.32211  -0.54660  -1.11939

 Columns 3505 through 3520:

  -0.61724  -0.26912  -1.06980  -0.94066  -0.64724  -0.52420  0.02299  -0.66390  -1.04249  -0.82374  -0.45201  -0.03250  -0.58022  -0.75041  -0.84093  -0.32872

 Columns 3521 through 3536:

  -0.81516  -1.09393  -0.88448  -0.96934  -0.68194  -0.30325  -0.16156  -0.83815  -0.37142  -0.45744  -0.56538  -0.82704  -0.62392  -0.38046  -0.62479  -1.01483

 Columns 3537 through 3552:

  -0.67423  -0.57305  -1.05685  -0.43112  -0.28555  -0.60181  -0.80668  -0.59758  -0.95021  -0.66359  -0.51354  -0.68536  -0.56756  -0.42047  -0.87820  -0.82845

 Columns 3553 through 3568:

  -1.15970  -0.26022  -0.38936  -0.42253  -0.54144  -0.74827  -0.85434  -0.39281  -0.42539  0.14622  -1.02450  -0.84611  -0.63533  -0.73346  -0.45029  -0.50983

 Columns 3569 through 3584:

  -0.91456  -0.33786  -0.63830  -0.47176  -0.73470  -0.37459  -0.30273  -0.14831  -0.58421  -0.32825  -0.87617  -0.98458  -0.35081  -0.78222  -0.53230  -0.50821

 Columns 3585 through 3600:

  -0.47346  -1.13391  0.11133  -0.90297  -0.63269  -0.60546  -0.78867  -0.23339  -0.89075  -0.73874  -0.46797  -0.61099  -0.87053  -0.96099  -0.53440  -0.82624

 Columns 3601 through 3616:

  -0.80686  -0.77251  -0.28358  -0.79082  -0.51032  -0.32712  -0.40918  -0.66257  -1.03228  -0.65641  -0.65885  -0.60811  -0.43600  -1.32208  -0.76617  -0.73797

 Columns 3617 through 3632:

  -0.51384  -0.91128  -1.16729  -1.20000  -0.13255  -0.25751  -1.35392  -0.83490  -0.18753  -0.51532  -1.07175  -0.87580  -0.48397  -0.86261  -0.68625  -0.51766

 Columns 3633 through 3648:

  -1.65320  -0.95847  -1.03901  -0.66761  -0.50819  -0.67595  -0.77898  -0.57048  -0.50117  -0.98708  -1.05059  0.03045  -0.17873  -0.22954  -0.52574  -0.97095

 Columns 3649 through 3664:

  -0.27191  -0.80202  -1.03543  -0.68435  -0.22526  -0.37764  -0.62235  -0.69717  -1.15479  -0.67933  -0.53901  -0.69699  -0.54295  -0.74805  -0.76358  -0.55445

 Columns 3665 through 3680:

  -0.53413  -0.65940  -0.39264  -0.74366  -0.45718  -0.65929  -0.90213  -0.99070  -0.91116  -0.69602  -0.50242  -1.17016  -1.05520  -0.45948  -0.16515  -0.26505

 Columns 3681 through 3696:

  -1.08342  -0.43248  -0.72778  -0.44537  -0.31348  -0.54910  -1.07606  -0.99636  -0.54307  -0.51276  -0.19410  -0.78884  -0.42254  -0.25765  -0.24874  -0.76000

 Columns 3697 through 3712:

  -0.47938  -0.80431  -0.83026  -0.22208  -1.07880  -1.16886  -0.77567  -0.50366  -0.33061  -0.08474  -1.15286  -0.81957  -0.74523  -0.90327  -0.50180  -0.27246

 Columns 3713 through 3728:

  -0.73010  -0.32727  -0.80622  -1.17650  -0.98130  -0.52157  -0.26318  -0.46886  -0.68566  -0.27756  -0.43143  -0.45238  -0.40547  -0.83236  -0.73631  -1.19130

 Columns 3729 through 3744:

  -0.96916  0.20271  -0.46287  -0.81171  -0.44493  -0.49038  -0.50196  -0.62294  -0.73004  -0.68774  -0.91682  -0.49600  -0.48555  -0.72340  -0.43916  -0.38594

 Columns 3745 through 3760:

  -0.10016  -0.13568  -0.91395  -0.60455  -0.73357  -0.47995  -0.15739  -0.21848  -0.62334  -0.86585  -0.30490  -0.65582  -0.30641  -0.81032  -0.74561  -0.09106

 Columns 3761 through 3776:

  -0.34494  -1.01071  -0.65538  -0.54312  -0.59523  -0.43978  -0.56804  -1.50431  -0.71254  -0.53700  -0.22479  -1.23420  -0.03085  -0.35231  -0.37022  -0.35283

 Columns 3777 through 3792:

  -0.73884  -0.71886  -0.40655  -0.74057  -0.67583  -0.81532  -0.69528  -1.20015  -0.21943  0.02389  -0.89205  -0.50631  -0.05237  -0.56411  -0.91391  -0.65490

 Columns 3793 through 3808:

  -0.52879  0.09453  -0.33090  -0.15362  -0.46749  -0.76756  -0.46068  -0.52910  -0.13950  -1.08536  -0.25950  -0.19523  -0.83164  -0.58260  -0.86859  -0.64854

 Columns 3809 through 3824:

  -0.58269  -0.58753  0.30101  -0.63610  -0.35858  -0.51981  -0.02019  -0.23529  -0.45153  -0.49649  -0.35822  -0.66439  -0.33657  -0.64369  -0.51586  -0.80417

 Columns 3825 through 3840:

  -0.13558  -0.32365  -0.50167  -0.07898  -0.75356  -0.41428  -1.11768  -0.35121  -0.35977  -0.90302  -0.45971  -0.19078  -0.45434  -0.95849  0.09319  -0.64228

 Columns 3841 through 3856:

  -0.68423  0.02735  -0.40416  -0.06200  -0.29314  -0.54501  -0.34504  -0.51028  -0.57643  -0.27755  -0.60753  -0.61027  -0.43741  -0.48589  -0.34413  -0.60325

 Columns 3857 through 3872:

  -0.77412  -0.31069  -0.47851  -0.74099  -0.34792  -0.47484  -0.76544  -0.31664  -0.88412  -1.13373  -1.05063  -0.93304  -0.66253  -1.11090  -0.48289  0.00415

 Columns 3873 through 3888:

  -0.92349  -0.75543  -0.62977  -0.39950  -0.99719  -0.74796  -0.27620  -0.71448  -1.51322  -1.06510  -0.26318  -0.21546  -0.80203  -0.90192  -0.19433  -0.78824

 Columns 3889 through 3904:

  -0.24218  -0.57032  -0.20128  -0.69484  -0.40414  -0.70990  -0.76897  -0.64909  -0.64425  -0.30511  -0.95414  -0.82732  -0.67479  -0.74263  -0.76595  -0.54315

 Columns 3905 through 3920:

  -0.36164  -0.06852  -0.64609  -0.67050  -0.55758  -0.81433  -0.62643  -0.93252  -0.94616  -0.77875  -0.84531  -1.25812  -0.54578  -0.97177  -0.91930  -0.72985

 Columns 3921 through 3936:

  -0.27330  -0.72397  -0.80865  -0.46315  -0.42344  -0.78955  0.05047  -0.86406  -0.24422  -0.37380  -0.50663  -0.12778  -0.78462  -0.67162  -0.77655  -0.50722

 Columns 3937 through 3952:

  -0.63933  -0.30293  -0.64868  -0.88292  -0.86485  -0.38835  -0.80728  -0.49927  -0.70240  -0.46150  -0.89146  0.05086  -0.74797  -0.65879  -0.52701  -0.64995

 Columns 3953 through 3968:

  -0.28584  0.44932  -0.29038  -0.99101  -1.15014  -0.20368  -1.03916  0.06363  -0.96878  -0.98753  -0.54347  -0.08051  -0.48126  -0.23608  -0.70289  -0.61979

 Columns 3969 through 3984:

  -0.57300  -0.97627  -1.11314  -0.95785  -0.61598  -1.08872  -0.22271  -0.49084  -0.62272  -0.62085  -0.67537  -0.07092  -0.41470  -0.84768  -0.18632  -0.68132

 Columns 3985 through 4000:

  -0.04783  -0.55283  -0.30063  -1.16365  -0.65335  -0.57233  -0.46087  -0.38192  -0.95583  -0.15014  -1.06951  -0.77740  -1.22601  -0.34587  -1.14276  -0.85705

 Columns 4001 through 4016:

  -1.13790  -0.30177  -1.24144  -0.59988  -0.44239  -0.87987  -0.74466  -0.86262  -0.98153  -0.71372  -0.76882  -0.85270  -0.59091  -0.67223  -0.09152  -0.27597

 Columns 4017 through 4032:

  -0.23695  -0.71870  -0.12916  -0.07273  -0.74771  -0.43274  -0.74438  -1.07878  -0.29648  -0.33042  -0.64798  -1.19293  -0.59450  -0.78705  -0.66661  0.05417

 Columns 4033 through 4048:

  -0.26297  0.02973  -0.43022  -0.12076  -0.57661  -0.55957  -0.30830  -0.42307  -0.45526  -0.73434  -0.44512  -0.47363  0.04821  -0.32214  -0.57961  -0.26914

 Columns 4049 through 4064:

  -0.69617  -0.27807  -1.30379  -0.67389  -1.14817  -1.14377  -0.22829  -1.00812  -0.60872  -0.05377  -0.81544  -0.91971  -0.39035  -0.71180  -0.04979  -0.64350

 Columns 4065 through 4080:

  -0.03928  -0.70611  -0.59450  -0.43563  -0.68074  -0.36074  -0.32939  -0.44783  -0.44668  -0.43124  0.02523  -0.78511  -0.55302  -1.04041  -0.67864  -0.86646

 Columns 4081 through 4096:

  -0.37531  -0.39834  -0.47772  -0.66980  -0.69317  -0.57375  -0.85360  -0.51307  -0.61848  -0.37477  -0.88532  -0.36101  -0.62216  -0.71274  -0.73784  -0.78590

 Columns 4097 through 4112:

  -1.25458  -0.77863  -0.88431  -0.68022  -0.26042  -1.16377  -0.77892  -0.88168  0.03237  -0.38526  -0.64397  -1.07850  -0.99376  -0.69265  -0.56358  -1.24321

 Columns 4113 through 4128:

  -0.95937  -0.89330  -0.94575  -0.50520  -0.92851  -0.41053  -0.62504  -0.43548  -0.80157  -0.48062  -0.52385  -0.70910  -1.34821  -0.88798  -1.14416  -0.58262

 Columns 4129 through 4144:

  -0.46600  -0.49682  -0.64435  -0.58335  -0.42477  -0.77628  -0.22077  -0.71764  -0.92718  -0.94514  -0.74303  -0.73513  -0.27620  -0.47015  -1.01405  -0.58205

 Columns 4145 through 4160:

  -1.03397  -0.10406  -0.88037  -0.72051  -0.56456  -1.04762  -1.09502  -0.54254  -0.75574  -1.05141  -0.13840  -0.35268  -0.48151  -0.84500  -0.68695  -0.71643

 Columns 4161 through 4176:

  -1.44514  -1.15673  -0.19425  -0.97403  -0.49900  -0.44780  -0.79030  -0.78303  -1.19156  -0.80899  -0.86734  -0.63384  -0.20204  -0.35889  -0.21851  -0.30587

 Columns 4177 through 4192:

  -0.69213  -0.31832  -0.85980  -0.27456  -0.55005  -0.36803  -0.55036  -0.56627  -0.93647  -0.54866  -0.86952  -0.12612  -0.65558  -0.57992  -0.63636  -0.37735

 Columns 4193 through 4208:

  -0.42323  -0.92856  -0.57660  -0.14585  -0.43769  -0.60320  -0.52822  -0.82384  -0.82768  0.00745  -0.54708  -0.58776  -0.78488  -1.34124  -0.12936  -0.62937

 Columns 4209 through 4224:

  -0.16210  -0.54963  -0.39164  -0.36685  -0.60057  -1.05744  -0.50624  -1.10935  -0.84856  -0.76482  -0.25704  -0.26580  -0.99023  -0.58584  -0.23396  -0.08536

 Columns 4225 through 4240:

  -0.84495  -0.47063  -0.32312  -0.64640  -0.06718  -0.65905  -0.80328  -0.89606  -0.07681  -0.93697  -0.51272  -0.56184  -0.22618  -0.80537  -0.49461  -0.32256

 Columns 4241 through 4256:

  -0.30708  -0.56163  -0.71927  -0.51622  -0.71048  -0.46335  -0.75476  -0.50034  -0.62465  -0.60173  -1.03546  -1.04367  -0.81005  -0.51225  -1.01305  -0.86600

 Columns 4257 through 4272:

  -0.66250  -0.11459  -0.28594  -1.00672  -1.25931  -0.46814  -0.61769  -0.72428  -0.44320  -0.86182  -0.66996  0.06708  -0.63396  -0.73101  -0.66742  -0.44298

 Columns 4273 through 4288:

  -0.66789  -0.58357  -0.09045  -0.64218  -1.13791  -0.87269  -0.84234  -0.16065  -0.32864  -0.13382  -0.60609  -0.25101  -0.76397  -1.27952  0.07676  -0.37408

 Columns 4289 through 4304:

  -0.56961  -1.08742  -1.00632  -0.90452  -0.64994  -0.70402  -0.96350  -0.52754  -0.98806  -0.10582  -0.62776  -0.49937  -0.42345  -0.47423  -1.09855  -0.51083

 Columns 4305 through 4320:

  -0.77128  -0.96401  -0.23015  -0.59739  -0.82522  -1.09361  -0.79632  -0.55275  -0.40313  -0.79343  -0.55541  -0.73830  -0.45987  -0.58810  -0.90104  -1.02460

 Columns 4321 through 4336:

  -0.52603  -0.74057  -0.45212  -0.65216  0.01649  -0.93868  -0.01749  -1.03312  -0.59364  -0.73141  -0.81040  -0.66077  -0.80715  -0.57032  -0.71721  -0.63459

 Columns 4337 through 4352:

  -0.57902  -0.43653  -0.23481  -0.92165  -1.24763  0.43308  -0.17537  -0.21991  -0.79788  -1.00640  -0.69070  -0.63568  -0.44668  -0.18124  -0.79598  -0.78871

 Columns 4353 through 4368:

  -0.74240  -0.07907  -0.43791  -0.58629  -0.36531  -0.84699  0.09624  -0.82977  -0.95538  -0.03537  -0.74182  -0.19734  -0.62735  -0.89975  -0.74475  -0.49128

 Columns 4369 through 4384:

  -0.65695  -0.27662  -0.56343  -0.85534  -1.05298  -0.69091  -0.82878  -0.67712  -1.24561  -0.72926  -0.85341  -0.91929  0.18892  -0.82365  -0.29526  -0.68522

 Columns 4385 through 4400:

  -0.49030  -0.68585  0.23969  -0.75771  -0.56102  -0.37487  -1.06890  -0.56994  -1.02705  -0.97320  -0.26306  -1.16590  -0.97829  -0.79807  -0.77367  -0.66791

 Columns 4401 through 4416:

  -0.17663  -0.82827  -0.61126  -0.31128  -0.51664  -0.55722  -0.71510  -0.21617  -0.74682  -0.61180  -1.18886  -0.56351  -0.84144  -0.87901  -1.11015  -0.45047

 Columns 4417 through 4432:

  -0.98987  -0.24659  -1.34405  -0.82594  -0.72836  -0.70451  -1.03010  -0.69364  -0.35991  -0.50961  -0.87981  -0.59141  -0.48857  -0.43951  -0.55730  -0.69097

 Columns 4433 through 4448:

  -0.24699  -0.85830  -0.50103  -0.59498  -0.86245  -0.35043  -1.07772  -0.60126  -0.89656  -0.12213  -0.43126  -0.41663  -0.30660  -0.94474  -0.21822  -0.73489

 Columns 4449 through 4464:

  -1.06935  -1.18904  -0.77518  -0.77790  -0.87806  -0.51188  -1.03322  -0.61265  -1.00013  -0.05906  -0.82109  -0.25932  -0.33489  -0.72816  -0.87544  -0.58126

 Columns 4465 through 4480:

  -0.54658  -0.29205  -1.62641  -0.46822  -0.63514  -0.25503  -0.94699  -0.39000  -0.44398  -0.74494  -0.32912  -0.78913  -0.04088  -0.13845  0.04983  -0.98489

 Columns 4481 through 4496:

  -0.00367  -0.56397  -0.52112  -0.53949  -0.69943  -1.00367  -0.31115  -0.82945  -1.12620  -0.48346  -0.93566  -0.50442  -0.87830  -0.93719  -0.00599  -0.46720

 Columns 4497 through 4512:

  -0.70377  -0.32157  -0.54276  -0.14020  -0.89628  -0.54662  -0.70493  -0.94626  -0.94600  -0.91504  -0.37180  -1.08433  -0.24593  -0.31115  -0.93883  -0.63813

 Columns 4513 through 4528:

  -1.29074  -0.38548  -0.13969  -0.49432  -0.14371  -0.85034  -0.46195  -0.80208  -0.63292  -0.66056  -0.51057  -0.61650  -0.78315  -0.68567  -0.52507  -0.40343

 Columns 4529 through 4544:

  -0.68983  -0.02817  -1.06216  -0.75841  -0.36969  -0.74924  -0.52510  -0.35196  -0.92148  -0.42837  -0.12433  -0.83356  -0.69505  -0.57609  -0.82217  -0.23564

 Columns 4545 through 4560:

  -0.50164  0.09161  -0.37642  -0.90387  -0.64692  -0.51340  -0.65278  -0.74001  -1.38259  -0.52310  -0.57110  -0.74041  -0.52021  -1.02949  -0.63642  -0.46343

 Columns 4561 through 4576:

  -0.38186  -0.55546  -0.72509  0.00583  -0.45139  -0.60121  -0.61800  -0.80800  -0.72053  -0.42103  -0.83614  -0.70314  -1.12231  -0.45080  -0.20753  -0.91039

 Columns 4577 through 4592:

  -0.86638  -0.56978  -1.17153  -1.10416  -0.75999  -0.67158  -1.01808  -0.60133  -0.69315  -0.40024  -0.82690  -0.62097  -0.17607  -0.82018  -0.58701  -1.01797

 Columns 4593 through 4608:

  -0.65415  -1.15331  -0.97192  -0.18192  -0.69748  -0.51068  -0.67602  -0.62944  -0.63183  -0.50172  -1.15284  -1.19526  -0.54020  -0.84878  -0.45285  -0.43892

 Columns 4609 through 4624:

  -1.11558  -0.07339  -0.43436  -1.34924  -0.50806  -0.46201  -0.72573  -0.47360  -0.79272  -0.75232  -0.57343  -0.57594  -0.06785  -0.60980  -0.47715  -0.35216

 Columns 4625 through 4640:

  -1.18809  -0.57451  -0.15273  -0.33611  -0.79518  0.03494  -0.51165  -0.63644  -0.88625  -0.88400  -0.63605  -0.31799  -0.06150  -1.49310  -0.79556  -0.98820

 Columns 4641 through 4656:

  -1.02306  -0.92697  -0.78254  -0.42339  -0.47298  -0.88385  -0.80974  -0.21010  -0.76300  0.08965  -1.08168  -0.70158  -0.60706  -0.40414  -0.65654  -1.14129

 Columns 4657 through 4672:

  -0.12461  -0.83295  -0.68152  -0.82103  -0.91902  -0.46307  -0.18716  -0.37748  -1.12153  -0.61939  -0.03402  -0.45028  -0.36818  -0.72724  -0.36601  -0.46437

 Columns 4673 through 4688:

  -0.59665  -0.28579  -0.92118  -0.36072  -0.80125  -0.33473  -0.79303  -0.39030  -0.66930  -0.79311  -0.84022  -0.63289  -0.86537  -0.78921  -0.45079  -0.63765

 Columns 4689 through 4704:

  -0.82501  -0.59704  -0.71829  -1.49077  -0.77214  -0.55033  -0.85147  -0.57519  -0.95249  -0.86117  -0.66222  -0.72015  -0.55335  -0.22091  -0.77274  -0.56044

 Columns 4705 through 4720:

  -0.62208  -0.61960  -0.20511  -1.00945  -0.34763  -0.44654  -0.73315  -0.69229  -0.90232  0.16284  -0.84153  -0.63535  -0.75884  -0.43355  -0.72054  -0.72288

 Columns 4721 through 4736:

  -0.84006  -1.18112  0.29970  -0.05754  -0.81505  -0.59823  -0.63759  -0.80213  -0.75066  -0.54465  -0.80423  -0.91645  -0.41073  -0.73884  0.06251  -0.52031

 Columns 4737 through 4752:

  -0.35104  -1.38616  -0.78815  -0.39169  -0.43333  -0.79899  -0.39857  -0.46705  -0.96169  -0.59130  -0.42604  -0.91806  -0.69240  -0.40958  -0.30726  -0.16356

 Columns 4753 through 4768:

  -0.56856  -1.10489  -0.30949  -0.37461  -1.04126  -0.39133  -0.00255  0.17964  -0.62638  -0.65453  -0.37348  -0.69496  -0.74683  -0.46452  -0.38114  -0.82731

 Columns 4769 through 4784:

  -0.68524  -1.17878  -0.79239  0.18664  -0.73045  -0.69827  -0.41331  -0.19071  -0.07587  -0.69693  -1.03105  -0.62801  -0.96122  -0.92116  -0.84538  -1.02372

 Columns 4785 through 4800:

  -0.27356  -0.89899  -0.26101  -0.78587  -0.51708  0.01938  -0.38394  0.38751  -0.98045  -0.29093  -0.81156  -0.64094  -0.34380  -0.66540  -0.43348  0.06325

 Columns 4801 through 4816:

  -0.65517  -0.70399  -0.68666  -1.29587  -0.93705  -0.63417  -0.40857  -0.98038  -0.89897  -0.76706  -0.96083  -0.86357  -0.12896  -0.64155  -0.43125  -0.25853

 Columns 4817 through 4832:

  -0.29895  -0.70217  0.05669  -0.63073  -0.82811  -0.58482  -0.59124  -0.53966  -0.41402  -0.29948  -0.36520  -1.30376  -0.60183  -0.13359  -0.62337  -0.37925

 Columns 4833 through 4848:

  -0.24150  -0.45283  -0.52499  -0.78359  -0.80339  -0.19212  -0.05126  -1.48295  -0.49535  -0.41951  -0.67904  -0.32557  -0.91863  -0.80460  -0.85153  -0.27156

 Columns 4849 through 4864:

  -0.48782  -0.25888  0.21176  -0.52491  -0.45215  -0.54711  -0.52255  -0.91372  -0.83834  -0.84753  -0.41080  -1.08134  -0.74396  -0.28778  -0.70175  -0.64223

 Columns 4865 through 4880:

  -0.63012  -0.62342  -0.12067  -0.50962  -1.00065  -0.66999  -0.36169  -0.56797  -0.27051  -0.96980  -0.34127  -0.66201  -0.18643  -1.09600  -0.19389  -0.49489

 Columns 4881 through 4896:

  -0.39720  -0.82288  -0.33592  -1.03742  -0.33320  -0.76704  -0.93436  -0.23497  0.13030  -1.03781  -0.62083  -0.76070  -0.69030  -0.84984  -0.79562  -0.41054

 Columns 4897 through 4912:

  -0.25650  -0.02341  -0.33308  -0.27935  -0.87922  -0.69226  -0.48110  -0.54600  -0.95473  -0.86840  -0.39289  -0.52076  -0.41927  -0.59196  -0.53783  -0.50828

 Columns 4913 through 4928:

  -0.75648  -1.08973  -1.04344  -0.47752  -0.43902  -0.71157  -0.28821  -0.21878  -0.78545  0.08426  -1.09137  -0.50311  -0.25730  -0.43441  -0.54893  -1.05644

 Columns 4929 through 4944:

  -0.20599  -0.32794  -0.22463  -0.86132  -0.28462  -0.73722  -0.41533  -0.33681  -0.56059  -0.95672  -0.16172  -0.54400  -0.40691  -0.31276  -0.88193  -0.47677

 Columns 4945 through 4960:

  0.18439  -0.53631  -0.91419  -1.07804  -0.35812  -0.72353  -0.31674  -0.81467  -1.40361  -1.43963  -0.33618  -0.49824  -0.46003  -0.72071  -0.57477  -0.25007

 Columns 4961 through 4976:

  -0.50670  -0.63614  -0.88249  0.12597  -0.83738  -0.74310  0.20629  -0.77482  -0.90096  -0.72369  -0.89538  -0.35470  -0.78736  -0.59593  0.11873  -0.74815

 Columns 4977 through 4992:

  -0.80878  -0.67958  -0.19067  -0.55107  -0.55533  -0.13160  -0.95537  -0.89187  -0.56477  -0.71932  -0.19900  -0.66510  -0.62889  -0.39952  -0.24540  -0.86464

 Columns 4993 through 5008:

  -0.52078  -0.88139  -0.66439  -1.39274  -0.00662  -0.06511  -0.33992  -0.51718  -0.47610  -0.18790  -0.17067  -0.67414  -0.48634  -0.89490  -0.86348  -0.45403

 Columns 5009 through 5024:

  -0.22379  -0.62320  -0.14432  -0.68969  -1.15961  -0.20399  -0.69866  -0.60867  -0.39163  -0.53554  -0.24898  -0.73631  0.00268  -0.64981  -0.83549  -0.48759

 Columns 5025 through 5040:

  -0.21227  -0.75554  -0.92347  -1.22460  -0.21638  -1.00831  -0.87531  -0.46244  -0.83219  -0.38449  -0.43850  -0.51081  -0.75978  -0.52840  -0.51129  -0.68514

 Columns 5041 through 5056:

  -0.53719  -0.68684  -0.53665  -0.81926  0.41349  -0.60765  -0.50719  -1.25491  -0.30690  -0.07417  -0.13446  -0.26873  -0.51722  -1.13001  -0.72054  -0.68232

 Columns 5057 through 5072:

  -0.71914  -0.19661  0.20809  -1.18574  -0.68285  -0.33070  -0.29071  -0.60483  -0.86813  -0.22086  -0.72669  -0.66943  -0.41277  -0.59271  -1.06346  -0.45564

 Columns 5073 through 5088:

  -0.21707  -0.20641  -0.58120  -0.70312  -1.44225  -1.19986  -1.11656  -1.02601  -0.62027  -0.58098  -0.63650  -0.85763  -0.72948  -0.60789  -0.42987  -1.00832

 Columns 5089 through 5104:

  -0.29111  -0.62784  -0.46597  -0.44998  -1.25288  -0.33100  -0.48855  -0.68715  -0.63026  -0.93929  -1.11737  -0.43398  -0.44111  -0.89215  -0.79860  -0.59441

 Columns 5105 through 5120:

  -0.48005  -0.37295  -0.95517  -0.70050  -0.57962  -0.61833  -0.82039  -0.52334  -0.59311  -0.52797  -0.86166  -0.65849  -0.25914  -0.62860  -0.24858  -0.50711

 Columns 5121 through 5136:

  -0.64460  -0.37198  -0.90650  -0.87607  -0.84722  -0.72444  -0.54734  -0.63569  -0.49272  -0.08994  -0.83198  -0.91447  -1.11999  -0.49031  -0.43641  -0.27464

 Columns 5137 through 5152:

  -0.57423  -0.68392  -0.33472  -0.74548  -0.62107  -0.56537  -0.26862  -0.56265  -1.11446  -0.60268  -0.43081  -0.09313  -0.20908  -0.53842  -0.92163  -0.84696

 Columns 5153 through 5168:

  -0.60190  -0.93574  -0.76747  -0.39807  -0.15995  -0.17449  -0.38516  -0.31083  -0.96206  -0.16248  -0.77552  -0.28692  -0.11976  -0.90130  -0.48233  -0.55991

 Columns 5169 through 5184:

  -0.90761  -0.11201  -1.25575  -0.50934  -0.64770  -0.72914  -1.12042  -0.29914  -0.48380  -0.61675  -0.62622  -0.89451  -0.84599  -0.49336  -1.12659  -0.54634

 Columns 5185 through 5200:

  -0.49845  -0.53110  -0.58286  -0.77230  -0.44487  -0.74189  -0.54818  -0.83508  -0.15390  -0.12558  -0.43982  -0.43186  -0.79513  -0.25987  -0.50454  -0.74363

 Columns 5201 through 5216:

  -0.50727  -0.03847  -0.80213  -0.79807  -0.49098  -0.48875  -0.35668  -0.20024  -0.32657  -0.63202  -0.44593  -0.71307  -0.69547  -0.40234  -0.96215  -0.47669

 Columns 5217 through 5232:

  -1.67433  -0.41223  -1.41364  -0.68883  -0.32747  -0.23115  -0.82153  -0.83408  -0.24426  0.13010  -0.80793  -0.40845  -0.80321  -0.15054  -0.45589  -1.06312

 Columns 5233 through 5248:

  -0.77616  -1.14187  -0.55893  -0.64186  -0.44610  -1.66423  -0.57507  -0.57737  -0.54072  -0.19767  -0.75035  -0.28104  -0.24368  -0.04582  -0.47789  -0.74861

 Columns 5249 through 5264:

  -0.95409  -0.66617  -0.93851  -0.48689  -0.65803  -0.67320  -0.45934  -0.68625  -0.82424  -0.59881  -0.68961  -0.55447  -0.49481  0.27503  -0.32295  -0.95674

 Columns 5265 through 5280:

  -1.04307  -0.46331  -0.81993  -0.63254  -0.42575  -0.50665  -0.30004  -0.54767  -1.03387  -0.44732  -0.42135  -0.36718  -0.22734  -0.68112  -0.67699  -0.81998

 Columns 5281 through 5296:

  -0.35175  -0.68112  -0.09073  -0.49174  -0.70685  -0.87000  -0.94708  -0.34213  -0.80582  -0.11259  -0.37134  -0.45482  -0.75208  -0.82883  -0.88703  -0.79006

 Columns 5297 through 5312:

  -0.80944  -0.07316  -0.94313  -0.48995  -1.01589  -0.71144  -0.25338  -0.35045  -0.49620  -1.15433  -0.80243  -0.50010  -0.17897  -0.35952  -0.58777  -0.15996

 Columns 5313 through 5328:

  -0.74230  -0.09481  -0.28113  -0.73734  -0.74988  -0.47627  -0.26409  -0.74422  -0.50482  -0.57934  -0.07238  -0.84375  -0.34336  -0.26464  0.05199  -0.76164

 Columns 5329 through 5344:

  -0.33167  -0.68357  -0.59525  -1.33562  -1.52271  -0.58087  0.04017  -0.36917  -0.83370  -0.48100  -0.61216  -0.56634  -0.22932  -0.26008  -0.66133  -0.54492

 Columns 5345 through 5360:

  0.03804  -0.89451  -1.38826  -0.76234  -0.88854  -0.42199  -0.86298  -0.60962  -0.85153  -0.52944  -0.21205  -0.63793  -0.84581  -0.22487  -0.78935  -0.59940

 Columns 5361 through 5376:

  -0.81217  -0.26917  -1.11161  -0.47430  -0.25259  -0.38338  -1.46681  -0.55726  -0.92079  -0.65203  -0.66702  -0.41971  -0.36700  -0.42985  -0.42002  -0.53428

 Columns 5377 through 5392:

  -0.20699  -0.28852  -0.40785  -0.53261  -0.51856  -1.16751  -0.36161  -0.15213  -1.09601  -0.87802  -0.21268  -0.68729  -0.66023  -0.62074  -0.88621  -0.33235

 Columns 5393 through 5408:

  -0.35205  -0.81504  -0.54559  -0.69263  -1.01921  -0.58286  -0.64897  -0.58151  -1.41789  -0.40568  -0.87052  -0.70265  -0.76816  -0.84229  -0.64318  -0.14798

 Columns 5409 through 5424:

  -1.09356  -0.75112  -1.13737  -0.63370  -0.54880  -0.20593  -0.68633  -0.97010  -0.03241  -0.58538  -0.39999  -0.39830  -0.32766  0.13423  -0.96629  -0.62653

 Columns 5425 through 5440:

  -0.55659  -0.63515  -0.70161  -0.41372  -0.25467  -0.36049  -0.82494  0.00577  -0.63512  -0.58768  -1.02031  -0.84019  -0.28238  -0.59498  -0.27435  0.16615

 Columns 5441 through 5456:

  -0.87808  -0.69891  -0.10763  -0.73953  -0.78273  -1.06597  -0.20236  -0.18916  -1.01952  -0.51096  -0.91840  -0.54786  -1.14941  -0.92194  0.00011  -0.54438

 Columns 5457 through 5472:

  -0.80205  -0.58269  -0.56643  -0.42772  -0.74757  -0.93916  -0.54033  -0.24751  -0.65330  -0.73379  -1.32508  -0.26312  -0.90344  -0.50155  -0.75075  -1.05163

 Columns 5473 through 5488:

  -0.77456  -0.52413  -0.72559  -0.45079  -0.76626  -0.63551  -0.41969  -0.79439  -0.42297  -0.63229  -0.41787  -0.67450  -0.91774  -0.55979  -0.94283  -0.75235

 Columns 5489 through 5504:

  -0.51554  -0.50670  -0.16499  -0.85334  -0.65504  -0.27527  -0.74389  -0.24738  -1.10018  0.35639  -0.78861  -0.17756  -0.94094  -0.87976  -0.17854  -0.84929

 Columns 5505 through 5520:

  -0.76260  -0.82425  -0.72743  -0.56552  -0.14697  0.10333  -0.79695  -0.52013  -0.78749  -0.22498  -0.33093  -0.57732  0.14680  -0.71482  -0.52247  -0.25445

 Columns 5521 through 5536:

  -0.32178  -1.30438  -0.66084  -0.35195  -0.89969  -0.90551  -1.58404  -0.80617  -1.01934  -0.38016  -0.64606  -0.80109  -0.38603  -0.76495  -0.72787  -0.43983

 Columns 5537 through 5552:

  -0.85092  -0.84291  -0.10207  -0.32555  -0.59356  -0.29698  -0.37941  -0.73976  -0.38603  -0.66790  -1.14751  -0.63336  -0.42847  0.18363  -0.70345  -0.82295

 Columns 5553 through 5568:

  -0.67756  -0.73321  -0.63583  -1.28754  -1.21976  -0.58153  -0.08264  -0.73003  -1.17349  -1.19947  -0.52314  -0.56157  -1.21970  -1.04785  -1.06874  -0.35999

 Columns 5569 through 5584:

  -0.83595  -0.72285  -0.66311  -0.00998  -1.51466  -0.36197  -0.42463  -0.95874  -0.57170  -1.08925  -0.66823  -1.10646  -0.58030  -1.14609  -0.39642  -0.56132

 Columns 5585 through 5600:

  -0.91739  -1.05507  -0.38150  -0.52646  -1.05243  -0.53893  -0.53834  -0.79734  -0.72589  -0.02211  -0.17907  -0.66878  -0.95378  -0.45744  -0.91526  -0.67052

 Columns 5601 through 5616:

  -0.09224  -1.37997  -0.27675  -0.14872  -0.16727  -0.44516  -0.88686  0.00316  -0.50875  -1.23093  -0.81273  -1.32610  -0.35179  -0.46233  -0.58811  -0.80198

 Columns 5617 through 5632:

  -0.35645  -0.95244  -1.29919  -0.58437  -0.42534  -0.85939  -1.08071  -0.05298  -0.73446  -0.56678  -0.63614  -0.86029  -0.70692  -0.48976  -0.65599  -0.89205

 Columns 5633 through 5648:

  -0.00442  -0.94257  -0.55294  -0.68540  -0.52357  -0.68513  -0.09935  -0.52035  -0.09061  -0.35066  -0.76546  -0.50850  -0.26506  -1.11074  -0.89314  -0.49490

 Columns 5649 through 5664:

  -0.13654  -0.94470  -0.65712  -0.46315  -0.50390  -0.39719  -0.64881  -0.10784  -0.56370  -0.42178  -0.19460  -0.67711  -0.43928  -0.67372  -0.19328  -0.98645

 Columns 5665 through 5680:

  -0.96082  -0.70142  -0.05819  -0.84287  -1.16943  -0.85487  -0.88087  -0.65562  -0.64788  -0.19601  -0.58723  -1.19741  -0.89445  -0.89732  -0.92772  -1.04939

 Columns 5681 through 5696:

  -0.98637  -0.30609  -0.17338  -0.91338  -0.84543  -0.87593  -0.33917  -0.55991  0.05377  -0.46889  -0.79482  -0.46739  0.04494  -0.55482  -0.96372  -1.11967

 Columns 5697 through 5712:

  -0.50968  -0.79555  -0.43533  -0.55752  0.00085  -0.40537  -0.42125  -0.77765  -0.30513  -0.66975  -0.37257  -0.84079  -0.98721  -0.78801  -1.01236  -0.54832

 Columns 5713 through 5728:

  -0.55275  -0.72908  -0.36555  0.23176  -0.99894  -0.57008  -0.63096  -0.99654  -0.66786  -0.78325  0.07532  -0.85914  -0.54218  -0.83393  -0.68718  -0.85704

 Columns 5729 through 5744:

  -0.48574  -0.81175  -0.70487  -0.59039  -1.04162  -1.48263  -0.46508  -0.11625  -0.80293  -0.58909  -0.24352  -0.67190  -0.72208  -0.41878  -0.57448  -0.68692

 Columns 5745 through 5760:

  -0.74133  -0.87651  -0.48842  -0.70786  -0.37652  -0.45659  -0.87178  -1.17742  -0.82534  -0.68792  -0.63978  -0.45304  -0.43843  -0.71255  -0.24787  -0.35052

 Columns 5761 through 5776:

  -0.57526  -0.95355  -0.20444  -0.47246  -0.46564  0.13644  -0.83552  -0.15558  -0.45574  -0.88538  -0.31296  -0.60938  -0.60148  -0.34715  -0.20202  -0.53578

 Columns 5777 through 5792:

  -0.64845  -0.45039  -0.74429  -0.45085  -0.70581  -0.16144  -0.69573  -0.88419  -0.31713  -0.75593  -0.91831  -0.73047  -0.40380  -0.35084  -0.36993  -1.01651

 Columns 5793 through 5808:

  -0.79834  -0.76490  -0.73417  -0.47436  -0.54921  -0.76177  -0.93527  -0.79076  -0.73001  -0.62078  -0.17338  -0.78086  -0.60411  -0.33720  -0.74355  -1.10560

 Columns 5809 through 5824:

  -0.72550  -0.57862  -0.45831  -0.37019  -0.67624  0.04753  -0.30282  -0.01557  -0.85538  -0.65240  -0.78882  -1.50753  -0.64038  -0.94782  -0.74086  -0.07196

 Columns 5825 through 5840:

  -0.57989  -0.19711  -0.53980  -0.35225  -0.80923  -0.90200  -0.15895  -0.59872  -0.46632  -0.70563  -0.24285  -0.52477  -0.63654  -0.56846  -1.03088  0.10267

 Columns 5841 through 5856:

  -0.44524  -0.49473  0.21515  -0.91164  -0.60434  -0.26015  -0.44027  -0.76837  -0.37202  -0.63700  -0.71306  -0.66990  -0.25511  -0.45546  -0.81300  -0.71132

 Columns 5857 through 5872:

  -0.20601  -0.55401  -0.67319  -0.27523  -0.72009  -1.14531  -0.31363  -0.15844  -0.37427  -0.74508  -0.93625  -0.54594  -0.82461  -0.83404  -0.71684  -0.44051

 Columns 5873 through 5888:

  -0.41305  -0.58993  -1.00657  -1.23037  -0.53039  0.02732  -0.28597  -0.22501  -0.41567  -1.09126  -0.99953  -0.27223  -0.47247  -0.61791  -0.78781  -1.16314

 Columns 5889 through 5904:

  -0.47924  -0.30513  -0.67385  -0.73419  -0.53356  -0.93291  -0.40009  -0.24738  -0.01161  -1.09997  -0.23711  -0.82622  0.03383  -0.94997  -0.51710  -0.39968

 Columns 5905 through 5920:

  -0.94671  -0.24487  -0.25690  -0.95636  -0.87446  -0.74729  -0.43668  -0.47541  -0.78395  -0.34352  -0.72029  -0.99096  -0.31782  -0.68375  -0.33539  -0.95816

 Columns 5921 through 5936:

  -0.91988  -1.54291  -0.30147  -0.21215  -0.21235  -0.26422  -0.40065  -0.81031  -0.58848  -0.97198  -0.90616  -0.55444  -0.30797  -0.86500  -0.09237  -0.30824

 Columns 5937 through 5952:

  -0.39285  -0.49560  -0.74681  -0.75734  -0.38576  -0.46029  -1.29917  -1.07352  -0.55613  -0.99200  -0.69201  -1.46032  -0.39820  -0.96067  -0.90624  -0.29964

 Columns 5953 through 5968:

  -0.63540  -0.62635  -0.89794  -0.94946  -0.95832  -0.43326  -0.67745  -0.12818  -0.98598  -0.99485  -0.47162  -0.62270  -0.57867  -0.85613  -0.95596  -0.65794

 Columns 5969 through 5984:

  -1.06579  -0.55948  -0.30747  -0.82018  -0.56790  -0.58134  -1.21965  -0.51409  -0.28626  -0.81655  -0.38934  -0.97066  -0.01193  -0.38937  -0.76991  -0.21484

 Columns 5985 through 6000:

  -0.85585  -0.44935  -0.96328  -0.87780  -0.81291  -0.46653  -0.78826  -0.78165  -0.71367  -0.68664  -0.79531  -1.19973  -0.65340  -0.77350  -1.11704  -0.73348

 Columns 6001 through 6016:

  -0.64142  -0.96099  -0.37684  -0.76420  -0.71341  -1.04785  -0.25682  -0.30797  -0.48658  -0.78852  -0.17702  -0.38490  -0.76546  -0.83462  -0.73942  -0.79567

 Columns 6017 through 6032:

  -0.43872  -0.18762  -0.34489  -0.83823  -0.65375  -0.68533  -0.38125  -0.93176  -0.89727  -0.57879  -0.28287  -0.69505  -0.60505  -0.36109  -0.96945  -0.52700

 Columns 6033 through 6048:

  -0.25981  -0.32462  -0.53377  -0.61767  -0.54955  -0.09470  -0.44954  -0.64572  -0.76853  -0.74895  -0.38948  -1.10126  -0.65041  -0.33435  -0.25412  -0.42923

 Columns 6049 through 6064:

  -0.50336  -0.73071  -0.74641  -0.67695  -0.78833  -1.22783  -0.88959  -0.29870  -0.76944  -0.60969  -0.70921  -0.49994  -0.66589  -1.04007  -0.41019  -0.69321

 Columns 6065 through 6080:

  -0.66507  -0.37715  -0.30843  -0.98562  -0.85547  -0.79919  -0.32575  -0.74667  -0.24508  -1.46348  -0.95588  -0.75006  -0.77926  -0.48459  -0.63533  -0.87879

 Columns 6081 through 6096:

  -0.19976  -0.64782  -0.64922  -0.91881  -0.56376  -1.05555  -0.77011  -0.91544  -0.73456  -0.50616  -1.03224  -0.83726  -0.44703  -0.71805  -0.47347  0.08817

 Columns 6097 through 6112:

  -0.62349  -0.47574  -0.42264  -1.03066  -0.83189  -1.21117  0.04499  -0.50175  -0.81722  -0.72333  -1.35742  -0.44122  -0.68479  -1.28270  -0.88131  -0.99321

 Columns 6113 through 6128:

  -0.65170  -0.68265  -0.68756  -0.91613  -0.44633  -0.70694  -0.21735  -0.21688  -0.70193  -0.86595  -0.69517  -0.61822  -0.85834  -0.44920  -0.83092  -0.97768

 Columns 6129 through 6144:

  -0.58634  -1.19393  -0.22517  -0.41671  -0.04494  -0.16688  -0.50001  -0.25864  -0.13703  -0.18556  -0.51187  -0.50228  -0.57623  -0.78648  -0.36813  -1.07452

 Columns 6145 through 6160:

  -0.58110  -0.56856  -0.21410  -1.02617  -0.61791  -0.25539  -0.59654  -0.87130  -0.05725  -0.51221  -0.64431  -0.71207  -0.23735  -0.81631  -0.66020  -0.59319

 Columns 6161 through 6176:

  -0.53469  -0.15451  -0.65217  0.16105  -0.26081  -0.19145  -1.36920  -0.52609  -0.70189  -0.77852  -0.46329  -0.09058  -1.13231  -0.32648  -0.59582  -1.24845

 Columns 6177 through 6192:

  -0.14947  -0.36555  -0.28826  -0.49867  -0.26705  -0.85893  -0.39799  -0.78856  -1.29127  -0.78551  -0.57841  -0.73304  -0.68577  -0.66004  -0.87020  0.00068

 Columns 6193 through 6208:

  -0.46949  -0.45262  -0.83463  -0.14126  -0.48942  -0.33240  -1.21157  -1.19625  0.16544  -0.38729  -0.90421  -0.75305  -0.53848  -1.03199  -0.43674  -0.94795

 Columns 6209 through 6224:

  -0.20233  -0.68333  -0.40670  -0.70076  -0.88861  -0.66439  -0.47714  -0.17874  -0.23139  -0.70998  -0.51704  -0.82344  -0.85632  -0.48468  -0.64606  -0.64450

 Columns 6225 through 6240:

  -0.83620  -0.57007  -0.35348  -0.57857  -0.41930  -1.30620  -0.79716  -0.98411  -1.01729  -0.92215  -0.49930  -0.78102  -0.87823  -0.62835  -0.58477  -1.11888

 Columns 6241 through 6256:

  -0.72811  -1.04684  -0.93002  -0.43850  -0.80126  0.29347  -0.68410  -0.62960  -0.34803  -0.77561  -0.23530  -0.73856  -0.88493  -0.95588  -0.50667  -0.52443

 Columns 6257 through 6272:

  -0.97186  -0.75915  -0.47861  -0.60372  -0.09175  -0.68397  -0.84099  -0.49163  -0.86015  -0.56854  -0.54428  -0.95452  -0.71600  -0.19581  -0.33931  -0.57422

 Columns 6273 through 6288:

  -0.72531  -0.21680  -0.28856  -0.57287  -0.72211  -1.18499  -0.62159  -0.96594  -0.85446  -0.79641  -0.32214  -0.80708  -0.73701  -0.90460  -0.20224  -0.56254

 Columns 6289 through 6304:

  -0.42193  -0.92234  -0.84103  -0.55977  -0.32538  -1.01862  -0.67272  -0.47674  -0.58963  -0.50093  -0.43640  -0.62897  -1.29795  -0.38556  -0.65516  -0.39137

 Columns 6305 through 6320:

  -0.31378  -0.79098  -0.40167  -0.64957  -0.49377  -0.18224  0.00660  -0.58605  -0.81986  -0.68332  -0.45109  -0.67605  -0.38438  -0.78358  -0.31976  -0.51122

 Columns 6321 through 6336:

  -0.48818  -0.47749  -0.83768  -0.58992  -1.02817  -0.07520  -0.57632  -0.97025  -0.51772  -0.98690  -1.32972  -0.53580  -1.20664  -0.91297  -0.45044  -0.77462

 Columns 6337 through 6352:

  0.13963  -0.67828  -0.25086  -1.15634  -0.44626  -0.27779  -0.27664  -0.24315  -0.72013  -0.51161  -0.96473  -0.65141  -0.79955  -0.22939  -0.92256  -0.52991

 Columns 6353 through 6368:

  -0.34564  -0.60033  -0.80664  -1.15780  -0.50705  -0.49989  -0.67511  -0.54447  -0.04326  -0.36248  -0.27993  -0.62625  -0.48368  -0.51001  -0.81349  -0.03193

 Columns 6369 through 6384:

  -0.56415  -0.97693  -0.69236  -0.57763  -0.52745  -0.48181  -0.45940  -0.56631  -0.49575  -0.69397  -0.82004  -0.46159  -1.06346  -0.47566  -0.32527  -0.03948

 Columns 6385 through 6400:

  -0.09468  -1.00652  -0.46701  -0.74198  -0.75989  -0.80053  -0.25360  -0.57012  -0.28443  -0.48398  -0.57849  -0.99626  -0.50104  -0.90907  -0.86965  -0.87899

 Columns 6401 through 6416:

  -1.11828  -0.45297  -0.92940  -0.72866  -0.35636  -0.77685  -1.14795  -0.48722  -0.59707  -0.93515  -1.04342  -0.32830  -0.11852  -1.20106  -0.51930  -0.67096

 Columns 6417 through 6432:

  -0.38662  -0.25611  -0.77595  -0.45545  -0.06114  -0.86623  -0.20385  -0.92785  -0.72017  -0.44855  -1.07485  -1.10004  -0.19940  -0.68101  -0.92009  -0.67090

 Columns 6433 through 6448:

  -0.41942  -0.10596  -0.96351  -0.11586  -0.34986  -0.75136  -0.86159  -0.43764  -0.47814  -0.46327  -0.78117  -1.23025  -0.31033  -0.68552  -0.90815  -0.52018

 Columns 6449 through 6464:

  -0.43150  -0.50556  -0.51014  -1.00647  -0.11206  -0.64272  -0.82687  -0.86182  -0.92870  -1.17757  -0.50308  -0.74248  -0.63653  -0.69447  -0.44598  -0.09950

 Columns 6465 through 6480:

  -0.64681  -0.48405  -0.69867  -0.74891  -0.38114  -0.52746  -0.38429  -0.54345  -0.21308  -0.57189  -1.08980  -1.13386  -0.76344  -0.35626  -0.84228  -0.61431

 Columns 6481 through 6496:

  -0.73284  -1.06016  -0.23212  -0.62065  -0.75583  -1.15926  -1.29162  -0.60801  -0.39541  -1.14407  -0.49574  -0.76539  -0.19815  -0.85846  -0.56970  -0.24638

 Columns 6497 through 6512:

  -0.37236  -0.48116  0.08846  -1.04878  -1.05484  -0.56688  -0.70754  -0.33820  -0.75918  -0.55345  -0.47944  -0.52104  -0.67322  -1.32146  -0.82382  -0.58550

 Columns 6513 through 6528:

  -1.15899  -1.18922  -1.01765  -1.04023  -0.08125  -1.11782  -0.31745  -1.06043  -0.46425  -0.34962  -0.56491  -0.67653  -0.24272  -0.37610  -0.96414  -0.84510

 Columns 6529 through 6544:

  -0.38331  -0.29157  -0.96946  -1.23867  -0.43775  -1.02036  -0.52284  -0.23168  0.05057  -0.68175  -0.94214  -0.66907  -0.97791  -1.00520  -0.37979  -0.99643

 Columns 6545 through 6560:

  -0.52661  -0.63062  -0.55377  0.23211  -0.95729  -0.82432  -0.19124  -0.67439  -0.60451  -0.29792  -0.51152  -0.67379  -0.82722  -0.96190  -0.80342  -0.75976

 Columns 6561 through 6576:

  -0.82812  -0.28961  -0.60382  -0.71059  -0.82887  -0.49065  -0.56380  -1.04438  -0.63047  -0.34855  -0.34216  -0.23697  -1.11863  -0.55904  -0.21970  -0.63040

 Columns 6577 through 6592:

  -0.69672  -0.71718  -0.81893  -0.12409  -0.92695  -0.83592  -0.73151  -0.37768  -0.52721  -0.44749  -0.67785  -0.55625  -0.60673  -0.95133  -1.10307  -1.76058

 Columns 6593 through 6608:

  -1.24520  -0.97534  -0.85145  -0.12842  -0.64636  -0.51090  -1.14386  -0.25262  -0.58446  -1.12189  -0.90972  -1.37315  -0.50158  -0.69736  -0.84069  -0.19780

 Columns 6609 through 6624:

  -0.54135  -0.74074  -0.80517  -0.09822  -0.47686  -0.57962  -0.32005  -0.38647  -0.81908  -0.59414  -0.55556  -0.47209  -0.61507  -1.33054  -0.46931  -0.81381

 Columns 6625 through 6640:

  -0.92442  -1.22542  -0.43521  -0.37462  -0.45943  -0.47974  -0.59090  -0.59668  -0.61597  -0.58124  0.06080  -0.41458  -0.36572  -0.29824  0.00045  -0.02723

 Columns 6641 through 6656:

  0.23239  -0.87544  -0.87947  -0.48998  -0.98863  -0.92720  -0.47387  -0.00643  -0.48950  -1.01205  -0.34666  -0.68817  -1.24330  -0.10405  -0.93062  -0.94972

 Columns 6657 through 6672:

  -1.02550  -0.57333  -1.09442  -0.67338  -0.68959  -0.31054  -0.80527  -0.32454  0.01773  -0.06557  -0.92577  -0.59235  -0.85552  0.02792  -0.52086  -0.61486

 Columns 6673 through 6688:

  -0.90688  -0.61680  -0.92385  -0.27643  -0.49599  -1.08485  -1.04040  -1.05620  -0.36049  -0.52515  -0.53648  -0.90762  -0.92819  -0.06544  -0.41804  -0.99152

 Columns 6689 through 6704:

  -0.32282  -0.37244  -0.81980  -0.50509  -0.70299  -0.49663  -0.60339  -0.60108  -0.91259  -0.18255  -0.78077  -0.79359  -0.80376  -0.86865  -0.59172  -0.24006

 Columns 6705 through 6720:

  -1.03270  -0.60184  -0.61442  -0.17680  -0.99753  -1.34060  -0.56504  -0.16434  -0.61629  -0.66200  -0.95576  -0.88612  -0.63690  -0.95234  -0.74359  -0.56804

 Columns 6721 through 6736:

  -0.38420  -0.68195  -0.90010  -0.56612  -0.20423  -0.75077  -0.70195  -0.27745  -0.60747  -0.70992  -1.30059  -0.61685  -0.12007  -0.52944  -0.21186  -0.17184

 Columns 6737 through 6752:

  -0.82897  -0.80843  -0.27411  -0.41331  -0.01057  -0.82810  -0.23093  -1.28352  -0.25896  -0.05268  -0.39683  -0.58251  -0.79850  -0.25805  -0.55733  -0.58308

 Columns 6753 through 6768:

  -0.26922  -0.43616  -0.60981  -0.47966  -1.24238  0.06151  -0.94179  -0.92848  -0.60748  -0.45883  -0.58273  -0.61243  -0.58568  -1.02412  -0.46638  -0.12133

 Columns 6769 through 6784:

  -1.17983  -0.08391  -0.67953  -1.30933  -0.89648  -0.25616  -0.70122  -0.76580  -0.15248  -0.70684  -0.28397  -1.15887  -0.57049  -0.64206  -0.50614  -0.63695

 Columns 6785 through 6800:

  -0.82130  -0.48699  -0.49960  -1.00237  -0.07366  -0.22792  -0.90485  -0.37972  -0.78243  -0.05767  -0.32855  -0.66361  -0.79079  -0.54486  -0.52110  -0.34640

 Columns 6801 through 6816:

  -0.57801  -0.76478  -0.77505  -0.66220  -1.17586  -1.23880  -0.73795  -0.41249  -0.45896  -0.28126  -0.22143  -0.64876  -0.21521  -0.39603  -1.39879  -0.96217

 Columns 6817 through 6832:

  -0.51315  -1.05103  -1.13190  -0.19774  -0.44759  -0.57100  -1.07966  -0.54146  -1.20797  -0.75482  -0.59470  -0.75229  -0.61211  -0.60422  -0.43389  -0.73414

 Columns 6833 through 6848:

  -0.96742  -1.27956  -0.38917  -0.37490  -0.69074  -0.54519  -0.49266  -0.80043  -0.83331  -0.33666  -1.10264  -0.72625  -1.43430  -1.32566  -0.53081  -0.21589

 Columns 6849 through 6864:

  -0.75957  -0.29890  -0.82805  -1.17217  0.01396  -0.06127  -1.03651  -1.19799  -0.71404  -1.04441  -0.70545  -0.41111  -0.43033  -0.35727  -0.47648  -0.58179

 Columns 6865 through 6880:

  -0.46182  -0.94699  -0.04966  -0.65442  -1.15952  -0.90119  -0.85063  -0.84286  -0.93123  -0.26138  -0.09189  -0.76070  -0.19791  -0.33418  -0.64264  -0.29953

 Columns 6881 through 6896:

  -0.37014  -1.48913  -0.63314  -0.84393  -0.09790  -0.13706  -0.54389  -0.63249  -0.17578  -0.52609  -0.85383  -0.29957  -0.91246  -0.07927  -0.25990  -1.28395

 Columns 6897 through 6912:

  -0.90242  -0.29132  -0.21830  -0.69779  -0.44194  -0.89892  -0.81054  -0.57376  -0.25247  -0.69978  0.03236  -0.25912  -0.68492  -0.58665  -0.71764  -1.11723

 Columns 6913 through 6928:

  -0.43435  -0.43394  -0.53959  -0.50339  -0.31293  -0.59683  -0.70995  -0.27912  -0.76617  -0.38570  -0.77026  -0.74482  -0.37860  -0.59898  -0.74834  -0.21479

 Columns 6929 through 6944:

  -0.60235  -1.10445  -0.49759  -0.51604  -0.50083  -0.84171  -0.96608  -0.78244  -0.23846  -0.95250  -0.35385  -0.90541  -0.83034  -0.31633  -1.02464  -0.14995

 Columns 6945 through 6960:

  -0.88663  -0.94697  -0.83645  -0.54256  -1.09238  -0.93706  -0.81410  -0.77986  -1.06992  -0.47439  -0.71000  -0.22784  -0.67669  -0.43054  -0.92698  -1.13509

 Columns 6961 through 6976:

  -0.33089  -1.28359  -0.59009  -0.95723  -0.95868  -0.85988  -1.25776  -0.49222  -0.75984  -0.50933  -0.32469  -0.59446  -0.97695  -1.55975  -0.76045  0.08896

 Columns 6977 through 6992:

  -0.45099  -1.18414  -0.90694  -0.58168  -0.68548  -0.70221  -0.42511  -0.57697  0.06029  -1.24998  -0.81903  -0.62580  -0.68699  -0.72792  0.15327  -0.50244

 Columns 6993 through 7008:

  -0.42134  -0.29590  -1.09555  -0.98025  -0.50922  -0.97233  -0.44378  -0.83178  -0.14364  -0.72839  -0.29339  -0.41307  -0.53823  -0.25990  -0.29108  -0.69628

 Columns 7009 through 7024:

  -1.34485  -0.25942  -0.75845  -1.08108  -0.96574  -0.90687  -0.80157  -1.15350  -0.31888  -0.94472  -1.41447  -0.14496  -0.24759  -0.84137  -0.70995  -1.07463

 Columns 7025 through 7040:

  -0.30788  -0.80559  -0.95918  -1.20790  -1.30125  -0.48751  -0.60373  -0.07448  -0.73171  -0.45934  -0.76234  -0.52682  -1.21655  -0.89790  -0.86983  -0.46466

 Columns 7041 through 7056:

  -0.69305  -0.41044  0.12192  -0.42560  -0.05491  -1.23846  -0.51227  -0.68213  -0.78624  -0.71345  -0.04603  -0.84502  -0.14164  -0.38873  -1.06829  -0.73111

 Columns 7057 through 7072:

  -0.25422  -0.45844  -0.37026  -0.88424  -0.55258  -0.47983  -0.67162  -0.64081  -1.02749  -0.92722  -0.46196  -1.39984  -0.46552  -0.01021  -0.21077  -0.77820

 Columns 7073 through 7088:

  0.20356  -0.37459  -0.85457  -0.82647  -0.87281  -0.58237  -0.64439  -0.94613  -0.46035  -0.84058  -0.12208  -0.21278  -1.00124  -0.53204  -0.39257  -0.34770

 Columns 7089 through 7104:

  -0.78631  -0.58049  -0.39527  -0.96445  -0.40588  -0.63943  -0.38690  -0.77389  -0.24224  -0.29472  -0.90480  -0.98385  -0.86746  -0.39915  -0.50634  -0.37050

 Columns 7105 through 7120:

  -0.09339  -0.40321  -0.11504  -0.78641  -0.35966  -0.58591  -0.84101  -0.79381  -0.99421  -0.60611  -0.63786  -0.32237  -0.63354  -0.25603  -0.97736  -0.32587

 Columns 7121 through 7136:

  -0.93546  -0.65783  -0.33879  -0.90810  -0.97828  -0.87772  -0.72370  -1.14322  -0.58145  -0.78482  -1.01512  -0.61101  -0.83072  -0.64100  -0.66560  -0.71648

 Columns 7137 through 7152:

  -0.54938  -0.60189  -0.86603  -0.89055  -0.84195  -0.99597  -0.85499  -0.13593  -1.25412  -0.53838  -0.06150  -1.00067  -0.19397  -0.73945  -0.65464  -0.70192

 Columns 7153 through 7168:

  -0.17620  -0.44614  -0.56576  -0.63780  -0.32572  -0.72238  -0.12461  -0.87411  -0.36633  -0.92032  -0.38452  -0.90480  -0.75915  -0.42729  -0.62692  -0.60422

 Columns 7169 through 7184:

  -0.71131  -0.63084  -0.65111  -0.49770  -0.44347  -0.66751  -0.51864  -0.55359  -0.53281  -0.53258  -0.31778  -0.53435  -0.68418  -0.80073  -0.47096  -0.93549

 Columns 7185 through 7200:

  -0.55141  -0.55908  -0.49767  -0.29802  -1.11273  -0.77530  -0.27691  -0.10171  -0.55587  -1.01169  -0.39218  -0.54801  -0.86280  -0.70338  -0.49620  -0.38147

 Columns 7201 through 7216:

  -0.94838  -0.94120  -0.14480  -0.52530  -0.83104  -0.77069  -1.45162  -0.52975  -0.70053  -0.56946  -0.84186  -0.48578  -0.24156  -0.89790  0.21742  -0.38257

 Columns 7217 through 7232:

  -0.21734  -0.68808  -0.88479  -0.83168  -0.55308  -0.80864  -0.41517  -0.19550  -0.46386  -0.21554  -0.51816  -0.21360  -0.09386  -0.09662  -0.71865  -0.81314

 Columns 7233 through 7248:

  -0.98210  -0.78392  -0.54056  -0.65033  -0.61235  -0.39137  -0.42046  -0.53796  -0.36040  -0.79036  -0.58658  -0.45051  -0.39321  -1.14962  -1.19217  -0.49186

 Columns 7249 through 7264:

  -0.72469  -0.14721  -0.72192  -0.87469  -0.62996  -0.65241  -0.94022  0.16458  -0.49829  -0.57924  -0.97846  -0.20223  -0.58001  -0.43802  -0.79447  0.06497

 Columns 7265 through 7280:

  -0.91969  -0.59093  0.08729  -0.84908  -0.41740  -0.74191  -0.39852  -1.12627  -0.65781  -0.44927  -0.97054  -1.27372  -0.76370  -0.63471  -0.30652  0.10601

 Columns 7281 through 7296:

  -0.32275  -0.10655  -1.03215  -0.69488  -0.65241  -0.47007  -0.01482  -0.73628  -0.80556  -0.55182  -0.12353  -0.46549  -0.67712  -0.52069  -0.31662  -0.92095

 Columns 7297 through 7312:

  -0.48021  -0.20067  -1.07019  -0.71770  -0.92904  -0.68413  -1.49752  -0.82563  -0.93752  -0.50004  -0.86745  -0.53302  -0.55552  -0.03768  -0.45988  -0.78100

 Columns 7313 through 7328:

  -0.66120  -0.76817  -1.03102  -0.93874  -0.43659  -1.01122  -0.60361  -0.89873  -0.38230  -0.57029  -1.17326  -0.77472  -0.55210  -0.68766  -0.72839  -0.44553

 Columns 7329 through 7344:

  -0.49877  0.07458  -0.74479  -0.27019  -0.56421  -0.83615  -1.04546  -0.95123  -0.18249  -0.81801  -0.35604  -0.50118  -1.06630  -0.65117  -1.01733  -0.74123

 Columns 7345 through 7360:

  -0.68322  -0.92077  -0.51774  -0.22916  -1.06588  -0.87536  -0.88588  -0.78932  -0.42389  -0.47341  -0.55001  -0.95818  -0.61505  -0.96101  -0.65423  -0.70624

 Columns 7361 through 7376:

  -0.10349  -0.80078  -0.44356  -0.13411  -0.48374  -0.77216  -0.51113  -0.65852  -0.74781  -0.59563  -1.00658  -0.33499  -0.40064  -0.49767  -0.67830  -0.33006

 Columns 7377 through 7392:

  -0.53410  -0.67809  -0.50891  -0.12838  -0.54182  -0.59562  -0.75028  -0.62246  -0.26893  -0.85059  -0.03512  -0.94518  -0.46818  -0.65574  -0.49133  -1.24166

 Columns 7393 through 7408:

  -0.39196  -0.03922  -0.12214  -1.12054  -0.72059  -1.27163  -0.77628  -0.99464  -0.87566  -0.54560  -0.60283  -0.49316  -0.62504  0.11079  -0.51675  -0.39625

 Columns 7409 through 7424:

  -0.21468  -0.61356  -0.53238  -0.56780  -1.14171  -0.79903  -0.72250  -0.29579  -0.62167  -0.16234  -0.58672  -0.26365  -0.49205  -0.80520  -0.90561  -0.44982

 Columns 7425 through 7440:

  -0.35556  -0.89749  -0.77892  -0.69373  -0.80039  -0.62971  -0.32980  -0.57661  -0.06802  -0.80765  -0.70916  -0.57978  -0.79256  -0.33239  -0.26694  -1.04141

 Columns 7441 through 7456:

  -0.49275  -0.53869  -0.12197  -0.52833  -0.65044  -0.86121  -0.53608  -1.21617  -0.33060  -0.86618  -0.96308  -0.53171  -0.42748  -0.47161  -0.54669  -0.74194

 Columns 7457 through 7472:

  -0.85730  -0.70491  -1.15734  -0.38334  -0.48589  -0.66686  -1.14085  -0.57014  -0.61100  -0.73807  -0.32385  -1.07288  -0.64444  -1.02338  -1.17514  -0.37489

 Columns 7473 through 7488:

  -0.51727  -0.43892  -0.63978  -0.71333  -0.65777  0.18875  -0.74456  -0.46877  -0.77556  -0.71499  -0.37742  -1.08118  -0.28710  -0.64395  -0.78973  -0.57414

 Columns 7489 through 7504:

  -0.42077  -0.60127  -0.34354  -0.88276  -0.79439  -0.58922  -1.02594  -0.66460  -0.01537  -0.53082  -0.19688  -0.59171  -0.76684  -0.74072  -0.93617  -0.15566

 Columns 7505 through 7520:

  -0.22317  -0.65886  -0.55954  -0.98570  -1.24646  -0.79801  -0.05681  -1.11389  0.23031  -0.62271  -0.95849  -0.84828  -0.81444  -0.38666  -0.87937  -0.14278

 Columns 7521 through 7536:

  -0.84576  -0.27099  -0.47588  -1.00322  -0.21885  -0.32402  -0.81540  0.01180  -0.27059  -0.14606  -0.78394  -0.83984  -0.48012  -0.11306  -0.42528  -0.97506

 Columns 7537 through 7552:

  -0.90394  -0.46212  0.13200  -0.58060  -0.89190  -0.02969  -0.41807  -0.49614  -1.18017  -0.41109  -0.51981  -0.86807  -0.62548  -0.84531  -0.31476  -0.49250

 Columns 7553 through 7568:

  -0.40511  -0.27966  -0.64646  -0.52370  -0.13485  -0.17933  -0.43736  -0.60219  -0.63887  -1.10680  -0.48210  -0.19579  -0.54118  -0.57987  -0.50452  -0.50003

 Columns 7569 through 7584:

  -0.78319  -0.55214  -1.16555  -1.10355  -0.73374  -0.77352  -0.31756  -0.67684  -0.81810  -0.41476  -0.29242  -0.46018  -1.08857  -0.58631  -0.22376  -0.56382

 Columns 7585 through 7600:

  -0.86778  -1.29423  -0.38034  -0.12337  -0.66204  -0.38086  -0.54177  -1.25383  -0.91225  -0.66232  -0.46702  -0.32025  -0.97227  -0.54446  -0.71673  -0.73558

 Columns 7601 through 7616:

  -0.75796  -0.56974  -0.58563  -0.30465  -0.82316  -0.74678  -0.18992  -0.50236  -0.60768  -0.32443  -0.80456  -0.37814  -0.14180  -0.41672  -0.09912  -0.73620

 Columns 7617 through 7632:

  -0.60938  -0.71676  -0.32376  -0.85342  -0.56966  -0.54410  -0.78286  -1.45668  -0.26379  -1.14967  -0.75506  -0.63286  -0.12319  -0.65787  -0.72242  -0.78770

 Columns 7633 through 7648:

  -0.88997  -0.64423  -0.92938  -0.73948  -0.65959  -0.52605  -0.06944  -0.57701  -0.57023  -0.70687  -0.64893  -0.19674  -1.04149  -0.03900  -0.87077  -1.27133

 Columns 7649 through 7664:

  -0.69325  -0.35689  -0.52096  -0.43617  -0.66866  -0.35711  -0.46556  -0.12075  -0.42867  -0.64094  -0.55636  -0.21292  -0.85565  -0.51939  -1.15788  -0.36796

 Columns 7665 through 7680:

  -0.66684  -0.51292  -0.21291  -0.51794  -1.43976  -1.01379  -1.10087  -0.62308  -0.12446  -0.57137  -0.87942  -0.92794  -0.93219  -0.42427  -0.87693  -0.07150

 Columns 7681 through 7696:

  -0.33708  -0.50229  -1.10621  -1.48959  -0.30562  -0.24818  -0.23407  -0.87789  -0.40074  -0.99994  -0.61181  -0.08883  -0.61100  -0.89292  -1.10852  -0.21781

 Columns 7697 through 7712:

  -0.48114  -1.83153  -0.48675  -1.01437  -0.60073  -0.54825  -0.61189  -0.51345  -0.71616  -0.45981  -0.32487  -0.83670  -0.84107  -0.66270  -0.78462  -0.42789

 Columns 7713 through 7728:

  -0.81040  -0.69094  -0.79935  -0.33689  -0.29897  -0.88459  -0.50111  -0.93672  -0.31534  -0.15928  -0.57712  -0.45804  -0.69278  -1.21473  -0.68923  -0.79025

 Columns 7729 through 7744:

  -0.63866  -0.95921  -0.55084  -0.48172  -0.82457  -0.28791  -0.38278  -1.42248  -0.90713  -0.69230  -0.40078  -0.59673  -0.46881  -0.92389  -0.38478  -0.59922

 Columns 7745 through 7760:

  -1.05094  -0.48656  -0.64649  -0.18588  -0.32020  -0.53283  -0.67592  -0.34347  0.09133  -0.65316  -0.06277  -0.30362  0.16015  -0.16637  -0.77597  -1.07075

 Columns 7761 through 7776:

  -0.97880  -0.14626  -0.75914  -0.53456  -0.04655  -0.47177  -0.61076  -0.92425  -0.67794  -0.74833  -0.40611  -0.45662  -0.39452  -0.17629  -0.57306  -0.53392

 Columns 7777 through 7792:

  -0.58284  -0.24208  -1.03733  -0.76694  -0.55002  -0.94153  0.03192  -0.48381  -0.78137  -0.22868  -0.79410  -0.33659  -1.17174  -0.61497  -0.57628  -0.65653

 Columns 7793 through 7808:

  -0.78106  -0.23794  -0.48006  -1.08819  -0.69574  -1.41543  -0.45877  0.00211  -0.69603  -0.63653  -0.51540  -0.80182  -1.13398  -0.35602  -0.56440  -0.46512

 Columns 7809 through 7824:

  -0.99677  -0.92402  -0.40474  -0.48515  -0.60356  -1.02207  -0.99450  -0.46770  -0.26375  -0.42325  -0.39626  -0.75087  -0.35207  -0.66770  -0.47510  -0.82824

 Columns 7825 through 7840:

  -0.63166  -0.01516  -0.99275  -0.54415  -0.75259  -1.00801  -0.59561  -0.91060  -1.17586  -0.49458  -0.72116  -0.45156  -0.94480  -0.37847  0.01170  -0.43467

 Columns 7841 through 7856:

  -0.38349  -0.35072  -0.45529  -0.37784  -0.76027  -0.16096  -0.20047  -1.03675  -0.62688  -0.34890  -0.63483  -0.39329  -0.83651  -0.84095  -0.27625  0.00260

 Columns 7857 through 7872:

  -0.49700  -0.10669  -0.79759  -1.47421  -0.60897  -0.16177  0.11980  -0.69384  -0.74935  -0.71937  -0.65625  -0.53094  -0.53154  -0.08970  -0.25773  -0.81751

 Columns 7873 through 7888:

  -0.59790  -0.41074  -1.16203  -0.29896  -0.24202  -0.88078  -0.81528  -0.59453  -0.70425  -0.25117  -1.02440  -0.52251  -0.77765  -1.15855  -0.76552  -1.08451

 Columns 7889 through 7904:

  -0.37132  -0.56296  -0.52710  -0.56239  -0.39326  -0.47452  -0.70344  -1.26341  -0.25686  -0.82852  -0.69564  -0.67244  -0.43907  -0.78954  -0.56725  -0.46354

 Columns 7905 through 7920:

  -0.28329  -0.53011  -0.99168  -1.06105  -0.33014  -0.80191  -0.18533  -1.45311  -1.17398  -0.18320  -0.58575  -0.67545  -0.86628  -0.54782  -0.41359  -0.37551

 Columns 7921 through 7936:

  -0.69143  -0.80356  -0.75616  -0.32144  -0.46699  -0.59604  -0.12075  -0.86675  -1.26173  -0.41048  -0.95740  -0.77775  -0.25090  -0.43449  -0.76779  -0.30511

 Columns 7937 through 7952:

  -0.96748  -0.58347  -0.85380  -0.41583  -0.87963  -1.17865  0.15154  -0.61481  -0.59745  -0.54486  -0.65129  -0.73746  -0.71000  -0.47975  -0.06690  -0.18562

 Columns 7953 through 7968:

  -0.73092  -0.11024  -0.53349  -0.57979  -0.38814  0.07542  -0.17919  -0.46399  -1.26041  -0.86696  -0.68953  -0.66404  -0.86666  -1.00924  -0.71423  -0.62957

 Columns 7969 through 7984:

  -0.77344  -0.58345  -0.68045  -0.15341  -0.51990  -0.58999  -0.84740  -0.58946  -0.23139  -0.65832  -0.98674  -0.96191  -0.74579  -0.81244  -0.21311  -0.86185

 Columns 7985 through 8000:

  -0.89295  -0.50459  -0.72167  -0.87816  -0.58894  -0.28563  -0.56515  -0.00277  -0.50302  0.04069  -0.35578  -0.13149  -1.08326  -0.26569  -0.54586  -0.78618

 Columns 8001 through 8016:

  -0.59490  -0.60441  -0.87026  -0.62896  -0.81655  -0.83797  -0.62008  -0.31843  -0.01697  -0.67267  -0.15789  -1.00886  -1.32880  -0.50210  -0.87140  -0.36979

 Columns 8017 through 8032:

  -0.80041  -0.44020  -0.69310  -0.56396  -0.44738  -0.47154  -0.87054  -0.77565  -1.35948  -0.58016  -0.36556  -0.36526  -0.60175  -0.66278  -0.90869  -0.54990

 Columns 8033 through 8048:

  -0.29550  -0.72852  -0.46391  -0.39656  -0.03177  -0.19543  -0.38631  -0.79549  -1.00933  -0.33151  -0.88409  -0.53219  -0.48367  -0.68486  -0.98766  -0.31740

 Columns 8049 through 8064:

  -0.16243  -0.49048  -0.80572  -0.73287  -0.86048  -0.56175  -0.55175  -0.95921  -0.45986  -0.49615  -0.66831  -0.62005  -0.62365  -0.62146  -0.79396  -0.29028

 Columns 8065 through 8080:

  -0.37347  -0.36733  -0.44159  -0.63474  -0.38008  -0.78821  -0.74091  -0.81407  -0.70122  -0.68000  -0.74461  0.18937  -0.04876  -0.50905  -0.56493  -0.25726

 Columns 8081 through 8096:

  -0.75362  -0.69499  -0.82719  -0.76001  -0.66412  -1.08173  -0.52592  -0.93060  -0.52767  -0.31057  -0.50813  -0.62429  -0.20403  -0.73478  0.04762  -0.28110

 Columns 8097 through 8112:

  -0.28293  -0.54595  -0.07433  -0.24753  -0.66274  -0.61740  -0.86241  -0.25785  -0.59262  -0.59643  -0.68784  -1.07443  -0.72633  -0.06900  -0.45285  -1.14404

 Columns 8113 through 8128:

  0.00807  0.02529  -1.29615  -0.48091  -0.56437  -0.25028  -0.77489  -0.25196  -0.34888  -0.41689  -0.04310  -0.58672  -0.36198  -0.97577  -0.33227  -0.87602

 Columns 8129 through 8144:

  -0.83025  -0.76996  -0.63745  -1.18292  -0.77312  -0.82463  -0.40466  -0.67502  -0.48546  -0.74873  0.11734  -0.50940  -0.87358  -0.99085  -1.12404  -1.15820

 Columns 8145 through 8160:

  -1.31531  -0.20931  -0.99688  -0.92162  -1.28197  -0.33979  -0.57345  -0.68657  -0.16940  -0.84512  -0.84688  -0.79672  -0.34170  -0.44465  -0.94097  -0.26930

 Columns 8161 through 8176:

  -0.78901  -0.56620  -0.53252  -0.38259  -0.63066  -0.72995  -0.79887  -0.87758  -0.89984  -0.06989  -1.13058  -0.67377  -0.63904  -0.68735  -0.91315  -0.57973

 Columns 8177 through 8192:

  -0.74191  -0.59847  -0.42169  -0.63649  -0.19091  -0.42370  -0.36740  -0.69382  -0.44754  -0.53717  -0.45071  -0.26343  -1.26902  -0.49694  -0.47537  -0.33254

 Columns 8193 through 8208:

  -0.53609  -0.78371  -0.77813  -0.16365  -0.73441  -1.20452  -0.62107  -1.28824  -0.19841  -1.18451  -0.50078  -0.27942  -0.29842  -0.27985  -0.40185  -0.00397

 Columns 8209 through 8224:

  -0.57596  -0.12470  -1.19439  -0.44672  -0.01938  -1.28552  -0.33601  -1.02312  -1.13492  -0.68704  -1.13402  -0.27758  -0.83039  -0.32146  -0.45819  -0.14582

 Columns 8225 through 8240:

  -0.47254  -0.64635  -0.73262  -0.75321  -0.30846  -0.65828  -0.61476  -0.19911  -0.19632  -0.35357  -0.79328  -0.48374  -0.21631  -0.97898  -0.43874  -0.09342

 Columns 8241 through 8256:

  -1.25091  -0.80910  -0.58064  -0.66387  -0.92519  -1.05922  -0.93654  -0.61298  -1.03741  -0.67679  -0.61315  -0.42064  -0.23959  -0.05000  -0.26179  -0.25776

 Columns 8257 through 8272:

  -0.74751  -0.49750  -0.81821  -0.59769  -0.87813  -0.48676  -0.15250  -0.56138  -0.59221  -0.11705  -0.43051  -0.69189  -0.41591  0.34815  -0.46900  -0.80567

 Columns 8273 through 8288:

  -0.51243  -0.00437  0.14319  -0.90511  -1.23084  -0.63753  -0.11121  -0.86343  -0.87329  -0.67597  -0.84898  -1.54531  -0.25019  -0.37401  -0.81671  -0.47787

 Columns 8289 through 8304:

  -0.96590  -0.32546  0.04875  -1.02706  -1.02607  -0.99219  -0.72568  -0.59635  -0.47190  -0.44670  -0.62593  -0.64516  -0.69022  -0.54688  -0.41776  -0.42941

 Columns 8305 through 8320:

  -0.37283  -0.39082  -0.62380  -0.15389  -0.74996  -0.46746  -0.67375  -0.67589  -0.73847  -0.76419  -0.56846  -1.05364  -0.34261  -0.37586  -0.67126  -0.32969

 Columns 8321 through 8336:

  -0.46327  -0.61022  -0.49612  -0.77039  0.10790  -0.67746  -0.51945  -0.61519  -0.01782  -0.26445  -0.41308  -1.04276  -0.85414  -0.26631  -1.15325  -0.38775

 Columns 8337 through 8352:

  -0.58820  -1.23918  -0.56422  -0.58361  -0.62202  -0.40765  -0.68355  -0.69426  -0.58154  -1.26546  -0.85630  -0.46103  -0.76865  -0.54804  0.05017  0.12713

 Columns 8353 through 8368:

  -0.77716  -0.78603  -0.60518  -0.58562  -0.57202  -0.06554  -1.00447  -0.47401  -0.53350  -0.62114  -0.98569  -0.27586  -1.34899  -0.42445  -0.16179  -0.81614

 Columns 8369 through 8384:

  -0.81805  -0.78380  -0.24639  -0.27506  -0.13964  -0.58712  -0.73021  -0.61558  -0.56156  -0.68500  -0.23075  -0.52079  -0.40218  -0.69830  -0.61419  -0.39626

 Columns 8385 through 8400:

  -0.45444  -0.56198  -0.65352  -1.06115  -1.14769  -0.57906  -0.41022  -1.08286  -0.22124  -0.38727  -1.27420  -0.76616  -0.39827  -0.65956  -1.30569  -0.61841

 Columns 8401 through 8416:

  -0.72720  -0.58334  -0.95101  -0.65673  -0.14081  -0.62202  -0.72244  -0.54042  -0.86604  -0.30795  -0.01986  -0.89422  -0.67689  -1.02803  -0.62602  -0.25795

 Columns 8417 through 8432:

  -0.93683  -0.41227  -0.47746  -0.27940  -0.17360  -0.69624  -0.80038  -0.65772  -0.57091  -0.37527  -0.30416  -0.55253  -0.78730  -0.09589  -0.55580  -0.61477

 Columns 8433 through 8448:

  -0.92937  0.00644  -0.53760  -1.04299  -0.70742  -0.40339  -0.37011  -0.52094  -0.51161  -0.97791  -0.74237  -0.53955  -0.59761  -0.85804  -1.01667  -0.41047

 Columns 8449 through 8464:

  -0.44036  -0.77493  -0.59243  -0.49500  -0.89261  -0.87129  -1.01123  -0.69640  -0.87374  -0.76982  -0.53998  -0.44684  -0.63158  -1.18248  -0.18532  -0.54737

 Columns 8465 through 8480:

  -0.16529  -0.52705  -0.62860  -0.27661  -0.57867  -0.80744  -0.85438  -0.86955  -0.93688  -0.87502  -0.83048  -0.48208  -0.39987  -0.09735  -0.45565  -0.54513

 Columns 8481 through 8496:

  -0.52135  -1.08397  -1.01413  -0.19312  -0.90901  -0.78159  -0.35033  -0.76536  -0.72137  -0.46005  -0.65962  -0.49022  -0.30385  -0.26222  -0.52362  -0.57250

 Columns 8497 through 8512:

  -0.77861  -0.63061  -1.41858  -0.15643  -0.69951  -0.63378  -0.44093  -1.50437  -0.24257  -0.58745  -0.37657  -0.27197  -0.20999  -0.15815  -0.47715  -0.90912

 Columns 8513 through 8528:

  -1.04400  -1.02036  -0.29042  -0.80730  -0.28236  -0.97996  -0.47492  -0.43060  -0.67513  -0.91869  -0.07707  -1.33003  -0.24941  -0.98058  -0.13165  -0.53227

 Columns 8529 through 8544:

  -0.36651  -1.24878  -0.82305  -0.67874  -0.60709  -0.61903  -0.69942  -0.79843  -0.98572  -0.86639  -0.51810  -0.20496  -0.46011  -0.67849  -0.89235  -0.08733

 Columns 8545 through 8560:

  -0.30987  -0.49074  -0.84516  -1.01974  -0.62572  -0.35485  -0.82216  -0.79570  -0.55722  -0.73491  -0.36248  -0.27461  -0.34222  -0.25144  -0.86083  -0.52901

 Columns 8561 through 8576:

  -0.59725  -0.67252  -0.57706  -0.70300  -0.49769  -0.13919  -0.84341  -0.32388  -0.69488  -0.41185  -0.30887  -0.32946  -1.33583  -0.33527  -0.57144  -0.49454

 Columns 8577 through 8592:

  -0.63140  -0.87069  -0.53107  -0.61871  -0.37461  -0.29929  0.14273  -0.65606  -0.81939  -0.62509  -0.73998  0.05375  0.01161  -0.71969  -0.91068  -1.13530

 Columns 8593 through 8608:

  -0.83495  -0.44606  -0.30402  -0.43092  -0.53817  -0.23133  -0.07881  -0.68857  -0.65064  -0.51666  -0.05744  -0.11502  -1.05031  -0.55925  -1.11764  -1.55770

 Columns 8609 through 8624:

  -0.63889  -0.33307  0.02336  -0.22120  -0.23061  -0.87378  -0.68062  -0.64756  -0.45050  -0.09637  -0.44419  -0.44738  -1.06851  -0.15033  -0.44673  -0.08053

 Columns 8625 through 8640:

  -0.92077  -0.97560  -0.69354  -0.79023  -0.45858  -0.62854  -0.29361  -0.51003  -0.52114  -0.73695  -0.74435  -0.64845  -0.42394  -0.70018  -0.76099  -1.03925

 Columns 8641 through 8656:

  -0.43000  -0.65031  -0.52752  -0.84997  -0.73106  -0.52804  -0.38649  -0.30232  -0.99739  -0.50381  0.00034  -1.14971  -0.37678  -0.26327  -0.27012  -0.43155

 Columns 8657 through 8672:

  -0.97242  -1.14634  -0.47379  -0.14182  -0.18950  -0.06103  -0.98779  -1.25246  -0.35368  -0.57181  -0.40845  -1.07771  -0.40179  -0.22231  -0.38531  -0.86792

 Columns 8673 through 8688:

  -0.86875  -0.97120  -0.30869  -1.02499  -0.85011  -0.84401  -0.79331  -0.33987  -0.77775  -0.66368  -1.18538  -0.73784  -0.51339  -1.03844  -0.75928  -0.14553

 Columns 8689 through 8704:

  -0.25269  -0.28897  -0.94273  -0.32042  -1.52024  -0.54523  -0.44012  -0.87201  -0.58408  -0.24185  -0.69777  -0.65030  -1.32183  -1.09394  -0.91028  -0.82724

 Columns 8705 through 8720:

  -0.72524  -0.58150  -0.79646  -1.03048  -0.65517  -0.09588  -0.64105  -0.53772  -0.39197  -0.59125  -0.51682  -0.28269  -0.21725  -0.88692  -0.56738  -0.23223

 Columns 8721 through 8736:

  -0.50539  -1.07534  -0.67203  -0.37457  -0.01941  -0.69499  -0.83418  -0.46958  -0.43934  -0.59765  -0.40802  -0.64331  -0.65307  -0.61093  -0.17226  -0.86544

 Columns 8737 through 8752:

  -0.60975  0.03537  -0.85951  0.06206  -0.81134  -0.79446  -0.65133  -1.31424  -1.01084  -0.55440  -1.00022  -0.60261  -0.84976  -0.47454  -0.10603  -0.94927

 Columns 8753 through 8768:

  -1.43145  -0.73117  -0.68036  -0.96442  -0.44044  -0.37196  -0.68073  -0.69099  -0.75904  -0.60412  -0.89197  -0.91750  -0.92668  -0.75309  -0.40896  -0.65509

 Columns 8769 through 8784:

  -0.20509  -1.05148  0.02325  -0.19199  -0.50501  -0.77583  -0.50647  -1.01447  -0.39511  -0.64581  -0.10200  -0.39419  -0.41909  -0.20918  -0.79785  -0.90678

 Columns 8785 through 8800:

  -0.91909  -0.88958  -0.46605  -0.47274  -0.45289  -0.28014  -0.91683  -0.60352  -0.91538  -0.47338  -0.69363  -0.59757  -0.64049  -0.94324  -0.29793  -0.70475

 Columns 8801 through 8816:

  -1.30746  -0.65465  -0.59388  -0.25049  -0.35980  -0.76675  -0.32422  -0.77440  -0.86485  -0.77867  -0.32071  -0.14009  -1.09477  -0.67848  -0.93717  -0.32993

 Columns 8817 through 8832:

  -0.26012  -0.37693  -0.37581  -0.46981  -0.72004  -0.94504  -0.50286  -0.53353  -0.71190  -0.62631  -0.60598  -0.80596  -0.49756  -0.75413  -0.13493  -0.27474

 Columns 8833 through 8848:

  -0.96375  -0.53712  -0.68701  -0.65786  -0.42561  -0.59192  -1.06211  -1.16567  -0.66278  -0.44668  -0.07187  -0.53799  -0.24678  -1.19390  -0.48223  -0.39196

 Columns 8849 through 8864:

  -0.83632  -0.96076  0.15977  -0.53590  -0.72075  -0.69261  -0.53571  -1.12322  -0.57637  -0.93745  -0.69800  -0.92154  -0.46967  -0.52837  -0.75221  -1.01500

 Columns 8865 through 8880:

  -0.42134  -0.28458  -0.77241  -0.96086  -0.84321  -0.57595  -0.60344  -1.09570  -0.71072  -1.02063  -0.47048  -0.48536  -0.59845  0.52251  -0.34221  -0.26152

 Columns 8881 through 8896:

  -0.57539  -0.67909  -1.15107  -0.68828  -0.52148  -0.75020  -0.60107  -0.48350  -0.96014  -0.48927  -0.63722  -0.68175  -0.22224  -0.76399  -0.71914  -0.02594

 Columns 8897 through 8912:

  -0.70637  -0.80717  -0.78424  -0.62824  -0.88811  -1.00702  -0.71973  -0.54181  -0.39492  -0.67236  -0.22176  -0.77584  -0.93039  -0.74189  -0.79910  -0.58328

 Columns 8913 through 8928:

  -0.75619  -0.48792  -0.45698  -0.66747  -1.14756  -0.54970  -0.98695  -0.11573  -0.45000  -0.14937  -0.76792  0.07872  -0.19175  -1.09932  -0.33512  -0.30826

 Columns 8929 through 8944:

  -0.72110  -0.50537  -0.55626  -0.68350  -0.14776  -1.14439  -0.70320  -0.65784  -1.41760  -0.70913  -0.73251  -0.33696  -0.84390  -0.88396  -0.37514  -0.42742

 Columns 8945 through 8960:

  -0.29430  -0.47682  -1.32557  -0.54261  -0.34275  -0.68374  -0.77415  -0.60680  -0.75565  -0.45593  -0.46915  -0.85035  -0.52420  -0.59410  -0.81570  -0.81656

 Columns 8961 through 8976:

  -0.90840  -0.56239  -0.26658  -0.33599  -0.59873  -0.50812  -0.78143  -0.81213  -0.38001  -0.46997  -0.39873  -0.65705  -0.70976  -0.92686  -0.66889  -0.59617

 Columns 8977 through 8992:

  -0.42889  -0.85829  -0.74577  -0.20140  0.01909  -0.47586  -0.45283  -0.45837  -0.79823  -0.78228  -0.73299  -0.52186  -0.31106  0.04450  -1.37201  0.30060

 Columns 8993 through 9008:

  -0.49745  -0.57596  -1.01987  -0.22253  -0.60961  -0.93272  -1.50859  -0.46985  -0.98559  -0.96874  -0.36227  -0.06794  -1.16143  -0.50904  -0.75783  -0.53419

 Columns 9009 through 9024:

  -1.09626  -0.49225  -0.57718  -1.20441  -1.23656  -0.56102  0.06877  -0.25093  -0.32247  -0.45494  -0.49436  -0.44541  -0.38168  -0.85027  -0.70666  -0.31842

 Columns 9025 through 9040:

  -0.04806  -0.88658  -0.53863  -0.21857  -0.41277  -0.61435  -0.87935  -0.07697  -0.24276  -0.94435  -0.22978  -0.69214  -0.39529  -0.47903  -0.50199  -0.46468

 Columns 9041 through 9056:

  -0.54497  -0.67694  -0.32664  -0.13539  -0.62517  -0.82094  -0.64144  -0.46441  -0.52169  -1.13883  -0.18857  -0.71035  -0.88273  -0.83368  -0.63473  -0.22596

 Columns 9057 through 9072:

  -0.35836  -0.92140  -1.02145  -0.88259  -0.61373  -0.60592  -0.51961  -0.49105  -0.38384  -0.32644  0.04409  -0.31954  -0.45444  -0.70127  -1.30140  -0.26114

 Columns 9073 through 9088:

  -0.59052  -0.58372  -1.02122  -0.48637  -0.86575  -0.50235  -0.18744  -0.95480  -1.38740  -0.14929  -0.60071  -0.63767  -0.42473  -0.85780  -0.53847  -0.29534

 Columns 9089 through 9104:

  -0.47200  -0.52954  -0.11357  -0.16021  -0.21196  -0.72153  -0.91615  -0.13553  -0.87897  -0.84642  -0.52079  -0.20893  -0.64610  -0.57320  -0.62235  -0.46751

 Columns 9105 through 9120:

  -0.54636  -0.77321  -0.95085  -0.20192  -0.27638  -0.40573  -0.33511  -0.91941  0.12470  -0.69726  -0.06106  -0.53405  -0.45068  -0.46662  -1.12420  -0.65738

 Columns 9121 through 9136:

  -1.07443  -0.54967  -0.65223  -0.89150  -0.36808  -1.12202  -0.66981  -0.87557  -0.06005  -0.79999  -0.90882  -0.62312  -0.03955  0.23464  -1.24005  -0.50394

 Columns 9137 through 9152:

  -1.15853  -0.92234  -1.08796  -0.96833  -0.49633  -0.99333  -0.76226  -1.24443  -0.84810  -0.39871  -0.73644  -0.99395  -0.30783  -0.29770  -0.32499  -0.20635

 Columns 9153 through 9168:

  -0.88932  -0.66717  -0.14645  -0.34590  -0.65418  -0.63592  -0.24994  -0.70259  -0.47041  -0.61551  -1.05710  -1.12380  -0.90498  -0.53041  -0.78491  -1.05770

 Columns 9169 through 9184:

  -0.77777  -0.25550  -0.16459  -0.41914  -0.56611  -0.71504  -0.59677  -0.75383  0.00215  -0.26038  -0.81073  -0.46606  -0.62954  -0.84565  -0.42103  -0.61355

 Columns 9185 through 9200:

  -0.80216  -0.63308  -1.13568  -0.34541  -0.66772  -0.27677  -0.26752  -0.41640  -0.07289  -0.25358  -0.41645  -0.93833  -0.43566  -0.47933  -0.88985  -0.23891

 Columns 9201 through 9216:

  -0.94041  -0.66844  -0.78081  -0.82473  -0.44975  -0.38318  -0.71426  -1.01789  -0.25432  -0.67868  -0.73664  -0.55232  -0.52584  -0.50894  -0.48854  -0.23660

 Columns 9217 through 9232:

  -0.86180  -0.82090  -0.54338  -0.92240  -0.61432  -1.14869  -1.04823  -0.38489  -0.38344  -0.52625  -0.49272  -0.80698  -0.01588  -0.31075  -0.23599  -0.55195

 Columns 9233 through 9248:

  -0.46908  -0.95450  -0.59048  -0.35683  -0.67796  -0.21309  -0.74761  -0.56327  -0.18813  -0.60724  -0.94077  -0.41558  -0.90262  -0.77813  -0.65484  -0.06703

 Columns 9249 through 9264:

  -0.96594  -0.36687  -0.24793  -0.51538  -0.41113  -0.41230  -0.41843  -0.65032  -0.41432  -0.12971  -0.72753  -0.94387  -0.46521  -0.63169  -0.35168  0.00290

 Columns 9265 through 9280:

  -1.03987  -0.67617  -0.47085  -0.44282  -0.84225  -0.24566  -0.61740  -0.96334  -1.37751  -0.65287  -0.43681  -0.83832  -0.67156  -0.70930  -0.70649  -0.38623

 Columns 9281 through 9296:

  -0.03978  -0.25902  -0.51624  -0.50735  -0.60595  -0.76203  -0.93027  0.08674  -1.01726  -0.52826  -0.26386  -1.26345  -0.74450  -0.73630  -0.83346  -0.89308

 Columns 9297 through 9312:

  -0.72851  -0.40149  -0.49301  -0.79886  0.03464  -0.51966  -0.63410  -0.48465  -0.54598  -0.34318  -0.74934  -0.43255  -0.69861  -0.46029  -0.41691  -0.44329

 Columns 9313 through 9328:

  -0.91406  -0.31662  -0.91778  -0.74224  -0.64476  -0.85154  -0.58344  -0.69489  -0.02385  -0.82816  -0.32356  -0.26632  -0.09568  -0.37454  -0.42726  -1.53270

 Columns 9329 through 9344:

  -0.97065  -0.25505  -0.80041  -0.64970  -0.19561  -0.10256  -0.48753  -1.06542  -0.37992  -0.66483  -0.57936  -0.38692  -0.49291  -0.23282  -1.08877  -0.14337

 Columns 9345 through 9360:

  -0.48970  -0.41004  -0.38866  -1.15671  -0.34349  -0.73979  -0.61594  -0.90891  -0.53648  -0.45756  0.19862  -0.67185  -0.85478  -0.73582  -0.20928  -0.48166

 Columns 9361 through 9376:

  -0.38538  -0.38796  -0.85147  -0.94706  -0.12906  -1.13692  -0.47721  -0.48561  -0.42116  -0.60861  -0.48255  -0.86492  -0.35049  -0.73376  -1.58705  -0.16121

 Columns 9377 through 9392:

  -0.48075  -0.08298  -0.19588  -0.32684  -0.64910  -0.56213  -0.95587  -0.58387  -0.40578  -0.49711  -0.14656  -0.19759  -0.35681  -0.85274  -0.70611  -0.53929

 Columns 9393 through 9408:

  -0.38971  -0.72695  -0.22054  -0.71645  -0.66645  -0.48788  -0.61280  -0.35246  -0.50680  0.01072  -0.66607  -0.79888  -0.49950  -0.44645  -0.31353  -0.92342

 Columns 9409 through 9424:

  -0.49677  -0.49792  -1.00234  -0.97639  -0.80732  -0.59504  -0.34958  -0.59052  -1.05677  -0.56604  -0.60638  -1.06799  -0.39680  0.01362  -0.74889  -0.42938

 Columns 9425 through 9440:

  -0.50786  -1.22209  -0.94122  -0.22222  -0.98820  -1.19467  -0.79805  -0.31963  -1.03100  0.15935  -0.44702  -0.63212  -0.17441  -0.47635  -0.26694  -1.14624

 Columns 9441 through 9456:

  -1.17336  -0.02431  -0.21787  -1.12080  -1.03083  -0.57782  -0.40352  -0.38539  -0.59692  -0.68898  -0.58559  -0.91838  -0.30442  -0.40705  -0.19568  -0.69640

 Columns 9457 through 9472:

  -0.03148  -0.91714  -0.54333  -0.81660  -0.38933  -0.70468  -0.66164  -0.60345  -0.96376  -0.41737  -0.02520  -1.09453  -0.57954  -0.08566  -1.16399  -0.82976

 Columns 9473 through 9488:

  -0.83417  -0.45632  -1.15681  0.22048  -0.24829  -0.87667  -0.81182  -1.18888  -0.57587  -0.71381  -0.66361  -0.44768  -0.20844  -0.48754  -0.88231  -0.22367

 Columns 9489 through 9504:

  -1.06383  -1.12641  -0.59819  -0.62595  -0.36090  -0.88208  -0.90483  -0.43207  -1.13887  -0.54146  -1.11799  -0.05468  -0.88954  -0.32979  -0.72376  -0.45667

 Columns 9505 through 9520:

  -0.93576  -0.51649  -0.16914  -1.07997  -0.75258  -0.48879  -0.69716  -0.81001  -0.38232  -0.88876  -0.99019  -0.86367  -0.67259  -0.07354  -1.13568  -0.53050

 Columns 9521 through 9536:

  -0.45188  -0.46189  -0.89978  -0.64658  -0.59772  -0.95121  -0.82421  -0.36487  -0.96099  -0.47771  -0.47120  -0.74427  -0.60739  -0.33731  -0.61970  -1.01246

 Columns 9537 through 9552:

  -0.16624  -0.50509  -0.86388  -0.55920  -0.45545  -0.49228  -0.92771  -0.92702  -0.43849  -0.65601  -0.67726  -0.84582  -0.67324  -0.00594  -0.69011  -0.55836

 Columns 9553 through 9568:

  -0.69382  -0.45129  -0.59854  -0.68865  -0.61287  -1.15250  -0.47893  -0.86713  -0.09589  -0.29680  -0.18001  -0.09609  -0.95372  -0.82210  -0.87778  -0.42116

 Columns 9569 through 9584:

  -0.32305  -0.49788  -0.24712  -0.51788  -0.26329  -0.13449  -0.49506  -0.43210  -0.83994  -0.48993  -0.87532  -1.04061  -0.81799  -0.41776  -0.85129  -0.86270

 Columns 9585 through 9600:

  -0.63595  -0.64254  -0.30591  -0.53068  -0.78473  -0.82528  -0.69910  -0.10689  -0.61940  -0.42270  -0.70360  -0.62715  -0.66242  -0.47594  -0.48392  -0.75216

 Columns 9601 through 9616:

  -0.40775  -0.53804  -0.79053  -0.27415  -0.57409  -0.59225  -0.66746  -0.97258  -0.45695  -0.42263  -0.75318  -0.55247  -0.24934  -0.36396  -0.53400  -0.58788

 Columns 9617 through 9632:

  -0.27819  -0.37779  -0.44664  -0.93537  -0.72283  -0.57810  -0.78635  -0.37889  -0.17063  -0.61863  -0.52738  -0.13411  -0.95352  -0.46258  -0.50210  -0.03823

 Columns 9633 through 9648:

  -0.54025  -0.44018  -0.41457  -1.22123  -0.80896  -0.28212  -0.46975  -0.49035  -0.16788  -0.55227  -0.73634  -0.81445  -0.19364  -0.71481  0.11656  -0.59621

 Columns 9649 through 9664:

  -0.20908  -0.56345  -0.83042  -0.44403  -0.39673  -0.06538  -0.61698  -1.06885  -1.34350  -0.68263  -0.67873  -0.92056  -1.08834  -0.88920  -1.12794  -0.95905

 Columns 9665 through 9680:

  -0.88221  -0.70995  -0.13162  -0.16420  -0.69669  -0.64778  -0.34197  -0.38631  -0.22117  -0.66676  -1.22446  -0.40716  -0.29956  -0.83389  -0.39850  -0.99094

 Columns 9681 through 9696:

  -1.34667  -0.05245  -0.83913  -0.71255  -0.77556  -0.80641  -0.84027  -1.85043  -0.62864  -1.10363  -0.81241  -0.65698  -0.68796  -0.49724  -0.20270  -0.72542

 Columns 9697 through 9712:

  -0.16760  -0.61626  -0.38376  -0.50970  -0.76704  -0.24063  -0.93228  -0.29589  0.07874  -0.52810  -0.11647  -0.40265  -1.02030  -1.39647  -1.16330  -0.55413

 Columns 9713 through 9728:

  -0.32617  0.53500  -0.52753  -0.70267  -0.88369  -0.60017  -1.11489  -0.41859  -0.18717  -0.91587  0.00091  -0.90873  -0.77708  -0.43108  -0.26888  -0.56053

 Columns 9729 through 9744:

  -1.11732  -0.28666  0.12395  -0.38773  -0.47493  -0.59639  -0.79722  -0.47227  -0.31224  -0.99239  -1.25394  -0.97453  -0.54858  -0.32356  -0.53691  -0.33777

 Columns 9745 through 9760:

  -0.64883  -1.86235  -0.69049  -0.55883  -0.02461  -0.40905  -0.54992  -0.51222  -0.73663  -0.96007  -0.71309  -0.12156  -0.89057  -0.58033  -1.07521  -0.68252

 Columns 9761 through 9776:

  -0.34568  -0.26073  -0.27418  -0.43284  -0.74133  -1.04939  0.21791  -0.23329  -0.46915  -0.84885  -0.48662  -0.38959  -0.56270  -0.67477  -0.11698  -0.79405

 Columns 9777 through 9792:

  -0.15750  -0.96904  -0.56459  -1.10564  -0.41207  -0.58478  -0.09046  -0.34375  -0.90091  -0.58711  -0.69259  -1.07284  0.25246  -0.56788  -0.56248  -0.47499

 Columns 9793 through 9808:

  -0.85270  -0.80940  -0.59179  -1.42615  -0.46957  -0.56731  -0.67675  -0.67374  -0.33836  0.07088  -1.10074  -0.86282  -0.68169  -0.17375  -1.07303  -0.29991

 Columns 9809 through 9824:

  -0.43276  -0.71747  -0.87578  -0.57329  -0.34515  -0.56594  -0.57335  -0.71327  -0.52670  -0.64035  -1.18096  -0.46377  -0.56777  -0.82163  -0.83484  -0.64687

 Columns 9825 through 9840:

  -0.82847  -0.54163  -0.44455  -0.44529  -0.01538  -0.82691  -0.56330  -0.50763  -0.92507  -0.61332  0.35998  -0.10728  -0.80364  -1.06487  -0.62151  -0.75882

 Columns 9841 through 9856:

  -0.77627  -0.82082  -0.42724  -0.83094  -0.59019  -0.83153  -0.30956  -0.43427  -0.34029  -0.60309  -0.36863  -0.62885  -0.70826  -0.92321  -0.82605  -1.05534

 Columns 9857 through 9872:

  -0.79114  -0.28172  -0.85970  -0.68733  -0.45174  -0.64819  -0.51695  -0.70222  -0.40991  -0.84178  -0.75405  -0.94458  -0.83820  -0.73173  -0.21494  -0.62154

 Columns 9873 through 9888:

  -0.49179  -0.40028  -0.61018  0.10627  -0.37063  -0.80863  -0.36590  -0.26185  -0.54301  -0.36098  -0.51564  -0.32682  -1.02203  -1.33493  -0.70801  -0.45153

 Columns 9889 through 9904:

  -0.79446  -0.79952  -0.52185  -0.61221  -0.37820  -0.91183  -0.12814  -0.32964  -0.77958  -1.16460  -0.59314  -0.31158  -0.64429  -0.30694  -1.05205  -0.43984

 Columns 9905 through 9920:

  -0.74561  -0.84322  -0.60670  0.05544  -0.42479  -0.52600  -0.74991  -0.48881  -0.25925  -0.57810  -1.05458  -0.40939  -0.12136  -0.61936  -0.58237  -0.55489

 Columns 9921 through 9936:

  -0.35498  -0.65711  -0.48781  -0.49024  -0.55562  -0.43732  -0.84643  -0.03677  -0.18136  -1.34752  -0.68851  -0.50667  -0.35567  -0.57842  -0.68279  -0.94042

 Columns 9937 through 9952:

  -0.83140  -0.65619  -0.46082  -0.77789  -0.56941  -1.35415  -0.86807  -0.38256  -0.22960  -0.33913  -0.74613  -0.11451  -0.20312  -0.69880  -0.57953  -0.73296

 Columns 9953 through 9968:

  -0.32020  -0.93780  -0.79800  -0.44721  -0.89170  -0.72026  -0.37568  -0.67779  -0.35766  -0.14850  -0.36878  -0.55012  -0.34658  -1.12584  -0.87873  -0.89058

 Columns 9969 through 9984:

  -0.71022  -0.53366  -0.83969  -0.63530  -0.50314  -0.09252  -0.45137  -0.77297  -0.08257  -1.16470  -0.52990  -0.82941  -0.66950  -0.69281  -0.79761  -0.85440

 Columns 9985 through 10000:

  -0.94543  -0.23804  -0.76867  -1.01520  -0.34632  -0.49287  -0.25078  -0.64224  -0.22581  -0.68020  -0.60789  -0.74147  -0.62553  -1.02389  -0.95065  -1.37070

_config.yml

2.6 Octave Special Utility Matrices

from IPython.display import IFrame
IFrame('https://www.gnu.org/software/octave/doc/interpreter/Special-Utility-Matrices.html', width='100%', height=540)
    <iframe
        width="100%"
        height="540"
        src="https://www.gnu.org/software/octave/doc/interpreter/Special-Utility-Matrices.html"
        frameborder="0"
        allowfullscreen
    ></iframe>
%%octave

I = eye(5)    % 5x5 identity matrix
I =

Diagonal Matrix

        1        0        0        0        0
        0        1        0        0        0
        0        0        1        0        0
        0        0        0        1        0
        0        0        0        0        1

2.7 Basic Matrix Functions

from IPython.display import IFrame
IFrame('https://www.gnu.org/software/octave/doc/interpreter/Basic-Matrix-Functions.html', width='100%', height=540)
    <iframe
        width="100%"
        height="540"
        src="https://www.gnu.org/software/octave/doc/interpreter/Basic-Matrix-Functions.html"
        frameborder="0"
        allowfullscreen
    ></iframe>

2.8 Vector Operation

An n vector is a row vector or a column array of n numbers. In Octave, elements enclosed by brackets and separated by semicolon generate a column vector.

The transpose of a row vector is a column vector, and vice versa. This can be done in Octave using the symbol (‘).

%%octave

A = [1 2; 3 4]
A'
A =

        1        2
        3        4

ans =

        1        3
        2        4

Vectors of the same size can be added or subtracted. The operation ( .* ) performs element-by-element multiplication.

The (:) can also be used to generate a row vector.

%%octave

x = 1:8
x =

   1   2   3   4   5   6   7   8

For increment other than unity, the following command can be used:

%%octave

x = 0:pi/3:5*pi
x =

  1.0e+01  *

 Columns 1 through 15:

   0.00000   0.10472   0.20944   0.31416   0.41888   0.52360   0.62832   0.73304   0.83776   0.94248   1.04720   1.15192   1.25664   1.36136   1.46608

 Column 16:

   1.57080

For negative increment

%%octave

x = 5 : -1 : -4
x =

   5   4   3   2   1   0  -1  -2  -3  -4

2.9 Elementary Function

Some of the Octave function automatically operate element by element on an array. For example, exp(x) will return an array with each element equal to the exponential of the corresponding element of x.

%%octave

abs(-10)       % Absolute value
acos(0.5)      % Inverse cosine
angle(1+j)     % Phase angle
asin(0.5)      % Inverse sine
atan(1)        % Inverse tangent
conj(1 - j)    % complex conjugate
cos(30)        % Cosine
exp(-0.5)      % Exponential
fix(0.8)       % Round towards zero
floor(1.8)     % Round towards infinity
imag(1+j)      % Complex Imaginary part
log(e)         % Natural logarithm
log10(100)     % Common logarithm
real(1+j)      % Complex real part
rem(10,8)      % remainder after division
round(1.5)     % Round towards nearest integer
sign(0)        % Signum function
sqrt(4)        % Square root
tan(pi/4)      % Tangent
ans =  10
ans =  1.0472
ans =  0.78540
ans =  0.52360
ans =  0.78540
ans =  1 + 1i
ans =  0.15425
ans =  0.60653
ans = 0
ans =  1
ans =  1
ans =  1
ans =  2
ans =  1
ans =  2
ans =  2
ans = 0
ans =  2
ans =  1.00000

2.10 Logical Operators

Octave’s relational operators and logical operators also work on an element-by-element basis. Relational operators compare two scalars and produce a 1 if the operation is true and a 0 if it is false. For example, if you enter t = 17 > 55, Octave will respond with t = 0. When used with two matrices, relational operators compare corresponding matrix elements. For example, L = D < = X will check every element of D against the corresponding element of X. If the element of D is less than or equal to the corresponding element of X, the corresponding element of L will be 1. Otherwise, the corresponding element of L will be zero.

The logical operators & for logical AND, | for logical OR, and ~ for logical NOT all return 1 for logical TRUE and 0 for logical FALSE.

%%octave

1 == 2  
1 ~= 2   
1 && 0
1 || 0
xor(1,0)
ans = 0
ans =  1
ans = 0
ans =  1
ans =  1

2.11 Evaluate m-files

A script file is an ASCII file that contains a series of Octave command just as you would enter them in Octave environment. Statement that begins with % is considered to be comment and are ignored by Octave. The script file is created outside the Octave environment with any text editor or word processor. Each script file should have a name that ends in “.m” The commands in the script file are executed in the Octave environment by simply entering the name of the script file without the extension “.m”

%ls
CostContourPlot.png     ML0.pdf            ml2y.dat
CostFunctionContour.m   ML0.snm            ML3.ipynb
CostFunction.m          ML0.tex            ml3x.dat
CostSurfacePlot.png     ML0.toc            ml3y.dat
GradientDescentLines.m  ML0.vrb            mydft.m
GradientDescent.m       ml1data.png        myfactorial.m
Images/                 ML1.ipynb          OctaveFundamentals.ipynb
Makefile                ml1prediction.png  octave-workspace
ML0.aux                 ml1x.dat           plotData.m
ML0.log                 ml1y.dat           Prediction.m
ML0.nav                 ML2.ipynb          rms.m
ML0.out                 ml2x.dat           template.tex
%cat plotData.m
% Based on Andrew Ng's Machine Learning course

clc

x = load('ml1x.dat');
y = load('ml1y.dat');

m = length(x);

figure, plot(x,y,'rh', 'markerfacecolor', 'auto');
xlabel('Age (yrs.)');
ylabel('Height (m)');

print -dpng ml1data
%%octave -f svg -s 720,480

eval("plotData");
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1
GPL Ghostscript 9.05: Error: Font Renderer Plugin ( FreeType ) return code = -1

svg

2.12 Getting Help

from oct2py import octave
help(octave.ones)
Help on function ones in module oct2py.core:

ones(*args, **kwargs)
    `ones' is a built-in function
    
     -- Built-in Function:  ones (N)
     -- Built-in Function:  ones (M, N)
     -- Built-in Function:  ones (M, N, K, ...)
     -- Built-in Function:  ones ([M N ...])
     -- Built-in Function:  ones (..., CLASS)
         Return a matrix or N-dimensional array whose elements are all 1.
         If invoked with a single scalar integer argument N, return a square
         NxN matrix.  If invoked with two or more scalar integer arguments,
         or a vector of integer values, return an array with the given
         dimensions.
    
         If you need to create a matrix whose values are all the same, you
         should use an expression like
    
              val_matrix = val * ones (m, n)
    
         The optional argument CLASS specifies the class of the return array
         and defaults to double.  For example:
    
              val = ones (m,n, "uint8")
    
         See also: zeros
    
    
    
    Additional help for built-in functions and operators is
    available in the on-line version of the manual.  Use the command
    `doc <topic>' to search the manual index.
    
    Help and information about Octave is also available on the WWW
    at http://www.octave.org and via the help@octave.org
    mailing list.
    
    Oct2Py Parameters
    --------------------------
    inputs : array_like
        Variables to pass to the function.
    verbose : bool, optional
         Log Octave output at INFO level.  If False, log at DEBUG level.
    nout : int, optional
        Number of output arguments.
        This is set automatically based on the number of return values
        requested.
        You can override this behavior by passing a different value.
    timeout : float, optional
        Time to wait for response from Octave (per character).
    plot_dir: str, optional
        If specificed, save the session's plot figures to the plot
        directory instead of displaying the plot window.
    plot_name : str, optional
        Saved plots will start with `plot_name` and
        end with "_%%.xxx' where %% is the plot number and
        xxx is the `plot_format`.
    plot_format: str, optional
        The format in which to save the plot.
    plot_width: int, optional
        The plot with in pixels.
    plot_height: int, optional
        The plot height in pixels.
    kwargs : dictionary, optional
        Key - value pairs to be passed as prop - value inputs to the
        function.  The values must be strings or numbers.
    
    Returns
    -----------
    out : value
        Value returned by the function.
    
    Raises
    ----------
    Oct2PyError
        If the function call is unsucessful.
    
    Notes
    -----
    Integer type arguments will be converted to floating point
    unless `convert_to_float=False`.

2.13 Creating Functions

Function files are m-files that are very similar to script files. The first major difference is that the first line of a function file begins with the word function, followed by a statement identifying the name of the function and the input and output argument in the form.

    function [output arguments] = function_name(input arguments)

For example, suppose you want to create a new function called rms that computes the root mean square of a list of numbers. The first line of your function file might look like function y = rms(v). The next several lines should be comment line describing how to use rms. Later when you type help rms, Octave will respond with these comment lines. The remaining line of the function file should look as they would in a script file. Remember that the input argument v will be defined when the function is called.

The second major difference between function files and script files is that the variables generated in function files are local to the function, whereas variables in script files are global. The function file to produce the rms command might look as follows:

function y = rms(v)
% rms Root mean square
% rms(v) returns the root mean square of the elements
% of column vector v. If v is a matrix then
% rms(v) returns a row vector such that each element
% is the root mean square of the elements in the corresponding
% column of v.
vs = v.^2;
s = size(v);
y = sqrt(sum(vs)/s(1));
%cat rms.m
function y = rms(v)
  % rms Root mean square
  % rms(v) returns the root mean square of the elements
  % of column vector v. If v is a matrix then
  % rms(v) returns a row vector such that each element
  % is the root mean square of the elements in the corresponding
  % column of v.
  vs = v.^2;
  s = size(v);
  y = sqrt(sum(vs)/s(1));
%%octave

help("rms")
`rms' is a function from the file /home/cobalt/repos/mlintroduction/rms.m

 rms Root mean square
 rms(v) returns the root mean square of the elements
 of column vector v. If v is a matrix then
 rms(v) returns a row vector such that each element
 is the root mean square of the elements in the corresponding
 column of v.

Additional help for built-in functions and operators is
available in the on-line version of the manual.  Use the command
`doc <topic>' to search the manual index.

Help and information about Octave is also available on the WWW
at http://www.octave.org and via the help@octave.org
mailing list.
%%octave

v = [ 1; 2; 3]
rms(v)
v =

        1
        2
        3

ans =  2.1602

2.14 Graphics

Basic plotting

%%octave

t = [0:0.01:0.98];
y1 = sin(2*pi*4*t); 
plot(t,y1);

_config.yml

%%octave

t = [0:0.01:0.98];
y1 = sin(2*pi*4*t); 
plot(t,y1);
y2 = cos(2*pi*4*t);
hold on;  
plot(t,y2,'r');
xlabel('time');
ylabel('value');
legend('sin','cos');
title('my plot');

_config.yml

%%octave -f PNG 

t = [0:0.01:0.98];
y1 = sin(2*pi*4*t); 
y2 = cos(2*pi*4*t);

subplot(1,2,1);  
plot(t,y1);
subplot(1,2,2);   
plot(t,y2);
axis([0 1 -1 1]); 

_config.yml

III. Laboratory Exercise

3.1 Encode the following matrices in MATLAB.

%%octave

A = [2 5 -6; 4 -4 3; 1 3 -5]
B = [1 5 -6; 4 -2 3; 2 3 5]
AB = A*B
BA = B*A
SUM = A+B
DIFF = A-B
Ainv = inv(A)
Atrans = A' 
Axinv = A/A
A =

        2        5       -6
        4       -4        3
        1        3       -5

B =

        1        5       -6
        4       -2        3
        2        3        5

AB =

       10      -18      -27
       -6       37      -21
        3      -16      -22

BA =

       16      -33       39
        3       37      -45
       21       13      -28

SUM =

        3       10      -12
        8       -6        6
        3        6        0

DIFF =

        1        0        0
        0       -2        0
       -1        0      -10

Ainv =

  0.26829  0.17073  -0.21951
  0.56098  -0.09756  -0.73171
  0.39024  -0.02439  -0.68293

Atrans =

        2        4        1
        5       -4        3
       -6        3       -5

Axinv =

  1.00000  -0.00000  -0.00000
  -0.00000  1.00000  -0.00000
  -0.00000  0.00000  1.00000
%%octave

A = [2 5 -6; 4 -4 3; 1 3 -5]
B = [1 5 -6; 4 -2 3; 2 3 5]

AxB_elementwise = A.*B
AdivB_elementwise = A./B
A(:,1)'.*B(2,:)              % Column 1 of Matrix A times Row 2 of Matrix B
A =

        2        5       -6
        4       -4        3
        1        3       -5

B =

        1        5       -6
        4       -2        3
        2        3        5

AxB_elementwise =

        2       25       36
       16        8        9
        2        9      -25

AdivB_elementwise =

  2.00000  1.00000  1.00000
  1.00000  2.00000  1.00000
  0.50000  1.00000  -1.00000

ans =

        8       -8        3

Generate a row vector n whose value is linearly increasing from 0 to 127.

%%octave  

v = 0:127
y = sin(2*pi*v/25);

subplot(2,1,1)
plot(v,y, 'linewidth',3)
xlim([0 127])
xlabel('t')
ylabel('sin(t)')
title('Continuous Plot');
grid on;

subplot(2,1,2)
stem(v,y, 'linewidth',3)
xlim([0 127])
xlabel('n')
ylabel('x[n]')
title('Discrete Plot');
v =

 Columns 1 through 25:

     0     1     2     3     4     5     6     7     8     9    10    11    12    13    14    15    16    17    18    19    20    21    22    23    24

 Columns 26 through 50:

    25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49

 Columns 51 through 75:

    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74

 Columns 76 through 100:

    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99

 Columns 101 through 125:

   100   101   102   103   104   105   106   107   108   109   110   111   112   113   114   115   116   117   118   119   120   121   122   123   124

 Columns 126 through 128:

   125   126   127

_config.yml

Given a vector x whose values are complex, determine the magnitude and the corresponding phase. Use the Octave command angle and abs. To ensure that the angle is within -π to π range, use the Octave function unwrap. Plot the magnitude and phase with corresponding label. Use the function stem to plot the magnitude and phase. The two graph should be shown in one screen. (Discrete plot - “stem”)

• abs – Computes the magnitude of a complex number.

• angle – Computes the phase angle of a complex number.

• stem – Draws discrete plots.

%%octave 

x = [1-j 2+j 4+ 8j -1-i]
r = abs(x)
theta = angle(x)
thetauw = unwrap(theta)

figure, stem(r,'linewidth', 5, 'fill')
ylim([0 10])
xlim([0 5])
xlabel('n')
ylabel('Magnitude')
title('Amplitude plot')
grid on

figure, stem(theta,'linewidth',5, 'fill')
ylim([-pi pi])
xlim([0 5])
xlabel('n')
ylabel('Angle')
title('Phase plot')
grid on

figure, stem(thetauw,'linewidth',5, 'fill')
ylim([-pi 2*pi])
xlim([0 5])
xlabel('n')
ylabel('Angle')
title('Phase plot (w/ unwrap)')
grid on
x =

        1 -      1i        2 +      1i        4 +      8i       -1 -      1i

r =

  1.41421  2.23607  8.94427  1.41421

theta =

  -0.78540  0.46365  1.10715  -2.35619

thetauw =

  -0.78540  0.46365  1.10715  3.92699

_config.yml

_config.yml

_config.yml

%%octave 

help unwrap
`unwrap' is a function from the file /usr/share/octave/3.6.2/m/signal/unwrap.m

 -- Function File: B = unwrap (X)
 -- Function File: B = unwrap (X, TOL)
 -- Function File: B = unwrap (X, TOL, DIM)
     Unwrap radian phases by adding multiples of 2*pi as appropriate to
     remove jumps greater than TOL.  TOL defaults to pi.

     Unwrap will work along the dimension DIM.  If DIM is unspecified
     it defaults to the first non-singleton dimension.


Additional help for built-in functions and operators is
available in the on-line version of the manual.  Use the command
`doc <topic>' to search the manual index.

Help and information about Octave is also available on the WWW
at http://www.octave.org and via the help@octave.org
mailing list.

Using for loop, create a function that will calculate factorial of x, where the element of x is any scalar integer. Call this function myfactorial.

%cat myfactorial.m
function result = myfactorial(n)
  if( n == 0 )
    result = 1;
    return;
 else
    result = 1;
    for i = 1:n
       result = result*i; 
    endfor
endif
endfunction
%%octave

eval('myfactorial(5)')
eval('myfactorial(4)')
eval('myfactorial(3)')
eval('myfactorial(2)')
eval('myfactorial(1)')
eval('myfactorial(0)')
ans =  120
ans =  24
ans =  6
ans =  2
ans =  1
ans =  1

where $W = e^{-j2\pi / N}$

%cat mydft.m
function X = mydft(x)

N = length(x);
X = zeros(N,1);

for k = 0:N-1
          for n = 0:N-1
                    X(k+1) = X(k+1) + x(n+1)*exp(-j*2*n*k*pi/N);
          endfor
endfor

% Set-up plot domain
t = 0:N-1;

%subplot(212)
figure, stem(t,angle(X),'m--');
xlabel('Frequency');
ylabel('Phase');
title('Frequency domain - Phase response')
grid on;

%subplot(211)
figure, stem(t,abs(X),'r--');
set(gca,'yscale','log');
xlabel('Frequency');
ylabel('|X(k)|');
title('Frequency domain - Magnitude response')
grid on;

endfunction

Sinc Input

%%octave

x = sinc([-5:1/10:5]);
t = 0:length(x)-1;

stem(t,x,'fill');
xlabel('Time (s)');
ylabel('Amplitude');
title('Time domain - Input sequence');
grid on;

_config.yml

DFT using user function

%%octave

x = sinc([-5:1/10:5]);
format short g
eval("mydft(x)");
warning: axis: omitting non-positive data in log plot
ans =

      10.399 +          0i
     -9.5807 -     0.2981i
      10.451 +    0.65097i
     -9.3531 -    0.87532i
       10.91 +     1.3645i
     -5.3327 -    0.83611i
    -0.77582 -     0.1465i
     -0.3853 -   0.085244i
    -0.24054 -   0.061123i
    -0.16731 -     0.0481i
    -0.12398 -   0.039857i
    -0.09578 -   0.034113i
   -0.076208 -   0.029844i
   -0.061978 -   0.026523i
   -0.051262 -    0.02385i
   -0.042965 -    0.02164i
   -0.036397 -   0.019774i
   -0.031099 -   0.018171i
   -0.026761 -   0.016774i
   -0.023161 -   0.015541i
   -0.020139 -   0.014441i
   -0.017578 -   0.013452i
   -0.015389 -   0.012555i
   -0.013504 -   0.011735i
   -0.011869 -   0.010981i
   -0.010444 -   0.010283i
  -0.0091947 -   0.009634i
  -0.0080947 -  0.0090276i
  -0.0071222 -  0.0084582i
  -0.0062597 -  0.0079214i
  -0.0054925 -  0.0074133i
  -0.0048084 -  0.0069306i
  -0.0041972 -  0.0064704i
  -0.0036503 -  0.0060303i
  -0.0031607 -  0.0056079i
   -0.002722 -  0.0052015i
  -0.0023292 -  0.0048093i
  -0.0019778 -  0.0044298i
  -0.0016639 -  0.0040615i
  -0.0013842 -  0.0037033i
  -0.0011361 -   0.003354i
  -0.00091705 -  0.0030125i
  -0.00072501 -   0.002678i
  -0.00055826 -  0.0023495i
  -0.00041532 -  0.0020261i
  -0.00029494 -  0.0017072i
  -0.00019611 -  0.0013919i
   -0.000118 -  0.0010796i
  -5.9961e-05 - 0.00076952i
  -2.1528e-05 - 0.00046107i
  -2.3888e-06 - 0.00015359i
  -2.3888e-06 + 0.00015359i
  -2.1528e-05 + 0.00046107i
  -5.9961e-05 + 0.00076952i
   -0.000118 +  0.0010796i
  -0.00019611 +  0.0013919i
  -0.00029494 +  0.0017072i
  -0.00041532 +  0.0020261i
  -0.00055826 +  0.0023495i
  -0.00072501 +   0.002678i
  -0.00091705 +  0.0030125i
  -0.0011361 +   0.003354i
  -0.0013842 +  0.0037033i
  -0.0016639 +  0.0040615i
  -0.0019778 +  0.0044298i
  -0.0023292 +  0.0048093i
   -0.002722 +  0.0052015i
  -0.0031607 +  0.0056079i
  -0.0036503 +  0.0060303i
  -0.0041972 +  0.0064704i
  -0.0048084 +  0.0069306i
  -0.0054925 +  0.0074133i
  -0.0062597 +  0.0079214i
  -0.0071222 +  0.0084582i
  -0.0080947 +  0.0090276i
  -0.0091947 +   0.009634i
   -0.010444 +   0.010283i
   -0.011869 +   0.010981i
   -0.013504 +   0.011735i
   -0.015389 +   0.012555i
   -0.017578 +   0.013452i
   -0.020139 +   0.014441i
   -0.023161 +   0.015541i
   -0.026761 +   0.016774i
   -0.031099 +   0.018171i
   -0.036397 +   0.019774i
   -0.042965 +    0.02164i
   -0.051262 +    0.02385i
   -0.061978 +   0.026523i
   -0.076208 +   0.029844i
    -0.09578 +   0.034113i
    -0.12398 +   0.039857i
    -0.16731 +     0.0481i
    -0.24054 +   0.061123i
     -0.3853 +   0.085244i
    -0.77582 +     0.1465i
     -5.3327 +    0.83611i
       10.91 -     1.3645i
     -9.3531 +    0.87532i
      10.451 -    0.65097i
     -9.5807 +     0.2981i

_config.yml

_config.yml

Checking using the built-in FFT function

%%octave -f png

x = sinc([-5:1/10:5]);
t = 0:length(x)-1;

%subplot(212)
figure, stem(t,angle(fft(x)),'m--');
xlabel('Frequency');
ylabel('Phase');
title('Frequency domain - Phase response')
grid on;

%subplot(211)
figure, stem(t,abs(fft(x)),'r--');
set(gca,'yscale','log');
xlabel('Frequency');
ylabel('|X(k)|');
title('Frequency domain - Magnitude response')
grid on;
warning: axis: omitting non-positive data in log plot

_config.yml

_config.yml

– mkc

Written on September 19, 2015