Reading matrices from text file. Can someone take a look at this?

The function is supposed to read two matrices separated by two newlines with spaces in between each number. It is somehow skipping to past the check fo the newline. I'll send someone the matrix file if they would look at it. Thanks.

privatevoid initNet(String str)throws FileNotFoundException{

FileReader fileReader =new FileReader(str);

char[] buffer =newchar[256];

boolean done=false;

int ind=0,col=0,row=0;

String string;

double d;

while (done==false){

try{buffer[ind]=(char)(fileReader.read());}

catch (IOException e){System.out.println("Couldn't read!");}

ind++;

if (buffer[ind-1]==' '){

//buffer[ind]='\0';

string =new String(buffer);

System.out.println(string);

d = Double.valueOf(string.trim()).doubleValue();

V.set(row,col,d);

ind=0;

col++;

for (int i=0; i<256; i++){buffer[i] ='\0';}

}

elseif (buffer[ind-1]=='\n'){

for (int i=0; i<256; i++){buffer[i] ='\0';}

ind=0;

col=0;

row++;

try{buffer[ind]=(char)(fileReader.read());}

catch (IOException e){System.out.println("Couldn't read!");}

System.out.println((int)buffer[ind]);

if (buffer[ind]=='\n'){done=true;}

ind++;

}

}

while (done==false){

try{buffer[ind]=(char)(fileReader.read());}

catch (IOException e){System.out.println("Couldn't read!");}

ind++;

if (buffer[ind-1]==' '){

//buffer[ind]='\0';

string =new String(buffer);

System.out.println(string);

d = Double.valueOf(string.trim()).doubleValue();

W.set(row,col,d);

ind=0;

col++;

for (int i=0; i<256; i++){buffer[i] ='\0';}

}

elseif (buffer[ind-1]=='\n'){

ind=0;

col=0;

row++;

try{buffer[ind]=(char)(fileReader.read());}

catch (IOException e){System.out.println("Couldn't read!");}

if (buffer[ind]=='\n'){done=true;}

ind++;

}

}

}

Message was edited by:

jdk2006

Message was edited by:

jdk2006

[5109 byte] By [jdk2006a] at [2007-11-27 5:51:30]
# 1
Please do send your the text file, but why don't you do your processing withing the try block.
Sq2000a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 2
where should i send it. what is your email. help with this will be appreciated
jdk2006a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 3

> The function is supposed to read two matrices

> separated by two newlines with spaces in between each

> number. It is somehow skipping to past the check fo

> the newline. I'll send someone the matrix file if

> they would look at it. Thanks.

Please don't bother.

Your code is terrible. Just awful.

For starters use a BufferedReader and it's readLine method.

Then use String split.

And please learn how not to abuse exceptions so horribly.

And maybe read the IO tutorial. I don't know. This code was really painful to look at.

cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 4
> where should i send it. what is your email. help with> this will be appreciatedPlease don't bother. The only problem is your ******* horrific code.
cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 5
Could you elaborate a little on how I could rewrite. Or do you see the problem with the current method.
jdk2006a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 6

Seriously. Normally I wouldn't do this but I just never want to see that abomination from the OP ever again.

So..

private void initNet(String str) throws IOException{

BufferedReader br = new BufferedReader(new FileReader(str));

int row = 0;

for(String aLine = br.readLine();aLine != null; aLine = br.readLine()){

// small edit here based on reviewing your code

if(aLine.trim().length()<1){

// basically if this is a blank line then skip it

continue;

}

String[] numbers = aLine.split("\\s");

int col = 0;

for(int i=0;i<numbers.length;i++){

try{

double d = Double.parseDouble(numbers[i]);

V.set(row,col,d);

}catch( NumberFormatException nfe){

throw new IOException("Bad file format. "+nfe.getMessage());

}

col++;

}

row++;

}

br.close();

}

>

cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 7
> Could you elaborate a little on how I could rewrite.> Or do you see the problem with the current method.I see many problems with the current method.
cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 8

> The function is supposed to read two matrices

> separated by two newlines with spaces in between each

> number. It is somehow skipping to past the check fo

> the newline. I'll send someone the matrix file if

> they would look at it. Thanks.

You can just post here on the forum you dont have have to post the whole of it if its too big. But as cotton.m has pointed out and as i have i ready suggested use the exception handling properly so that you dont confuse youself. But any way cottom.m is right to suggest the BufferedReader and spliting of the string.

I will suggest further after seeing the shot of your file.

Sq2000

Sq2000a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 9
Your method only reads one of the matrices. It doesn't detect the newline separation.
jdk2006a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 10
> Your method only reads one of the matrices. It> doesn't detect the newline separation.Yes it does. By this you mean the extra blank line maybe? I added a fix for that. If you don't know what readLine does then you should figure that out.
cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 11
i know that my method needs to set 2 matrices separate by a blank line
jdk2006a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 12
> i know that my method needs to set 2 matrices> separate by a blank lineThis is what my code does.What part do you feel is incorrect?
cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 13

it doesn't set the W matrix

here's the file:

-0.797506 -0.6346 -0.741916 1.13146 1.0749 0.899336 0.66316 -0.615205 -0.0664194 -0.0862262 0.214061 -0.548882 1.38783 0.387086 0.564162 0.938335 -0.875718 -0.394062 0.818664 0.82113 -0.964831 1.43922 -0.481085 -0.646608 -1.2874 -1.15591 0.366735 -0.152337 -0.130433 -0.178646 0.322397 1.00038 0.50071 -0.406325 0.281333 -0.297817 0.643472 0.64945 0.658188 -0.67997 -0.364764 0.602313 0.30398 0.190401 -0.28405 -0.252785 0.883438 -0.134482 -0.231399 0.710782 -0.327815 0.256417 0.958549 -1.34947 1.80933 0.112334 1.56023 0.605026 -0.440632 -0.414095 -0.738431 1.07606 -0.592563 0.0971839 0.63279 0.0328203 -0.208065 0.22543 -0.801425 -0.0785205 -0.112261 0.0460733 -0.3087 1.23598 -1.85967 -1.79745 1.21641 -0.213854 -0.557492 -0.330732 -0.627146 0.00715959 1.09512 1.1052 0.485864 0.568991 0.805334 0.203647 -0.0682559 -0.48897 0.762104 -0.150701 -0.650186 -0.973641 -0.279869 0.781312 0.477315 0.509425 -0.961103 -1.28375

-0.685458 0.0832769 -0.318921 -0.296883 0.103008 0.62068 -0.101932 -0.15977 -0.990793 0.401317 0.561185 -0.331104 -0.344475 0.610337 -0.288034 -0.725308 0.322983 -0.227225 0.408994 -0.942882 0.224315 0.642279 0.350199 0.958834 0.31587 1.40477 0.690058 0.0124856 0.737566 0.880389 0.0374922 -0.601813 0.367798 -0.166878 -0.325373 -0.0157466 0.261277 0.909389 0.333789 0.711839 0.329469 0.146612 -0.871909 -0.5985 -1.39645 0.139516 -0.512219 0.761642 0.636178 0.679015 -0.851652 0.0902911 -0.151837 0.156546 -0.422452 -0.574784 -0.471587 -0.748835 0.423854 0.0762477 -0.462901 -0.533516 -0.0465567 1.03534 -0.462442 2.23313 -1.34087 0.290276 0.554573 0.482125 0.1779 -0.215041 -0.678086 1.16961 -0.826771 0.320111 -0.306634 -0.714656 0.189091 -0.651975 -1.0875 -0.00880364 0.54232 0.113083 -0.688674 -0.663008 0.709397 0.898261 -0.0268918 -0.00726914 -0.807898 0.169821 0.387841 0.518158 0.419161 1.10098 0.398999 0.248219 0.469878 -0.371617

-0.327142 0.0757073 0.5637 0.0271003 -0.355374 -0.912964 -0.983046 0.461265 -0.139842 0.192834 0.772577 -0.149783 -0.7953 0.403272 1.03253 -0.552028 0.637813 0.604257 -0.940718 -0.257024 -0.433814 -0.373678 0.791094 -1.94754 -0.0527889 1.00056 -2.01724 0.155113 -0.431787 0.800283 -0.943524 0.24631 -0.791411 -0.499615 0.791906 0.879914 0.335976 -0.768236 -0.29158 -0.57867 0.430702 -0.49871 0.318337 0.0308964 0.976318 -1.10895 1.87956 0.695606 -0.362894 1.02881 0.847479 0.289684 -0.465045 0.106597 -0.330704 0.489984 0.416702 0.979173 0.720604 0.647088 0.398742 0.771698 0.0721989 -0.105585 -0.421948 1.14158 1.96226 0.0407715 0.464106 -0.532481 0.552336 -0.109137 0.203234 -0.734301 -0.899977 -0.0365465 -1.27387 -0.847861 -0.860231 -0.0912377 -0.544944 -0.990795 -0.840018 -0.273799 0.728533 0.74429 0.293783 -0.201912 0.640166 0.484946 -0.444432 0.0851724 0.0792076 0.274326 0.184241 -0.570312 -0.536128 0.0400917 0.974926 -0.831932

0.585247 0.55378 0.140833 -0.464147 -0.679485 0.515748 0.348887 -0.439558 -0.860464 0.628054 0.428869 -0.533879 0.549482 0.482768 0.236789 0.459946 0.361019 -0.30258 -0.357601 0.148364 -0.80086 0.0961201 -0.762891 0.125458 -0.0308605 0.532643 -0.649615 0.0938379 -0.519061 0.952746 0.207822 -0.926457 0.457437 -0.0171226 0.022721 1.16259 1.5921 -1.13263 -0.72001 -1.14702 0.572399 0.669169 -0.214143 1.09307 0.575585 0.67275 -0.699139 0.00864224 -0.281153 0.311601 0.860253 -0.116513 0.00426573 -0.159058 -1.12561 -1.43015 2.22263 -0.416421 -0.497104 -0.788246 -0.843801 0.778708 -0.493099 0.869259 -1.44969 -2.3673 1.44634 -0.630968 0.321369 0.649687 -0.895268 0.0343648 0.168216 -1.07795 0.071278 -0.0621891 -1.32969 0.0208668 0.36749 0.117911 -0.158406 0.471913 0.953221 0.5757 0.658045 -0.836935 -0.191011 0.221587 -0.60542 0.407481 0.931319 -0.347031 0.198409 -0.532926 -0.895709 0.142217 0.714159 0.599853 0.315218 0.190632

0.337101 0.143507 -0.89803 -0.18119 0.738689 -0.48618 0.690567 -0.952793 0.510134 -0.0202242 0.119613 -0.556906 -0.790517 -0.113037 0.957299 -0.769351 0.433152 0.0907254 0.540097 0.488856 -0.756177 -0.000413989 -0.842823 0.344797 1.9025 0.681506 -0.0766657 0.436413 1.16314 0.690711 -0.401947 -0.194068 0.208105 -1.7874 0.178633 -0.000401457 -0.0252379 0.398447 -0.13689 0.0887608 -0.517362 0.508637 0.773085 -0.843384 -1.11498 1.3068 0.465076 -0.783137 -0.675038 0.0676591 0.856853 -0.69198 -0.342809 -0.939968 0.82597 0.418337 -0.802364 -0.607254 0.583853 -0.32232 1.04775 -0.995351 1.19636 -0.0787156 -0.405806 -0.247257 -0.252438 -0.932842 0.386965 -0.809299 0.0678044 0.728819 0.871183 -0.566309 1.08377 -0.062794 0.476503 -0.713517 0.363316 0.953117 -0.0444986 0.0642373 -0.639336 0.124085 0.256381 -0.722483 0.274053 0.895123 -0.557712 -0.551852 -0.8092 -0.423238 -0.0958486 0.896061 0.47439 0.853894 0.474422 -0.190358 0.813038 -0.515648

-0.210943 -0.241092 -0.797114 -0.325348 0.136651 0.0882688 0.508981 -0.106659 0.300202 -0.409801 -0.141993 -0.720467 0.547472 0.268084 0.439234 -0.289855 0.490917 -0.422094 -0.606058 -1.0048 0.20627 -0.545002 -0.567689 0.948537 -0.775596 0.739987 0.575838 0.495184 -0.533466 0.380359 -1.02872 0.262441 -0.80251 -0.653512 -0.910583 0.277534 0.329837 0.502701 -0.760996 -0.352653 -0.888795 0.11519 0.0352876 0.751528 -0.523403 -0.606871 -0.580168 -1.02832 0.0614193 -0.106852 -1.00102 -0.707385 0.475924 -0.553466 -0.689015 0.629413 -0.702936 0.936041 0.137883 -0.255774 0.324462 0.139731 -0.935777 0.423936 0.374542 -1.01358 -0.170043 -0.250434 0.619688 0.12506 0.407257 0.773804 -0.7376 -0.648532 0.584268 -0.240791 -0.178381 -0.995227 -0.202167 0.978462 -0.0578826 -0.187947 -0.709099 -0.621642 0.329061 -0.391224 -0.983011 0.607062 -0.430613 0.193891 -0.592679 0.952441 -0.609044 -0.504588 0.500258 0.801552 -0.402801 -0.611173 -0.440168 -0.748677

0.250742 0.623385 -1.10447 1.15211 -0.236656 0.902395 -0.221272 0.0830723 0.253464 0.108466 0.0133582 -0.306258 -0.267917 0.846533 0.175539 0.84737 -0.582168 0.353335 0.212536 -0.500858 -0.788667 1.19171 0.385 0.832934 -0.519978 0.313027 0.479866 -0.0975211 0.0215703 -0.138562 0.26374 -0.387203 0.623578 0.0620289 0.171172 1.95399 -0.66449 -0.330973 -0.130163 -0.504136 -0.491513 -0.770175 0.507726 -1.17959 1.96084 1.11869 -2.40788 0.923176 0.0157153 0.83352 0.0461375 0.45828 0.830572 0.515584 0.334711 -0.400106 1.52637 -0.371446 -0.782644 0.0275347 0.72669 0.374544 0.448389 0.281616 -1.02072 -0.181233 1.42329 0.0997404 0.834917 -0.0447659 0.255631 1.18112 -0.124408 -0.911283 -1.16794 -0.822334 -0.541854 -0.466379 -0.263545 0.130976 -1.15908 0.135428 -0.088726 0.340786 -0.53716 -0.604588 -0.120889 0.0765006 0.166093 -0.34144 -0.169247 -0.749717 -0.777987 1.37973 0.594791 0.204317 0.337146 -0.131597 0.382838 -0.689201

0.674957 0.0903382 -0.348616 -0.616744 0.380662 0.115583 -0.322833 0.621712 0.7319 -0.109902 -0.125936 0.892541 0.946058 0.440823 0.216397 -0.513899 0.969303 0.998415 0.0206266 0.0153466 -0.00240661 -0.847018 0.505449 0.285464 -0.846871 -0.428483 0.903022 0.0190845 0.472022 0.570229 0.684702 0.10991 -0.447365 -0.649333 0.357127 0.847106 0.400912 0.912249 0.359439 -0.141359 -0.207618 -0.831522 -0.376477 -0.365202 0.411629 0.655501 -0.0136926 0.286972 0.670743 0.863261 -0.740784 -0.413081 0.86087 0.659158 0.615603 0.895297 1.11024 0.48815 -0.159784 0.460175 0.0238288 -0.557916 -0.546858 0.572691 -0.557746 0.563472 0.362389 0.684362 0.566234 -0.454313 -0.551958 -0.761305 -0.451224 0.0092509 -0.340433 0.921727 -0.386504 0.493813 0.160241 -0.7551 0.341216 0.335708 -0.249802 0.138018 -0.137631 -0.640701 -0.0868016 -0.170337 0.830618 0.687029 -0.893563 -0.374783 0.90008 -0.519545 1.03394 -0.628221 -0.89167 0.1799 0.958109 0.581252

0.655913 -0.637779 0.757707 -0.873228 0.254288 -0.646399 0.981728 0.858555 0.827374 0.0713021 1.01332 0.0558426 -0.738839 -0.415058 -0.954377 0.0261057 -0.130745 -0.106719 0.786532 -0.40737 -0.539258 0.836195 0.164219 -0.639143 -0.718153 0.168262 -0.301365 -0.62308 -0.662625 -0.394857 0.933518 0.884087 -0.139936 0.664882 0.956201 -0.906011 0.93609 0.88869 0.867586 0.680237 -0.092678 0.781995 -0.383333 0.14891 -0.616648 -0.304812 -0.903879 0.158406 0.50249 0.835849 0.700815 0.878818 0.594735 -0.144079 -0.796067 0.89424 0.926561 -0.251416 -0.788322 -0.757735 0.311922 -0.916208 -0.905355 -0.840459 0.666749 1.04219 -0.839817 0.505239 0.88509 0.981699 0.144261 -0.267344 0.719496 0.757358 0.831007 1.04054 -0.623897 0.872083 0.157122 0.812215 0.66841 -0.182522 0.639962 0.223556 0.573732 0.743463 0.0575714 0.480582 -0.527697 0.234855 0.658865 0.709341 0.249243 0.691379 0.764714 -0.161939 0.669612 0.879827 -0.686466 0.512422

0.314794 -0.117477 -1.08363 0.503557 -0.00272347 0.840716 0.339688 0.0592971 0.417972 -0.791212 -0.303667 0.13833 0.210076 -0.682903 -0.616465 -0.318189 -0.911239 0.304319 -0.95699 -0.592047 -0.53684 0.825227 -0.301976 2.12846 1.56552 0.162618 0.676836 0.0761875 0.814811 -0.263296 -0.452411 0.687495 -0.168655 -0.418017 -0.090729 -0.196185 -0.446555 -0.166911 -0.53138 -0.76346 0.125063 0.751031 0.332376 -1.76395 -0.0617332 0.314065 -0.722713 -0.134516 0.464298 0.170381 0.436681 -0.672543 -0.27269 -0.0862637 1.85065 -1.86808 0.282309 -0.251095 0.358217 0.857953 0.570121 1.0872 0.522202 0.704082 -0.193039 -0.34008 0.154101 0.505631 0.0156266 0.583009 0.228423 -0.784793 0.172787 0.672795 -1.13242 0.116067 0.770873 0.401297 1.26619 -0.56991 -0.968717 0.129909 -0.0447561 0.626434 0.00241977 -0.333554 1.0236 0.458915 0.416316 -0.0338695 -0.960658 -0.673563 -0.0333612 1.06448 -0.07677 1.33479 -0.376647 0.265871 -0.313553 0.209477

0.0172381 -0.651934 0.452557 1.00697 0.28453 0.717015 0.339682 -0.694861 -0.102613 0.181575 -0.0116724 0.349811 -0.717619 0.471216 -0.331249 0.339638 -0.737749 -0.463819 -0.931115 0.434678 0.817056 -0.626651 -0.736971 -0.0356065 0.362834 0.495279 -0.066522 0.0294741 -0.795094 0.604513 -0.748369 -0.0469579 0.813463 0.125641 -0.351065 0.29193 0.611581 -0.437307 0.695287 -0.646049 0.472589 -0.682766 1.28714 0.29426 0.523261 0.422233 -0.019442 -0.530561 0.0289069 0.391577 0.482517 -0.432236 1.44244 0.548318 0.906132 -1.29728 -0.363199 -0.359255 0.226841 -0.3542 0.766938 0.390887 1.13808 1.29139 0.575164 -2.06758 -1.15271 0.025388 0.0982876 -0.559297 0.0220966 -0.54286 0.359329 0.181093 -0.705162 -0.566286 0.190978 0.655747 -0.183593 0.830618 0.21141 -0.655035 -0.526391 0.0462237 -0.988601 0.923342 0.310783 -0.564006 -0.94235 -0.750347 0.151082 0.84308 0.719061 -0.330998 0.335666 -0.262997 0.244383 -0.787094 0.32853 -0.795779

-0.312645 -0.795498 -0.189323 0.458929 -0.0701521 0.2908 -0.833024 0.724328 -0.0299238 -0.187488 0.608867 -0.954701 0.0510927 -1.02395 -0.156582 -0.0270957 -1.04199 -0.852149 0.576057 -1.07518 -0.477794 -0.346633 1.23313 1.00952 0.696327 0.744963 0.952047 -0.477671 0.444439 -0.735998 0.0991248 -1.11978 0.124091 2.64429 1.26498 -0.670331 0.982853 0.576459 0.0894558 -0.84041 -0.601295 -0.348023 -0.516092 0.688114 0.322539 -0.765415 0.54013 0.348592 0.328461 -0.815846 0.14212 0.782253 0.28212 0.293604 -0.589097 -1.74007 -1.51726 0.109092 0.0232654 0.583848 0.310033 -0.863002 0.600567 -0.0277802 1.09506 0.376445 -0.242753 -0.054916 -0.312519 -0.738689 0.269128 0.273479 0.0627799 0.433568 -0.579779 -1.70046 0.305625 0.205711 0.0947858 1.01847 0.37866 -0.788469 0.851879 -0.649527 0.151845 0.788158 -0.318145 0.396007 -0.151327 0.76746 0.232532 -0.594988 -0.621769 0.093107 1.27855 -0.575258 1.26006 0.287631 0.350156 -0.0272399

0.472982 -0.57805 1.04594 -0.389904 0.832267 -0.272292 -0.344291 -0.581416 0.895019 0.622542 -0.579766 0.446541 0.667818 -0.985886 0.784483 0.0400629 -0.845272 -0.224694 -0.554308 -0.0189422 -0.337592 0.17423 -0.110579 -0.0178318 -1.42821 -0.515137 0.117167 -0.851633 -0.71357 0.868938 -0.137484 0.280122 -1.0462 0.644765 -0.637454 0.246152 0.158311 -0.785544 -0.72618 0.299192 0.890913 -0.73367 -0.547497 1.17341 0.161198 0.807452 -1.47427 -0.609489 0.00653816 0.0455701 0.408048 0.383059 -0.879178 -0.365478 1.45331 -1.32118 -0.332831 -0.623821 -0.643272 0.768749 -0.66828 0.0346008 0.0156805 -0.359529 1.01365 -0.473463 -0.131028 -0.011408 0.295383 1.24076 -0.748078 -0.0579887 -0.473942 0.488356 -0.956875 -0.686677 0.276382 0.0513584 0.506864 0.67556 0.924526 -0.361369 0.0393141 1.07035 -0.0561232 -0.236211 -0.697038 -0.339055 0.293968 -0.779614 0.867352 0.367646 0.222116 -0.161546 0.707516 0.0560945 0.585711 0.525987 0.774372 -0.590224

0.614855 1.00426 0.399228 0.65697 -0.602184 0.714393 -0.576907 0.160271 -0.0434257 0.781742 -0.24579 -0.618599 0.804133 0.345643 -0.961109 -0.387731 -0.859519 -0.77592 0.134101 0.453026 -0.448103 -0.273073 -0.889306 0.231859 0.198121 0.791246 -0.780106 -0.0314864 0.417254 1.09979 0.243415 -0.403212 0.0196723 0.960759 -0.232907 -0.808543 -1.33529 -0.114657 0.200585 -0.167373 -0.94298 0.544304 -0.312295 0.0391895 1.63425 0.119045 -1.35991 1.20736 0.650829 0.932767 -0.39498 -1.14611 -0.580257 -0.31774 0.704084 -1.40296 -0.192126 1.27955 0.141164 -0.522172 0.785729 -0.696319 -0.322249 0.423922 0.911958 1.02473 -0.737778 -0.0370095 -0.724055 -0.25773 0.998071 -0.542075 -0.724783 -0.638916 0.339431 1.0635 -1.99213 0.313461 0.173575 -0.785202 0.516 0.881592 -1.02649 -0.96509 -0.0664281 0.521066 -0.658293 -0.842582 0.598957 0.84553 0.317897 0.838311 -0.443334 -0.553398 0.184861 0.259826 1.02542 -0.0326287 -0.471442 -0.455942

0.200365 0.799355 -0.538387 0.553724 -0.507788 -0.174086 0.356633 0.140976 -0.405582 -0.314995 0.124247 -1.1532 -0.713318 0.0361919 -0.881889 0.588409 -0.23865 -0.533924 -1.01047 -0.447249 -0.610437 -0.390762 1.11507 -0.114215 -0.954614 -1.11902 1.3652 -0.100112 0.119687 0.706269 -0.256873 -0.444657 1.23384 1.03239 -1.78887 -1.42273 0.389705 -1.00182 0.372033 0.0970407 -0.277064 -0.245895 0.443822 1.0736 -0.687746 0.740138 0.506715 -0.550366 -0.556097 0.0067531 0.597412 0.0454765 -0.67519 0.614924 0.809179 1.20808 0.897112 -0.0146801 -0.677484 -1.12998 -0.0349749 0.361772 0.366378 -1.15511 -0.473437 1.39469 0.631563 0.94889 0.828975 -0.502193 -0.130738 -0.220963 0.664298 -1.06401 0.309735 1.27897 -1.11259 1.14339 -0.361348 -0.436102 0.104483 -0.388544 0.495321 0.602946 -0.235233 0.48236 -0.047659 0.110967 -0.389661 0.396894 0.501229 0.799255 -0.409862 -0.562233 -0.604389 0.387506 -0.779701 0.782599 0.248129 -0.52283

-0.393666 -0.859437 0.286634 -0.585028 -0.131725 1.03885 -0.728822 -0.262416 0.414607 0.0741826 0.355017 -0.239233 -0.992744 0.317406 -0.470433 -0.152407 -0.16818 0.689173 -1.09441 0.167516 -0.253418 0.451804 0.542587 0.815553 -0.0310111 -0.0105719 0.781554 0.123039 1.27944 -0.476566 0.219954 -0.375625 1.0051 1.12786 -0.233424 0.954359 0.615395 1.14098 -0.121256 -0.571787 -0.461669 -0.979432 1.67039 0.434112 -0.644836 0.550784 0.316785 1.91592 0.199061 0.664277 0.230079 0.821033 1.47946 -0.576623 -0.0653914 0.218281 -0.466309 0.680889 -0.542631 -0.092205 0.484455 0.524636 0.944054 -1.16919 0.391012 -1.5887 -1.98311 0.459518 -0.724779 -0.0717152 0.385559 -0.396767 -0.167022 -0.11533 0.977317 -0.912348 -1.94214 0.168118 -0.440687 0.208413 -0.751459 0.75275 0.145821 0.375622 -0.519552 -0.159268 -0.00745116 0.268165 0.594661 0.0304108 0.818384 0.0760451 -0.168284 0.454214 0.692978 0.332964 -0.933599 0.855376 -0.640308 -1.04097

-0.249764 0.906063 -0.199012 0.773634 -0.355922 -0.610534 -0.750756 -0.104504 0.269366 -0.35285 -0.75427 0.750529 -0.347737 0.826386 0.41694 0.0558543 -0.524951 -0.765678 -0.823272 -0.987484 0.383439 -0.605307 0.626595 -0.496906 1.5518 1.05017 1.01167 0.663619 -0.0931436 -0.815869 0.836907 1.04686 -1.02979 -0.367167 1.84267 1.14041 1.25029 -1.22039 0.853326 -0.481828 -0.238975 -0.692267 -1.38444 -0.168431 2.10417 0.993181 -0.803834 -0.944653 1.00046 -0.58567 -0.721936 0.482863 -1.0257 -0.803227 1.46308 0.248879 -0.329292 0.41355 -0.726801 0.338061 0.815422 -0.81257 -0.0145739 -1.13883 -0.13737 -0.492136 0.923947 -1.01167 -0.0593803 -0.284437 -0.270023 0.792082 0.150148 -0.0300304 0.745714 -0.078371 0.0174664 0.430954 -0.307551 -0.134372 -1.05738 0.358626 -0.710594 -0.265469 0.146556 -0.614121 0.101889 0.139643 0.769374 0.485914 0.0854191 0.716671 0.593391 -0.700818 0.538873 -0.750097 0.27795 -0.187585 -0.183269 -0.429812

0.548258 0.429423 -0.575042 0.345207 0.278811 0.912112 -0.876076 0.865873 -0.137778 -0.030167 -0.400973 0.177303 -0.0908656 0.439373 0.988627 0.704972 0.768439 0.484962 0.199142 0.458599 -0.376897 -0.381357 0.551895 -0.844965 -0.397149 0.399484 -0.0841125 -0.639713 -0.333434 -0.944831 0.431327 -0.786719 1.17376 1.3785 1.13897 -0.0450038 0.440428 -0.349486 -0.153907 -0.180092 -0.1341 0.744374 0.688227 -0.389238 0.679609 0.0776783 -0.789472 -1.18369 -0.196583 -0.574486 -0.217228 0.71793 -0.604619 -0.194381 -1.62277 0.68992 1.26918 -0.350557 0.829269 1.31314 0.612689 0.18877 -0.837006 0.0723159 -0.552076 0.866724 -0.266699 -1.06303 0.0684082 0.362916 -0.282616 0.761008 -0.574152 -0.750315 -0.363669 1.25947 -1.24585 -0.135428 0.511956 0.107088 0.140138 0.429064 0.0847573 0.911012 0.272661 -0.221504 0.391965 0.393053 -0.575152 0.0165777 -0.888449 0.203105 -0.899974 -0.0528752 0.475221 0.784087 -0.43845 0.0034812 0.304398 -0.114696

-1.03898 -0.677852 -0.489158 -0.113859 0.0210508 0.195008 -0.234709 0.198886 -0.415428 0.548447 -0.818162 -0.830742 0.192089 0.0809755 -0.980269 -0.69351 0.786019 0.170177 0.0182993 -1.0352 -0.663369 0.714724 0.969035 1.10149 -1.62243 -0.951603 2.37275 -0.608322 0.347685 0.288266 0.336519 0.588448 0.381912 1.72598 -0.12219 0.11996 0.854614 0.263176 0.565825 0.620254 -0.165263 1.07023 -0.0607677 0.491007 1.438 0.901459 0.73415 -0.193175 0.0207902 -0.210306 -0.0497967 0.618164 -1.49129 -0.399023 0.880891 0.314203 -0.270327 0.51562 -0.201643 -0.742617 0.239372 -0.728289 0.346432 -0.567823 1.98508 0.258554 -0.502728 -0.0715172 0.224835 0.0780432 -0.404924 -0.784291 0.317104 -0.0315445 0.0587407 -1.4912 -1.02314 0.901363 -0.311083 0.380723 -0.424055 0.783485 -0.0484856 0.25374 -0.812655 -0.129441 0.59774 -0.0452793 -0.214311 -0.520233 0.447451 0.868302 -0.458501 0.497036 -0.245554 -0.530215 0.803308 -0.866881 0.398842 0.111093

0.461591 -0.770931 0.246205 -0.739995 -0.728669 -0.291583 -0.525825 -0.0878261 -0.301348 0.562585 -0.601837 0.160474 -0.0460313 -0.131662 -0.746057 0.353871 0.820633 0.802981 -0.471141 -0.219689 -0.451001 -1.23743 -0.866516 -0.400213 1.0832 0.196014 0.316409 0.1183 0.267968 -0.0021748 -0.738688 -0.307653 -0.225725 0.233084 -0.299653 -1.13649 -0.288431 0.900891 -0.68158 -0.0485061 0.0795578 -0.446132 -0.302105 -0.963688 0.801233 -0.276486 1.39796 0.560753 -0.367513 -0.821558 -1.01222 0.0692671 -0.260733 -0.987064 -0.0569353 1.57334 0.0848597 0.812665 0.148987 0.329466 -0.458768 0.502355 -0.337298 0.891088 -0.434294 -0.0846996 0.0113745 0.906699 0.232602 0.392887 -0.190412 -0.631412 -0.523595 1.11175 -0.564907 0.24321 1.70118 -0.269983 -0.139528 -0.780213 0.501431 0.213431 0.192711 0.821521 -0.941981 0.545235 0.595547 -1.14806 0.0306882 -0.293187 0.794923 0.924044 -0.878434 0.685374 0.0994578 -0.105938 0.185402 -0.385114 -0.113061 -0.23635

-0.926361 0.491013 0.169536 -0.7447 -0.370271 -0.764874 -1.0928 -0.761635 0.0704434 -0.00722663 -0.505624 -0.597866 -0.643393 0.947213 -0.851695 -0.621421 0.394722 0.654351 -0.596595 -0.533116 -0.748159 -0.864711 -0.494498 -0.32374 -0.8773 0.840238 0.804127 0.617463 -0.516434 -0.428753 -0.634589 -0.251652 -0.586256 0.75643 0.269658 0.173606 -1.03198 -0.00349067 0.385607 0.209066 -0.794571 -0.942138 0.786733 -0.378869 -0.723214 -0.9161 -0.0538038 0.375251 0.678327 0.59859 -0.916352 -0.921102 0.8198 -0.447426 -0.328249 -1.06517 -0.71392 -0.665719 0.66914 -0.0279489 0.0902426 -0.875289 0.804458 0.446516 0.88908 -0.134851 -0.412851 -1.05098 -0.949202 -1.02404 0.224521 -0.693876 -0.838095 0.0223373 -0.11797 -0.956366 0.20263 -0.827429 0.771773 -0.174645 0.757676 0.865518 0.0184245 0.708796 -0.497602 0.686252 0.788651 0.0134667 -0.861477 0.427706 -1.0697 0.26905 0.645092 0.831913 -0.0753106 0.695021 -0.213177 0.458271 0.640058 -0.193481

0.75485 0.215362 0.368233 0.79279 -0.753557 -0.594119 -0.926458 0.618141 -0.307286 0.909731 -0.335012 -0.367544 0.81443 0.622048 -0.589067 -0.537367 0.406332 -0.769536 0.534848 0.679407 0.868843 0.647346 0.122452 0.245394 0.560894 0.947305 -0.132751 -0.604645 0.572185 0.201785 0.254181 0.557129 -0.918285 -0.602786 0.725958 -1.2278 0.0228283 0.512456 -0.769673 0.742775 -0.0167058 -0.210121 -1.25607 0.103067 -1.1143 -0.474998 1.77456 0.816163 0.0447611 -0.358281 0.101305 -0.183083 -1.33637 -0.406317 -0.363053 1.11031 -1.15541 0.465169 1.09414 0.558619 -0.273999 0.349844 -0.608604 -0.455421 0.39389 0.142476 0.427578 -0.314278 -0.0484403 0.568875 -0.309339 0.872 -0.683735 0.435735 -1.32578 -1.95105 1.23045 0.693436 0.649376 -0.391869 -0.292533 -0.0524543 0.271915 -0.0540056 0.168242 0.714821 -0.498082 -0.205259 0.119096 -0.486873 -0.416971 0.800508 0.549855 0.156016 -0.596084 0.155331 -0.00625782 -0.8654 -0.618721 -0.837487

0.816273 0.107935 -0.830194 0.857244 0.701474 -0.379695 -0.708587 0.788908 -0.127103 -0.610191 -0.662858 0.126224 -0.290312 0.231546 0.960552 -0.899946 0.0159451 -0.717307 0.165352 -0.568627 -0.260815 0.181769 1.10204 -0.502507 0.467081 -0.173592 1.09668 -0.494425 -0.191991 -0.640788 -0.59243 -0.841839 0.705942 -0.205786 0.180059 -0.203626 0.0489781 0.487108 -0.172766 1.02468 0.0243085 -0.105084 0.219594 -0.417298 -0.508177 -1.02907 0.654233 1.42509 0.508698 0.435949 0.633215 -0.895171 -0.0164144 1.0983 -0.0458965 -1.51059 -0.487068 -0.0330078 -0.549333 0.351326 -0.549022 -0.172182 1.19156 0.40878 0.422083 0.640363 0.710218 0.114203 0.731723 0.821794 -0.153337 -0.417661 -0.0709133 -1.5402 0.490509 0.985533 -0.00387622 0.539552 0.148872 -0.301639 -0.180767 -0.295075 -0.357424 0.824815 -0.291711 0.504062 1.04034 0.10821 0.674505 -0.495066 -0.982956 -0.96522 -0.0174502 0.719775 0.625289 -0.580775 -0.674314 -0.238734 0.565137 -0.750454

-0.672381 -1.07119 -0.336012 0.626152 -0.321916 1.29655 -0.0289376 0.136779 -0.26604 0.394173 -1.23749 0.996878 0.221873 0.404467 1.04391 0.497524 -0.595485 0.798368 -1.12801 0.14358 0.532609 -0.510495 1.2906 -0.492121 -1.95473 0.569657 0.87625 -0.181361 -0.259697 -0.463537 -0.179911 0.338401 0.50031 0.599392 -1.87175 1.257 1.98475 0.524877 0.125234 -0.231345 0.556205 0.15005 0.0107236 -0.742189 0.157571 0.813494 0.511359 0.657776 0.936668 0.45125 0.505694 0.5513 0.614713 -0.712456 -1.40724 0.703193 0.156145 0.557134 -0.747357 0.253964 -0.474696 -0.0864502 -0.615007 0.643146 0.65312 -0.900864 -0.973536 0.961607 -0.726813 1.04055 -0.470582 0.527492 0.0510937 0.0514531 0.939294 -0.33841 -0.693446 -0.30255 -0.613454 0.021043 0.652822 0.77682 -0.101427 0.162169 -0.28789 -0.0628627 -0.35993 0.39895 -0.659086 -0.825371 -0.909897 -0.546965 0.223145 -0.344465 -0.605827 0.816019 0.173172 0.0210498 0.180111 -0.323306

0.194332 -0.682953 -0.382519 -0.729923 0.791034 -0.819692 -0.211845 0.312853 -0.241884 0.0994732 -0.374166 -0.238646 0.106257 0.69633 -0.807322 0.641662 -0.626418 -0.348055 -0.136092 -0.234127 0.179296 0.821051 0.917134 -0.0929755 -1.93083 -2.42796 -0.993517 0.437484 0.398821 -0.699465 -0.404054 0.362996 0.213273 0.315721 0.0908265 -1.0913 -0.373142 1.39847 0.939485 -0.601156 0.345265 0.0536564 0.220673 -0.493631 -0.175838 0.0792655 0.208819 0.0200549 0.874241 -0.486105 0.518718 0.396748 0.903717 -0.0479884 1.0676 0.90546 -1.49939 -0.242974 0.140505 -0.538542 -0.0934232 0.856762 0.549246 0.415023 0.014723 0.34905 -0.0551192 -0.221246 -0.769936 -0.708969 -0.114219 0.63022 0.446044 0.0936817 0.383718 0.689371 2.37583 0.780014 0.745121 0.37882 0.639095 0.208514 -0.25431 0.706366 -0.583579 -0.235427 0.585568 0.344176 0.235463 -0.194071 0.578965 -1.0999 -0.637133 -0.0751454 0.721929 0.545929 0.408434 -0.954805 -0.846649 0.766186

-0.287744 0.612277 0.637837 0.601424 0.673043 0.037183 -0.188126 0.367937 -0.428737 -0.0954748 -0.234191 -0.74581 -0.734887 0.447748 0.784091 -0.75019 -1.18544 0.229074 0.807717 0.43776 -0.636049 0.839611 0.249849 0.14893 -1.52165 -0.850185 -0.623463 -1.06368 0.208901 0.067144 -0.710236 -0.687213 -0.853704 1.14103 -0.388315 -0.872148 0.668295 -1.28545 -0.028578 0.124719 0.332295 1.08559 0.508865 0.247966 -0.620453 0.511604 0.0491907 -0.637466 -0.325002 0.0333041 -0.385729 0.299363 0.0596298 -0.34185 -2.38178 0.72453 -0.174942 -0.764449 -0.972789 -0.545728 0.696002 -0.500125 -0.381033 -0.269025 -1.47674 0.411982 0.73868 0.0957479 -0.0733317 0.204858 -0.508006 -0.382898 0.00262447 1.46226 1.03972 0.403254 1.62808 0.832139 0.398266 -0.780624 0.138834 -0.495328 0.264788 -0.914738 -0.553023 0.206968 0.696234 0.485576 0.98154 -0.815814 -0.00609399 0.916173 -0.499725 0.863954 0.772711 -0.595537 -0.404298 1.16078 0.779366 0.977669

0.263019 -1.145 -0.902261 -0.351841 0.85771 -1.0624 0.243932 0.0881398 0.435165 0.124803 0.188285 -0.540107 0.667948 -0.473152 -0.394005 -0.867963 0.77815 -0.522437 -1.07741 0.717886 -0.519521 -0.187223 0.534422 -0.173077 -0.431281 0.249901 0.297486 0.123934 0.282749 -0.0903435 -0.128808 -0.214758 -0.00477597 0.0421411 0.472832 -0.0778927 0.110817 -0.133751 -0.808574 -0.239063 -0.866072 0.5956 0.402881 -1.0735 -0.787467 -0.780739 -0.85419 -0.955077 -0.32739 -0.809252 -1.05635 0.339268 0.0936094 0.552446 -0.621629 0.760126 0.00996728 0.803373 -2.74015e-05 -0.637294 -0.125264 -0.999168 0.187232 -1.06078 0.257644 -0.230757 -0.0181298 -0.485449 0.733248 0.311676 0.392638 -1.00187 0.0215421 -0.153552 -1.10141 0.210225 0.0765816 -0.798554 0.447928 -1.12232 -0.5249 0.448873 0.350902 0.724094 0.133926 0.770563 0.621839 -0.755109 0.686522 -0.323324 -0.290463 -0.283538 -0.136491 -0.935377 -0.113348 -0.734105 -0.046671 -1.03184 -0.173892 -0.264756

0.663083 -0.33114 0.0231014 -0.613457 0.152587 -0.313239 0.823667 -0.0694377 0.640698 0.771821 -0.0788828 -1.09606 -0.355579 -1.11985 0.564759 -0.915435 -1.0997 0.32633 -0.258207 1.21094 -0.524793 0.154359 -0.191124 0.227571 0.911582 0.409985 0.316533 -0.276415 0.522775 -0.15803 0.354429 0.0788374 -0.0121997 0.270087 3.67661 0.405611 -0.0949388 0.951084 0.373807 -0.253771 0.115665 -0.932684 0.158769 -0.379355 0.701214 -1.05354 -0.474358 0.446842 -0.588575 0.307266 -0.610874 -0.169183 0.332625 0.751528 0.0996304 -0.518738 0.451355 -0.0215292 0.506218 -0.272723 -0.171693 0.0260597 -0.570421 -0.707499 0.686663 -1.23573 0.522798 0.786915 -0.805658 -0.764262 -0.611895 0.567688 0.0674391 -0.529967 -0.0450785 0.474055 -0.853231 0.180634 -1.25768 -0.0288818 0.166357 -0.350061 0.648294 -0.795967 -0.761975 -0.672316 0.05617 0.076138 -0.376223 0.0650158 -0.131461 0.960151 -0.918714 -0.122028 -1.3341 0.392672 0.267175 0.13373 0.482085 1.13126

0.652813 0.667002 0.711255 -0.749182 -0.260104 -1.10122 0.71884 0.297387 0.606592 1.12421 -0.768054 -0.637389 -0.383418 -1.01209 -0.386488 -0.0238443 -0.583573 0.687659 -0.353848 0.464989 -0.269511 0.151522 -0.237817 0.083482 -0.225088 0.323209 0.0550326 0.841248 -1.13429 0.765825 0.627673 0.583939 -0.110918 0.730567 -1.13828 -0.262607 0.780549 0.494714 0.222029 -0.238447 0.679692 0.444704 0.122316 -1.44689 1.90397 1.56657 -1.27879 -1.61824 0.841218 -0.960094 0.168421 -0.479866 0.346059 -2.2352 1.22602 2.30407 0.147114 0.511227 0.757324 0.177613 0.382026 0.495695 -0.0639982 -0.600484 0.054874 0.562558 -0.464897 -0.577634 -0.250479 -1.01612 0.200801 -0.487958 0.623476 -0.117188 0.062109 0.0761429 -0.258273 -0.129589 -0.147419 -0.66123 0.0796798 -0.734648 -0.31786 -0.494014 -0.301764 -0.868022 -0.704998 0.757929 0.9091 -0.68258 0.463499 0.534393 0.605406 -0.846521 -1.07179 -0.713497 0.19882 0.0155564 -0.0304435 -0.598085

0.194923 -0.779106 -0.102866 -0.547875 -0.693727 -1.19471 0.584227 0.0245927 -0.0761547 -0.014066 0.260819 0.651184 0.00645762 -1.01194 -0.866375 0.754306 -0.960728 -0.610874 0.819231 -0.714335 -0.369437 0.0581025 0.648902 -0.436347 0.595812 0.947363 -0.0763846 -0.269141 -0.432571 0.772274 0.0866745 0.837483 1.35592 -0.922526 -0.234798 -0.767918 0.471534 -0.919794 0.164345 -0.181635 -0.133044 -0.554817 0.877455 -2.09645 -0.873344 -0.607562 0.481381 -0.319173 0.406979 -1.2039 -0.385934 -0.888191 1.44526 -1.21099 -1.23267 0.508621 -0.784611 0.647048 0.890219 -0.302282 -0.0016223 0.10878 0.553996 0.433955 -0.464468 2.0482 1.97318 0.63454 0.589355 -0.535373 -0.432954 -0.38476 0.547927 1.11914 -0.380886 0.972113 0.867027 0.269774 -0.779683 0.937786 0.52626 0.279241 -1.13172 -0.350241 0.814806 -0.328543 0.642414 -1.26612 -0.936659 0.928563 0.240982 0.555951 -0.000897382 -1.20005 -0.789811 -0.881289 0.285552 0.993913 -0.724127 0.398433

-0.0851602 0.0525398 -0.809151 0.687426 -1.0082 0.187027 0.701988 -0.367147 -0.086986 -0.452144 -0.317738 -0.900853 0.465133 -0.436008 -0.0382529 0.674269 0.40461 -0.316381 0.842342 0.808102 -0.420009 -0.340353 -0.118044 0.469749 0.47838 1.13914 0.0993798 -0.72923 0.513318 -0.807841 0.449466 -0.806542 -0.68882 0.839763 -0.0950837 0.038764 -0.398899 0.501275 0.714107 0.541158 -1.18221 0.971196 -0.495863 0.404281 0.164468 -0.418341 0.569305 0.325409 0.456118 0.165695 0.153698 0.64467 -1.91979 -1.68112 0.426897 0.503928 -0.792741 -0.315038 0.700335 0.245415 0.153557 0.0451821 -0.323032 -1.46704 0.627069 2.01795 -0.134059 0.0286038 0.460891 -0.43657 0.445541 0.150723 -0.521804 -0.318201 0.51835 0.371252 1.35553 -0.473089 -0.159716 0.0356374 1.20669 -0.5714 -0.60626 -0.953897 0.0105751 1.12374 0.33013 -0.519712 0.10753 0.0789025 -0.553975 -0.243413 -0.920496 0.47435 -0.701508 -0.563223 0.00521974 0.956243 -0.183514 -0.110614

-0.247785 1.0981 -0.81216 0.450847 0.119484 0.433368 -0.326196 -0.234688 -0.856297 0.751203 0.700839 1.11309 -0.783964 -0.630947 -0.793454 0.0552283 -0.65096 0.50704 0.894709 0.59297 -0.665138 1.09179 -0.921104 -0.700701 0.779833 -0.163487 0.195414 0.14807 -0.264352 0.853903 0.82722 0.358682 0.797454 0.876456 -0.226074 -0.145464 0.274004 0.296522 0.468847 0.264735 -0.0473107 0.0515222 0.175379 -0.0701643 0.318465 0.249536 1.04545 0.595715 -0.235337 0.804345 0.106646 -0.0104277 0.717506 -0.0234745 0.159737 0.587879 0.844275 -0.694617 -0.437284 -0.540111 1.07941 -0.706071 0.69504 0.745585 -0.852256 -0.495231 -0.411393 0.194935 0.543348 0.943787 -0.622123 -0.592881 -0.133127 0.492046 0.340614 -0.786328 -0.226191 0.240323 0.684593 0.50388 -0.0141704 -0.284835 -0.595783 -0.360799 0.672212 0.516098 1.05731 0.40632 0.788267 -0.405827 0.748289 0.718444 -0.250782 0.386129 0.403348 -0.261033 0.66001 0.857605 0.884289 0.14754

0.349354 -1.18004 0.261899 -0.515664 0.404022 -0.4521 -0.514943 -0.873376 0.638025 -1.00676 0.45875 -0.390939 -0.279729 0.70337 0.174185 -0.71238 0.205601 0.0827313 0.608447 -0.0779806 0.573264 0.415198 0.0163472 -0.34718 -0.949958 0.915564 0.87569 -0.57478 0.634251 -0.192707 0.32039 0.465615 0.402978 -1.56329 0.617469 -0.138733 -0.018089 -0.0971544 -0.534327 0.057506 -0.426869 -0.674148 0.355787 -1.74962 -2.05307 0.482378 0.85158 0.605004 -0.989217 0.0407036 -0.467002 0.866863 -0.994036 -0.173033 0.261588 -0.0981616 -0.610732 0.108456 -0.0987804 -0.191982 0.879375 -0.634356 0.994426 -1.41141 0.185367 1.53959 -0.78915 1.22264 0.906322 0.629346 -0.197385 -0.539228 0.675172 -0.419656 0.230319 0.396492 0.142265 -0.232378 0.143101 0.44309 0.499964 0.230867 0.342278 1.19756 -0.550837 0.274768 -0.101736 0.545475 -0.75672 0.672802 0.362671 0.50857 0.595395 0.581813 -0.416748 -0.202998 0.35554 0.278756 -0.604958 0.191764

-0.00377885 0.583285 0.672113 -0.459332 -0.894056 0.0753544 -0.791043 0.524695 0.634282 0.0380634 -0.0892918 0.406372 -0.664005 1.13247 0.40094 -0.259469 0.272077 1.10667 0.684288 0.179487 0.554167 0.303315 -0.30123 -0.17999 1.19122 1.19839 -0.0223997 -0.725143 0.172015 -0.461484 0.721515 0.895508 -1.0443 -0.222398 0.373579 -1.03666 -1.46222 -0.548994 0.672661 1.03474 0.56567 -0.618946 0.6554 1.48573 -1.11825 -1.68519 -0.485897 0.246868 -0.554878 -0.739996 -0.459145 0.898366 0.808382 1.21096 -0.796584 -0.115762 0.892899 0.170599 0.0666531 -0.759967 0.852146 -0.395176 -0.831673 1.72945 -1.54529 -1.17138 1.63533 -0.794811 0.243839 0.505037 -0.60847 -0.381468 0.526203 0.864984 0.0648253 -0.391484 -0.786406 0.179862 0.708245 -0.505717 0.388533 -0.656301 -0.62763 -0.28803 0.881175 0.780869 0.402628 0.0786932 -0.0482315 -0.767822 0.256224 -0.123423 -0.071194 0.233374 -0.36291 -0.158677 0.68755 -0.338205 0.292661 -0.317474

-0.686948 0.905248 0.538528 -0.864604 0.638199 -0.633723 -0.604163 0.627183 0.369897 1.02398 -0.758735 -0.256329 -0.502898 -0.0527441 0.635928 -0.693198 -0.454996 -0.0501469 0.204397 0.395821 0.0341576 -0.516663 -0.938734 0.964276 0.988756 0.418896 -0.683567 0.172441 0.780422 -0.743841 -0.859533 0.774753 0.631711 -0.366475 1.50223 0.841754 0.142961 -1.45192 0.125576 0.0582505 -0.832666 0.168962 0.600567 -2.25178 0.815883 -0.546154 -1.28476 0.145889 0.681487 0.751597 0.30783 -0.49488 0.979263 -0.930211 -1.0772 1.67843 -2.02273 -0.239916 -0.130914 0.887977 0.484126 -0.20181 0.524131 0.460711 -0.060435 1.6324 -0.952348 0.532626 0.473353 0.997179 -0.140931 0.380937 0.168878 -0.443425 0.404705 -0.194089 0.675427 -0.955472 -0.220582 -0.231921 0.683055 1.02391 0.2406 0.317233 0.191149 0.595153 -0.119061 0.402168 -0.137789 0.693285 0.201479 -0.666601 -0.565821 -0.429202 0.679202 -0.373203 0.790278 -0.421985 -0.451046 0.10298

-0.530208 0.409172 -0.51991 0.441157 0.610227 -0.912774 -0.931913 -0.117162 -0.791596 -0.224608 0.62083 0.790858 -0.25263 -0.196352 0.276639 1.0369 -0.690564 -1.0395 0.427599 0.198697 0.662987 -0.549711 0.44378 -0.523298 1.14769 0.760023 -0.348598 -0.194494 0.553487 0.295601 0.955767 -1.04595 -0.616035 -0.633069 -0.475564 -1.9969 0.252781 0.898059 0.112898 -0.289889 -0.467689 -0.212846 -0.755281 1.02142 -0.0959623 1.28478 1.97191 1.21881 0.886107 -0.42125 0.0897103 0.654203 -0.253334 0.152783 0.884907 -0.970504 -0.0972508 -0.645311 0.347444 0.34209 0.666688 0.35663 0.31372 -0.623156 1.40561 0.666941 -0.413147 -0.504988 0.0467864 -0.981082 0.370884 0.615054 0.0396869 -1.12449 -1.1612 -1.31469 0.890407 -0.555847 -0.642057 0.700614 0.0768749 0.612259 0.355042 -0.640173 -0.892453 -0.13212 -0.243083 0.989485 0.258841 -0.995304 0.404272 -0.0848957 0.238607 0.0293558 0.286491 0.0109099 -0.674992 -0.876893 0.521745 0.314179

-0.681604 0.00472817 0.146466 0.259067 0.0705541 -0.866042 0.764056 -0.11145 -0.628976 -0.791385 -0.314142 0.368594 0.852482 1.00006 0.666294 1.02437 -0.0622915 -0.606345 0.994091 -0.81917 -0.604074 0.463376 -0.156991 0.00613346 -0.582503 -0.686733 -0.457637 -0.0774868 -0.243727 -0.561101 -0.518224 -0.0619802 0.359506 -0.217117 -1.30023 -0.428847 -0.06137 0.957654 0.326152 0.953134 -0.867299 0.949528 0.697173 0.506931 0.421671 0.30995 0.452272 0.209222 0.121105 0.936585 0.0468669 0.453663 0.749118 -0.925027 -0.00419306 0.82074 -0.714687 1.37938 -0.377907 0.377283 -0.57225 0.0314574 -0.494592 0.995918 -0.781758 -0.890609 -0.973206 -0.724657 -0.785443 0.627 0.957732 -0.720243 0.44169 0.192943 -1.11616 0.0719688 0.742035 1.01291 -0.647943 0.00865518 0.708355 0.173646 -0.471722 -0.139758 0.163339 0.5896 -0.383444 0.949427 0.637461 0.223456 0.00170595 0.996762 -0.68454 0.218474 0.861157 -0.069506 0.547395 0.972018 -0.153777 0.639861

0.295794 -0.366838 0.747328 -0.260644 0.746419 0.851065 -0.9145 0.592807 0.717254 -0.769986 -0.405254 0.422967 0.431445 0.159973 -0.605202 -0.309787 -0.259687 -0.0924892 -0.638288 -0.756505 -0.89823 0.369199 -0.676168 -0.499907 -0.361362 -0.912454 0.188744 -1.02647 -1.06348 -1.00439 0.564486 0.398759 -0.114966 0.53788 -0.756866 -0.388899 0.39875 -0.546762 -0.599684 0.241683 -0.224798 0.145128 -0.0995198 -0.628793 -0.690581 0.180769 0.0154665 0.122428 -0.748142 0.508977 0.433947 -0.519029 0.0371781 0.759573 -0.0782382 0.510514 0.805379 -0.739053 0.64804 0.897763 -0.681762 0.303676 0.398376 0.191808 -0.0948142 0.6337 -1.10007 -0.613179 -0.782482 -0.570744 0.685207 0.042665 0.675297 -0.396278 0.476336 -0.976527 -1.03424 -0.374496 0.17764 -0.801467 -0.842774 -0.301068 -0.23365 0.270389 -0.353509 0.845559 -0.0558583 -0.417477 -0.923637 -0.434854 -0.466225 -0.501061 -1.05214 -1.00952 0.837863 -0.105923 0.744025 -1.10128 0.323296 -1.00501

-0.407336 0.313698 0.388063 -0.577207 0.931875 -0.203851 -0.518824 -0.826416 0.655798 0.849142 -0.544402 0.857614 -0.501985 0.0348433 0.0537285 0.144381 0.012297 -0.95243 1.03729 0.524377 -0.0671241 -0.38217 0.972703 0.788904 -0.202988 1.36324 1.3464 -0.450242 0.86941 0.655413 -0.168677 -0.345883 -0.111642 -0.263203 0.204745 0.610689 -0.23723 0.291008 -0.279086 -0.506847 0.189189 0.288711 -0.83663 -0.536192 -1.63395 1.26638 -1.2451 0.364763 0.585269 -0.378693 0.00134102 -0.4135 0.197685 0.104601 1.02063 1.90385 -2.21086 0.278469 -0.560345 -0.22716 -0.0938622 0.352749 0.0379614 0.176639 -0.067905 -0.601778 -1.31875 -0.673358 0.462716 0.123785 -0.507642 -0.342271 -1.07717 0.344236 -1.1168 -1.22858 -0.412965 0.00428754 1.03695 0.781673 0.421577 -0.176156 1.18569 -0.134648 0.825276 0.458093 -0.423859 -0.468747 -0.141053 0.069333 -0.107598 0.336304 0.887322 -0.78566 -0.0100886 0.241867 -0.534495 0.232857 0.272484 1.06491

-0.733001 0.664038 -0.493834 -0.628674 -0.81279 -0.742447 -0.162216 -0.521393 0.323301 -0.0212471 0.981386 -0.56704 0.266143 0.452534 -0.385932 -0.225159 -0.00309456 0.190577 0.454657 1.02222 -0.739275 -0.688264 -0.134285 -1.41459 0.296655 -0.109572 0.538667 0.0537966 0.293486 -0.370362 -0.0162991 0.764049 -1.81493 -1.00822 0.276381 -0.0319016 0.406192 0.204613 -0.320777 -0.0757249 0.395398 -0.428946 -0.63557 -0.637109 -1.79019 0.597245 1.42579 1.71267 0.722365 0.170562 0.562395 0.940454 -0.188058 0.869215 -0.0717281 -2.3433 -1.31802 0.569085 0.17233 -0.60987 0.839844 -0.727287 -1.58648 1.17423 0.227708 -0.0729317 -2.05894 0.217173 -0.517687 -0.25752 -0.670094 1.08914 -0.0549485 0.924767 0.506797 0.254023 -0.464702 -0.498157 0.318047 0.963317 -0.866511 -0.163011 0.734641 0.905374 0.783639 0.778239 0.922901 -0.249176 0.26263 0.400989 0.353217 0.071525 0.587028 0.406948 -0.120789 0.235132 0.394458 0.031196 -0.31556 1.15895

0.250914 -0.66095 0.652066 -0.361045 -0.860457 -0.375263 -0.722599 -1.05793 0.319905 0.556328 0.600579 0.463852 -0.236199 0.706737 0.318289 -0.797276 0.26647 0.139549 -0.138361 -0.737682 -0.786231 -0.504574 0.241422 0.0158524 1.2456 1.62987 -0.556815 -0.265119 -0.293971 -0.142682 -0.569182 -0.518783 0.496984 -0.414954 0.936668 1.08578 0.531697 1.04058 0.623481 -0.858184 0.0284159 0.641456 0.93493 1.00315 -0.0320097 -1.13495 1.12141 0.322111 -0.946899 -0.341126 -0.199358 -0.466247 0.0471277 -1.65206 -0.403957 -0.417684 0.920608 0.759151 -0.141544 -0.294237 -0.938107 0.378402 -0.0760273 0.8159 0.95332 0.00360143 0.792686 -0.329173 -0.055055 -0.0732065 -0.512176 -0.870278 -0.715541 -0.993047 1.54971 1.65233 -0.876387 0.0855827 0.772622 0.445596 -1.09851 -0.382047 -0.872143 -0.105797 -0.324029 -0.515291 0.181208 -0.341376 0.552012 -0.748081 0.523798 0.642098 0.755698 -0.376756 0.385089 0.358916 -0.538193 -0.358941 0.749225 0.55851

0.664569 -0.583585 0.719264 -0.724346 -0.174779 0.379157 0.931871 -0.755052 -0.294387 0.848071 0.766533 -0.160624 -0.537765 -1.04071 -0.999312 0.514932 -0.351529 0.426292 -0.745478 -0.80365 0.697828 -1.29382 -0.950988 0.661602 -0.544587 0.331795 0.157672 0.201414 -0.606886 -0.0147054 -0.229703 -1.14851 0.804872 0.0762727 -0.581256 -0.598899 -1.20959 -0.506844 -0.160612 0.0384705 -0.646426 -0.436629 -0.90872 0.216369 0.0811604 -0.936847 -0.856932 0.45985 0.427596 0.0710844 0.699552 0.184486 0.0553216 0.484541 0.276137 0.800394 0.0946886 -0.831666 -0.103537 1.0162 0.142758 0.684226 -0.816473 -0.774792 0.0701482 0.0963517 -0.274166 -0.227566 0.360806 -0.800539 0.742405 0.681919 -0.116511 0.701813 0.509059 1.06513 0.62516 0.882263 0.51184 0.307704 -0.343782 0.188276 -0.42777 0.752315 0.266283 0.685534 0.579216 -0.0560577 0.759892 -0.670166 -0.27793 -0.023996 -0.843932 -0.0794614 0.89494 -0.195426 0.673788 0.260089 0.563151 -0.0722532

0.710725 0.654236 -0.0461673 -0.413169 0.506399 1.06269 -0.364509 0.424142 0.725741 1.03974 -0.145777 -0.540245 0.0906769 0.522849 -0.648161 -0.313862 0.419707 1.05104 0.462099 0.0985723 -0.695795 -0.952868 -0.921561 -1.20847 -0.345125 -0.985336 0.210769 0.0875563 0.819835 0.0764701 -1.03598 0.00823714 -0.349814 -0.507836 1.71171 -1.01761 -0.723648 -0.372821 0.754565 -0.41123 -0.97786 -0.869174 -0.0979448 0.778633 1.41065 -0.362653 0.55346 0.44682 0.0667618 0.709817 -1.14981 0.00755675 0.868894 -0.372608 0.169768 0.358871 0.189603 0.148206 -0.834741 0.994094 -0.861798 -1.12353 -0.0710316 0.351987 -0.145597 0.871122 -0.112545 0.223114 0.132776 -0.637611 -0.731806 -0.131038 -0.451899 0.206795 -1.40148 -1.52171 -1.37733 -0.722687 0.511593 0.221479 -0.888311 0.323682 -0.777472 0.659889 0.377354 -0.878076 -0.0116056 0.880865 0.204317 -0.0908688 0.724826 0.588582 0.105923 -0.458014 -0.696418 0.987744 0.0851166 0.188164 0.78847 0.953577

0.351617 0.840353 -0.0683295 1.24928 0.330606 0.673833 -0.607521 0.234689 1.01267 0.464552 -0.53284 -0.725578 0.433181 0.153489 1.08493 -0.705261 -0.0743887 -0.25429 1.09528 -0.85067 0.760863 1.2802 0.874263 -0.409755 0.303748 -0.176774 -0.479222 0.0361349 -0.112915 -0.684063 0.204619 -0.103125 -0.544731 0.431658 -0.570568 -1.4393 -0.266915 -0.329773 -0.652189 0.238627 1.60341 0.373777 0.222791 -0.561268 0.656148 -1.07781 -0.228035 -0.198551 0.896489 0.00332482 0.211498 0.866277 -0.475959 -1.32243 0.333153 -1.80106 -0.738165 -0.264467 0.521415 0.0745977 0.0564545 -0.223447 0.29484 -0.957446 0.769994 0.159307 -0.771275 0.507467 -1.02987 -0.309452 -0.726343 -0.403063 0.289835 0.477198 0.254076 0.144018 -0.0310899 0.967985 0.473514 -0.713352 -0.228035 -0.650294 1.0756 0.575968 -0.321839 0.776856 0.731205 -0.204443 -0.619196 0.20656 0.360767 -0.289326 0.46481 0.0215443 0.979441 0.728925 -0.394161 0.744861 -0.617906 -0.510314

-0.828197 -0.414849 -0.371908 0.50906 -1.03782 0.515012 -0.560383 -0.66841 0.311414 0.894949 -0.493928 -0.903861 -0.899034 -0.831692 0.386 -0.495124 0.73895 0.0742697 -0.0399208 0.803735 -0.785405 -0.497904 -0.319945 0.652254 0.332047 -0.60589 0.11781 0.778889 -0.81021 0.548692 -0.641052 -0.535614 -0.790263 -0.00536092 -0.977297 -0.707936 -0.400261 -0.527159 -0.367515 -1.01326 -0.538071 0.239166 -0.862818 -0.51038 0.535467 0.693441 0.0406661 0.160192 -0.330257 -0.869142 0.052263 -0.0309173 -0.361224 0.668623 -0.183852 -0.859631 -0.803745 0.777426 0.857313 -0.543704 0.418309 -0.732861 -0.0658804 0.700336 0.374584 -0.0145845 -1.1162 -1.00191 0.507991 -0.350165 -0.977679 -0.998296 0.927727 -0.714409 -0.464468 0.239783 0.762291 0.760699 -0.42016 -0.480357 0.909073 0.642238 0.545275 -0.348333 0.469728 -0.743688 -0.280167 0.746328 -0.906926 -0.428764 -0.809976 0.537545 -0.121359 0.199433 0.329418 -0.68588 -0.784782 0.31743 -0.682294 0.718198

-0.958694 -0.545032 0.815897 -0.955329 -0.226822 -0.509556 0.407696 -0.373352 -0.718558 -1.00546 0.202491 -0.702699 0.769454 -0.183956 -0.0274001 0.225764 0.0821619 0.713429 -0.00130064 0.2308 -0.643827 0.313514 -0.197115 0.210718 -0.519592 -0.860603 0.539868 -0.290957 0.590401 -0.957983 -0.407127 0.681212 -0.568611 -0.741174 0.624126 0.262869 -0.229252 0.00630534 0.922048 0.20249 0.205591 0.203448 0.431351 -0.177097 -1.11896 -0.514577 -0.91429 -0.0368191 -0.82497 0.152689 -0.597264 -0.39945 -0.653933 0.292085 0.90381 -0.0321714 0.431924 0.466087 0.680246 0.113043 0.651946 -0.702852 -0.273217 -0.813079 -0.444625 -0.560867 0.481555 0.533309 0.62283 0.513761 -0.224197 -0.156661 -0.362105 -0.78522 0.566601 -0.385928 -0.272245 0.774241 0.85756 -0.019043 -0.0317837 -0.811488 0.627089 0.422316 0.405517 0.468003 -0.64881 -0.0396259 0.0901974 -0.948308 -1.03989 -0.318381 -0.668361 -0.199767 -0.0370194 0.0964275 0.322631 -0.576055 -0.399673 -0.0979352

1.01926 0.528951 0.832539 -0.332258 0.785948 0.519712 0.383426 -0.387417 0.41167 0.234066 0.623363 -0.617203 0.367704 0.148535 0.763659 -0.187752 -0.331438 -0.851458 0.766531 0.796202 -0.743996 0.733172 -0.556101 -0.390102 -0.531269 0.343562 0.640205 0.841699 0.849253 -0.672158 -0.212706 0.773449 0.694883 -0.372942 -0.627557 0.444665 1.05377 0.746876 1.03336 0.374979 -0.103711 0.556797 0.636863 -0.658507 -0.284257 0.388118 0.0634911 0.327387 0.551528 -0.264576 0.0518212 0.724023 -0.597906 0.572466 -0.75142 -0.00777206 -0.112016 0.887242 -0.246155 -0.338674 -0.834218 0.494435 -0.602884 0.959567 0.962089 -0.139725 0.416917 0.994724 -0.49924 0.30783 0.362607 0.368234 -0.148537 0.0957591 0.587673 0.582554 -0.464275 -0.400427 -0.211161 0.930192 0.328767 0.847467 0.590421 0.696483 0.289373 0.857002 -0.395188 -0.919408 0.730025 0.370095 -0.21212 0.882391 -0.184901 0.121925 0.640821 -0.262638 0.88166 -0.0331939 -0.228976 -0.596171

-0.711196 1.06696 0.750862 0.172836 0.228219 0.394821 -0.37746 0.294712 0.785913 0.286321 0.14191 0.117895 0.273059 -0.217058 -0.330834 -0.721025 -0.429491 0.378424 -0.61498 -0.855643 -0.388435 0.319018 -1.03333 0.392687 -0.0942276 1.18092 0.816158 0.830463 -0.283955 -0.297226 -0.458695 -0.250915 -0.481425 0.704181 0.650677 0.0985236 0.203202 -0.920997 -0.104782 0.125924 0.566722 -1.03245 0.792291 -0.305471 0.30732 -0.0760081 0.125462 0.432178 0.717675 0.221384 0.662949 -0.729339 -1.00158 0.299303 0.967212 -0.915408 -0.331724 0.590715 -0.874942 0.857867 -0.59308 -0.458003 -0.699632 -0.37568 -0.378373 -0.856465 -0.276604 0.473831 -0.871581 0.622103 -0.22291 0.798613 0.514624 -0.684039 0.329878 -1.4502 0.483871 -0.271988 0.724877 0.0323867 0.697278 0.119959 0.414837 0.635427 -0.687733 -0.299959 -1.10199 0.828856 -0.452432 -0.83927 0.607583 0.0283958 0.155748 1.17022 1.1403 0.805145 1.22861 -0.50191 0.243349 1.16865

0.964455 0.991743 0.808343 0.145788 -0.832111 0.506038 0.444583 0.640596 -0.430016 0.163462 -0.35904 1.01395 0.40329 0.223746 0.494648 -0.76102 -0.515906 0.79358 -0.814658 0.275253 -0.738321 -0.204083 0.50428 0.432903 0.0244867 0.177915 -0.402959 -0.201204 0.701173 0.468813 -0.143817 -0.40295 -0.0546963 0.254317 -0.774684 0.544976 -1.53539 0.342998 -0.303207 -0.609861 -0.601251 -0.390944 -0.25181 -0.497824 -0.289253 -0.589209 -0.884795 0.13239 0.781525 0.0130313 -0.838192 0.624287 -0.220146 0.260263 0.547777 -0.619772 -0.421135 0.102564 -0.86165 0.377626 -0.768416 -0.15713 -0.379598 -0.0272477 0.821171 -0.295826 -1.46987 0.486965 -0.17091 0.266823 1.00192 0.154973 -0.86419 -1.52517 0.319389 -0.640468 -1.0978 -0.522651 -0.438229 1.04997 0.703099 -0.450023 0.65702 0.671931 -0.544056 -0.671746 0.160973 -0.639259 0.515437 0.404004 0.686699 1.04165 -0.462124 1.00914 0.118555 1.01208 -0.0372893 0.617147 0.574056 0.703182

-0.877086 -0.297258 -0.67153 -0.756173 -0.264578 -0.840843 0.211838 -0.21288 -0.424947 0.296336 -0.341508 -0.888493 -1.24285 -0.473817 -0.843247 -0.266261 0.0607893 0.0413569 -0.482045 -0.814512 -0.955256 -1.29365 -0.255365 0.508324 0.958065 0.738828 0.148771 -0.271125 -0.93668 0.166791 0.483442 -0.675987 -0.191778 -1.49007 -0.221651 1.5141 0.0266995 -0.431132 -0.722676 0.3875 0.610703 -0.00644343 0.375974 1.09834 1.0383 2.06055 0.230095 -0.340368 0.0418957 0.122265 -0.259869 0.138372 -0.272424 0.581258 0.595015 0.90959 0.535436 0.744828 0.635699 0.800178 -0.0293624 0.177566 -0.321858 1.15298 0.248982 1.14558 1.01692 -0.646303 0.799211 -0.402997 0.648014 0.339512 1.42392 1.28838 0.195226 0.226252 1.5561 -0.0950753 -1.12677 -0.65191 0.130145 -0.0339118 0.47924 -0.511274 -0.678428 0.582097 0.669208 -1.19262 0.00106679 -0.0300015 0.687005 -0.906923 -0.858715 -1.02555 0.328584 -1.40176 0.26938 -0.864941 -0.82376 0.17443

1.13019 -1.27615 1.08281 1.32485 -1.03516 -0.436144 0.517834 0.578393 -0.438396 -0.714631 -1.76233 -0.376226 -0.215476 0.198609 -1.55182 -1.34209 0.669055 -0.214514 -0.83006 -0.997178 0.135933 -0.205033 -0.0749505 1.26631 -0.0488932 0.523912 0.70764 0.0147971 -0.404807 -1.29424 0.282933 -0.428856 -0.261984 -0.238286 0.605259 -1.24595 0.424569 -0.181117 -2.25318 -1.22689 1.50237 -1.12302 0.219369 1.1105 -0.833727 -0.620571 -0.868876 0.841293 -0.264089 -1.42639

-2.10899 2.27224 -1.42255 -0.445258 0.331355 0.266337 1.42221 -0.725985 -0.123238 0.567461 0.982816 2.17616 -0.128254 1.63924 -1.21141 1.10542 -1.8567 1.51335 0.607493 -1.68722 0.711437 -1.43257 0.615534 -0.000247791 -2.06388 -0.121299 0.863387 -1.81824 -2.09767 -2.29684 -0.531499 -1.20913 -1.6005 0.842862 1.40898 1.10986 -0.360943 0.432762 -0.63893 -1.47459 -0.2079 0.139764 1.72703 0.089506 0.203676 -0.928422 -1.56917 0.368551 1.12173 -1.05028

0.709863 1.19115 -1.17807 -2.72903 1.17087 0.469965 0.0355732 -0.884627 -1.74532 1.29808 -1.00986 -1.28836 1.33808 0.161486 -1.7634 0.577206 -1.12163 -0.305006 -1.47793 -0.441085 -0.77991 2.02101 -0.0334179 -1.47313 1.47033 -1.0795 -0.628493 -1.6675 -0.415894 -1.70042 -0.870729 -0.454153 2.53685 -2.74375 0.61848 0.110176 0.267251 -0.342661 1.12257 1.10539 -2.80862 -0.336441 -0.170053 2.43716 -0.432911 0.234217 -0.499039 0.70888 1.10868 -2.40809

-0.421145 0.453733 1.05772 1.45441 1.65883 0.470531 2.00371 -1.1265 0.278155 1.65525 -1.2138 -1.31577 -0.360344 -1.21234 -1.02675 -1.51066 0.783421 0.595242 -1.95542 -0.612732 0.398194 0.119576 0.788023 -2.35823 -1.03917 -1.62171 0.262358 1.1611 -2.26913 -2.3262 -2.22657 -0.285551 0.287513 2.11351 -0.593178 0.218012 -0.294207 -0.791487 1.14152 -1.08795 -0.640069 0.526625 1.31699 -2.36569 0.567568 0.832997 -1.16716 -0.00317737 1.09093 0.0487012

0.773563 -1.18713 1.3307 1.12542 0.243919 -0.669245 0.772715 -0.641565 -0.990526 -2.04661 -1.30763 -1.92039 0.527069 -1.43906 -2.47779 -0.205575 0.90478 1.28494 0.629275 -0.732714 -0.815774 0.974122 -0.572391 1.26882 0.000908696 1.2984 0.28644 0.965311 -1.31753 -0.108794 -0.171336 0.336587 0.0471345 -0.368557 -0.358505 -0.0897305 -0.975545 0.00960593 -2.73706 -0.593876 0.530077 -0.55821 -1.77441 -0.16922 0.586095 0.112808 0.382303 0.00213482 0.411702 -0.685683

1.78696 -0.3697 -1.32844 2.09456 -1.10185 0.638269 2.112 0.146637 -0.629108 2.1607 -0.20847 0.313086 1.8238 -0.365941 0.226562 0.148286 0.295066 -0.279099 2.21404 -1.44331 0.624249 -0.846867 -1.42648 -0.186133 1.00563 0.543682 0.689464 -0.565995 1.07731 -2.28619 -3.05931 -0.733882 -1.28299 -0.669967 -1.62252 1.37033 -0.990741 -0.668711 0.181987 -0.141526 -3.24021 -1.48824 -0.720075 1.20453 0.303962 0.475401 -1.18843 -0.655682 0.137389 -2.11081

-0.501733 -0.972313 -1.30331 1.38902 0.913059 0.959107 -0.132865 0.119823 -0.51161 -0.812727 1.42749 -1.7208 -0.60791 -1.64413 0.454428 1.31961 -1.80152 1.50797 -2.38144 0.246817 -0.219393 -2.17892 -1.9136 0.489359 -1.1582 1.65552 0.0485893 0.290981 1.8821 2.21725 -1.38666 -0.429662 -0.353148 0.925652 2.5442 -3.00617 0.243471 0.108804 0.0815319 -3.15691 1.11914 -0.0394019 -1.05533 -1.2928 0.56702 0.848575 -1.06441 -0.794456 0.324503 -1.37137

2.5077 -1.6339 -0.156184 1.69774 -0.410674 -0.566019 0.807563 -0.869027 -0.181973 0.213608 2.56285 0.427943 -0.178452 -2.05565 1.26431 1.26477 -1.72507 -1.94771 0.929448 0.461187 -0.338494 0.221552 -0.144645 1.02184 -0.137308 -0.402793 0.226488 -2.14378 -1.14037 -0.928673 -2.20888 -0.701233 -0.857242 0.57598 -3.89178 2.48184 0.532013 0.543765 -1.27359 -1.12971 -1.79674 -1.26996 0.571584 -0.0775275 -0.373091 -0.210237 0.193967 0.100133 -1.40942 1.33446

-1.37976 -2.93172 0.948643 -0.428977 1.1596 0.782152 -1.68741 -0.487933 -0.969552 -1.36864 -0.219736 -1.89887 0.192712 1.99572 -0.563859 -1.14442 1.19657 -1.35757 -2.6166 0.610332 -0.519388 0.176263 -0.159492 -3.14286 -0.454417 -1.42718 -0.167777 1.20753 0.873116 0.225899 0.125767 -0.74079 0.184352 -0.222943 1.03598 2.12545 -0.385943 0.951766 -0.689342 1.007 -0.877582 0.51001 3.22159 1.3441 0.30681 -0.190842 -0.819859 -0.515018 1.39423 -0.0524348

-1.50911 0.908101 0.950122 -0.0778381 1.11824 -0.507697 -0.41187 -0.52913 -0.735084 -1.99396 -2.13972 -2.58871 -0.874539 -0.292754 0.516736 -1.72282 -0.921915 0.204844 -1.36262 0.228253 -0.960065 0.421997 -0.693385 1.43997 -1.12876 1.02918 -0.406146 -2.16368 0.130373 1.81207 -0.0444806 0.227092 2.06471 -1.01059 0.498839 -0.709463 -0.245648 -0.533757 1.3136 2.15124 -0.923226 -0.877949 0.247347 -0.681952 0.293104 0.437776 0.201629 -1.88974 0.467745 1.13319

-0.786618 -0.401524 -1.2863 1.0599 -2.46137 -0.247069 2.7529 -0.391065 -0.0237463 -1.41547 0.348794 -0.138273 1.21393 0.464705 1.11774 -0.0963787 0.146578 -0.319558 1.34059 -0.976309 -0.365369 -1.6289 -1.30962 -0.306464 -0.388896 0.652749 -0.965112 -1.61767 0.954552 -1.78982 -1.90484 -0.162133 -2.37481 0.660212 0.165346 -3.04833 0.544698 -0.714167 1.68176 -2.00294 -1.7531 0.77033 0.733858 -1.952 0.365488 -0.41584 0.794762 -1.06231 -0.646267 2.07995

-1.567 -0.812869 -2.48528 -1.58513 -1.1297 0.361884 -1.83807 -0.149059 1.05402 -0.395351 0.509674 1.2116 0.956495 1.24967 -0.588809 -2.20284 -1.528 -1.28706 -1.76392 0.227956 0.0743436 -0.251261 -0.791896 -2.06392 1.60663 1.92811 -0.368819 0.0945149 -2.35286 -1.24624 0.569436 -0.511424 -1.095 1.34742 -0.172389 -0.459062 -0.0418879 0.842784 0.350019 0.779321 -1.33704 0.682096 -0.805767 1.2045 -0.116182 0.308369 1.17696 -0.18998 1.33057 -0.217762

0.669153 -0.831833 0.864161 -2.25558 -1.08146 0.273078 -0.538495 -0.345657 -0.651607 -1.57477 0.839622 -0.211894 -1.52577 0.0512826 1.91204 2.6579 -1.20339 -0.972652 2.0971 -0.409743 0.196143 -2.10649 1.29593 1.41494 2.15214 -1.44276 0.176694 1.04021 0.773797 0.179426 -0.563672 -0.835856 0.0891758 -2.74661 0.575719 0.171764 0.214524 0.282309 -0.443198 -1.84741 1.36028 0.127868 -0.833525 -1.6816 0.442636 -0.531626 -1.50962 -1.02164 -1.33627 1.0474

1.14421 -1.41853 2.14926 -0.998535 -1.89602 0.616088 0.189348 -0.0432751 -0.091982 -1.46399 -1.16532 1.79201 -0.620378 -0.545151 1.61307 -2.36706 -1.15021 1.45144 0.959911 1.25303 0.483778 0.0814707 -0.500612 -2.39612 0.654425 1.1088 -0.355738 0.423396 0.704581 1.61975 0.775262 -1.34582 -1.27431 -0.0970031 0.798992 -0.184625 -0.919186 -0.649188 -2.83684 -3.11165 -0.466921 -0.755165 2.80376 -0.18103 0.876987 0.81157 -0.162096 -0.477167 -1.60012 -0.778005

-1.88847 -0.407386 2.03518 1.68935 -1.20561 -0.000406574 -0.825603 -0.0142295 -1.29057 -1.55248 0.698306 1.68793 -0.753098 2.02669 -2.55123 0.835544 -1.32027 -0.713736 -2.10215 -0.414824 -0.117266 -0.443653 0.720477 -0.459927 -2.96689 -0.104501 -0.497892 1.96445 -2.64092 1.36853 -0.964683 -0.714355 -0.384326 0.469699 0.288089 0.0313798 0.0253959 0.68146 -0.419741 2.70602 2.18708 -1.57681 0.412431 -0.845048 -0.970827 0.100936 -1.30307 0.203676 1.60492 -1.97114

1.23054 0.125927 -0.329266 -0.862562 -0.693932 0.25096 -2.2764 0.159781 -0.332366 -0.469926 0.274733 1.68355 -0.445951 0.614866 -1.02463 1.80499 -0.086054 -1.33186 0.870699 1.7099 -0.894283 1.32389 -1.61412 0.28048 -2.38443 -2.1662 -0.645597 0.43375 -1.14097 -3.0829 0.0165347 -1.07272 -1.93207 1.9801 -1.45691 0.515068 -0.40634 0.309457 1.337 1.75398 0.704287 -0.899351 1.00859 -0.437167 0.976877 -0.72657 -0.480882 0.121269 -0.699965 -0.360461

-0.612499 0.156704 -2.09988 -2.48002 0.753578 -0.349749 -0.892039 -1.57879 -0.647978 1.67302 -1.07992 1.19492 -1.81854 0.606395 0.381583 0.708611 -1.86472 -1.64869 -1.20779 1.48513 -0.551062 -0.878184 2.37518 -0.700069 -0.231075 0.39637 -0.548031 -0.911685 -0.940921 1.24787 1.08153 -0.232788 1.53602 -0.142994 0.699505 -0.369282 0.466464 0.513917 -0.219405 -0.594101 1.56887 0.299287 -1.61001 0.857563 -0.340974 -0.67464 -0.848709 -0.653933 -1.84701 0.168513

-1.4999 0.473928 0.875811 -0.468673 1.19847 -0.268327 -1.8042 0.0203005 -0.883808 -0.886643 0.0632129 1.83479 -1.44054 -2.54599 0.324373 -2.32831 0.149326 -1.58025 -1.31286 0.720411 0.502317 3.55246 -1.43127 -1.89408 -1.13236 1.45372 -0.198854 -1.78796 -0.547677 1.76273 0.579541 -0.460635 -1.0014 1.58839 1.02648 1.36151 -0.834084 0.530961 2.30925 -2.02936 -0.0926522 -1.23344 -0.829368 -1.57058 -0.599305 0.573399 -0.148068 0.477728 -2.50816 2.11242

-1.68227 -1.35822 1.05219 2.66922 -0.630303 0.547111 -0.202453 0.0821697 -1.23347 -0.372444 -0.72897 -0.999287 0.35411 1.6988 0.293186 -1.973 2.03083 1.57093 -1.40394 1.14789 0.0546934 -0.828682 -0.510448 -1.35628 -1.76081 -0.254851 0.676123 -0.295707 1.81226 -1.04662 1.10188 -0.390574 -2.37385 0.430471 -1.17299 -0.285465 -1.01292 0.944922 -1.81207 -1.5082 2.1884 0.151345 -0.746153 -0.21147 -0.0521129 -0.965539 0.328103 -0.538871 -0.715094 2.15355

-2.02783 0.195609 -1.05605 -0.0678761 0.0519625 0.961861 0.415883 -0.742179 -0.728121 0.199404 -0.166335 2.79238 -0.972644 -0.526173 -1.29091 2.30374 2.39313 1.01174 1.81992 -1.03525 0.975329 -0.325204 0.463741 -0.149674 -2.65975 -2.12347 -0.47958 3.15061 -0.281927 -1.18562 1.66975 -0.630197 0.365871 -2.9768 1.18722 -1.35591 -2.78587 -0.327696 0.949337 -1.21584 1.21757 -0.824419 -0.789628 0.100031 -0.94058 -0.842273 -1.25791 -0.487206 0.522371 -0.424466

-0.360099 -0.202715 0.458176 1.1655 -0.537126 0.342714 -2.42123 0.839218 0.164717 -0.267794 -0.807314 -0.507157 -0.690672 -2.11897 1.42657 -0.563291 -1.39618 1.01138 -0.807436 -0.819661 0.165648 -1.68015 1.34471 -0.35026 1.80279 2.1835 -0.565104 -1.60532 -2.62347 1.48358 -1.17716 -0.715536 -0.0995062 0.951944 -3.34674 -1.23592 -0.561853 -0.741335 -1.58461 2.19025 1.02475 0.185315 -1.20753 0.105378 0.0941479 -0.416062 0.279533 -1.45625 -1.55616 0.0371663

-0.0958999 0.608347 0.255426 -1.07178 -1.44305 -0.868348 -2.53018 -0.582399 -0.562755 -1.68024 -1.54215 -0.545708 0.0818764 0.773745 2.43945 -0.837653 -2.5588 0.100833 0.568753 -0.507974 -0.815865 0.401501 0.356576 -0.656082 -0.695053 -0.120122 0.786099 -1.02193 -0.123208 -1.37452 1.95092 0.773627 1.70027 -1.56456 -2.95017 2.41999 -0.957689 -0.0152995 -1.31036 0.766532 1.22879 0.103116 0.159646 -0.48862 -0.705487 0.134406 0.265156 -1.1486 2.18032 -1.24962

0.550743 0.177732 0.775929 -1.25611 0.196738 -0.903969 2.1753 -0.244241 -0.87537 0.00226038 0.186781 -1.31165 -1.08831 0.126631 -2.18072 0.515738 -0.368362 -1.31624 -1.57003 0.579897 0.164841 -0.482974 -0.907437 -0.912403 2.26303 -1.22745 0.773578 0.604999 0.204922 1.53565 -0.687299 -1.04083 0.142022 0.257992 0.838032 -0.902732 0.361894 -0.341505 -0.152795 0.478523 0.441951 -1.32434 1.93752 -2.11057 0.258268 -0.96975 -0.0149827 -1.52774 -1.63999 0.85978

1.54178 0.344078 -1.39862 -2.17256 -0.561587 -0.697363 -0.361917 -1.59498 -0.356373 0.335887 -0.230007 0.135408 1.44888 -0.669576 -1.90089 -1.74289 0.507621 -0.292911 0.582301 2.17606 0.18958 0.862829 -2.20288 -0.269635 0.912949 0.931918 0.0594315 -2.04594 2.0239 1.15255 0.93352 -0.123781 -0.199806 -3.11268 1.1796 0.592088 -0.751661 -0.377177 0.827648 -0.948593 -1.85571 -0.277417 1.08014 -0.457476 0.963844 0.453839 -0.418 -1.01103 -1.05254 1.27567

-1.30093 -1.67186 -1.3471 -0.0650341 0.201284 0.584245 -0.439441 -0.799011 0.528565 -2.68867 -0.409473 0.596068 1.71252 0.757241 1.82695 2.20631 2.45332 -0.593119 0.989586 -0.89345 -0.498312 -1.83551 -0.936383 1.50116 0.232796 -0.571865 0.359295 -2.00617 2.03125 -2.70969 1.17114 -1.42107 -1.28775 -3.04938 -0.636788 -0.0479628 0.297942 0.0425411 1.13887 -0.689089 -1.8565 -0.0128626 0.00913122 0.919342 0.682089 -0.0364609 -1.27371 0.195676 0.816582 -1.13298

-1.46908 1.94817 -1.49098 0.361086 1.24938 -0.602321 1.01239 0.013369 -0.445096 2.02376 1.20671 -0.47169 -0.0621808 0.62072 -1.00249 -2.17816 2.26436 -2.07053 -0.596619 0.470582 0.73429 -1.26241 0.328202 -0.271846 -1.55548 -2.11408 0.724456 -0.903911 0.624863 0.813358 -0.0994004 -1.01805 -0.45321 -0.695507 0.623274 -0.686067 -0.497856 0.502553 -0.155996 0.587701 0.259628 -1.06275 -2.15423 -0.404039 0.317747 0.163319 -0.923659 -0.132677 0.195104 2.05506

1.54779 0.163136 0.655408 -0.405559 -1.28821 -0.801699 -0.212941 0.510047 -0.31688 0.389951 -0.206431 -0.444753 -0.281318 -1.20161 -0.863388 0.0344868 -0.400571 1.10419 -0.599697 0.165322 -0.131521 0.834616 1.46298 0.517274 0.497167 -1.48826 -0.0123349 -1.63138 -0.606305 -0.884962 1.39753 -0.446093 -0.181317 -0.0829272 1.72273 0.0544399 -0.0936471 0.384223 0.434027 -1.08163 -1.42122 -0.948057 -1.61066 1.29283 -0.0460689 0.401996 -0.22506 -2.47485 -1.4626 0.274017

jdk2006a at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 14

> it doesn't set the W matrix

>

Did I ask you to post that file?

Anyway okay I missed the difference between W and V in your code. I do wonder why you bother with the row business but anyway.

private void initNet(String str) throws IOException{

BufferedReader br = new BufferedReader(new FileReader(str));

int row = 0;

for(String aLine = br.readLine();aLine != null; aLine = br.readLine()){

// small edit here based on reviewing your code

if(aLine.trim().length()<1){

// basically if this is a blank line then skip it

continue;

}

String[] numbers = aLine.split("\\s");

int col = 0;

for(int i=0;i<numbers.length;i++){

try{

double d = Double.parseDouble(numbers[i]);

if(row==0){

V.set(row,col,d);

}else{

W.set(row,col,d);

}

}catch( NumberFormatException nfe){

throw new IOException("Bad file format. "+nfe.getMessage());

}

col++;

}

row++;

}

br.close();

}

>

cotton.ma at 2007-7-12 15:40:50 > top of Java-index,Java Essentials,Java Programming...
# 15
it doesn't read them they are different sizes
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 16

> it doesn't read them they are different sizes

What? This makes no sense.

Look do you want to pay me to write this for you or what?

Get off your lazy butt, take the code I gave you, learn how it works and then apply it to your own needs whatever they are.

This is not rocket science. And if you want someone to do it all for you then you need to spend some money. Not duke money. Real money.

cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 17
I put 10 duke stars on here.I just need it to read in both matrices. You see how they are separated by the blank line.
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 18
> I put 10 duke stars on here.> Yes. Give them to me. > I just need it to read in both matrices. You see how> they are separated by the blank line.Yes. And? Did you try the code from reply 14?
cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 19
Yeah I tried it.Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 50at Jama.Matrix.set(Matrix.java:378)
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 20
I am not answering any more question until you assign the dukes.
cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 21
There's half the dukes. If you answer I will even tell you next time I make a thread and give you 10 more plus the 5 more that I will give you after you answer this one.
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 22
If you are using JAMA it's trivial to save and load matrices with Java's Object streams. http://java.sun.com/docs/books/tutorial/essential/io/objectstreams.html
jsalonena at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 23

> There's half the dukes. If you answer I will even

> tell you next time I make a thread and give you 10

> more plus the 5 more that I will give you after you

> answer this one.

Well that would be a start.

1) Stop doing things in the Swing event thread.

2) This error has nothing to do with any of my code. This is an error in code of yours that you did not post yet.

cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 24
no your code is exceeding the matrix dimensions Matrix V = new Matrix(50,100); Matrix W = new Matrix(27,50);you ccan use the getColumnDimension and getRowDimension methods of V and W
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 25
> no your code is exceeding the matrix dimensionsSweet lord jeebus h christ.No it is not.How many numbers are in the first set in total?Do you know? 6,350. So no that probably won't fit in 100 by 50.Anyway I give up. You are totally hopeless.
cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 26
if i make it print the double value it prints the last number in the first matrix right before it errs
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 27
Oh well.
cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 28
i'll give u 25 more dukes if you make it work
jdk2006a at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 29

> i'll give u 25 more dukes if you make it work

No.

First of all even if I wanted to, and I don't, you never provided the code that is actually the problem. Like where you call set for example.

Second, in retrospect giving you any code at all was a bad idea. Because all you are doing now is pleading. I should have stuck with your code is horrific and here are some suggestions on how to fix it.

I would suggest that you take the time to figure out what my code does. Then maybe see where you are having problems and how you can make the appropriate modifications.

I am not "helping" you by writing any more code for you. It is clear that you are not helped by that at all.

cotton.ma at 2007-7-21 21:36:20 > top of Java-index,Java Essentials,Java Programming...
# 30

cotton: the first matrix contains first 100x50 values before the empty

line. The second matrix are the last 50x27 values after the empty line.

The two matrices are thus separated by the empty line. Your code

correctly reads the first matrix V, but fails when reading the matrix W

because you don't reset the row counter.

jsalonena at 2007-7-21 21:36:25 > top of Java-index,Java Essentials,Java Programming...