Difficulty finding euclidean distance to match

I have one query image and 9 images in the MATLAB database--I have to find the Euclidean distance between two images and represent them in a matrix. I have done the following:
G=imread('pout.tif');
H = adapthisteq(G,'clipLimit',0.01,'Distribution','rayleigh');
[c1,s1]=wavedec2(H,1,'db1');
disp(c1);
X=c1;
figure,imshow(G);
figure,imshow(H);
fileFolder=fullfile(matlabroot,'toolbox','images','imdemos');
dirOutput=dir(fullfile(fileFolder,'*.tif'));
fileNames={dirOutput.name}
n=numel(fileNames);
for k = 12 : 20(dirOutput)
fileNames1=strcat('fullfile(fileFolder)',fileNames(k))
I = imread(fileNames{k});
J = adapthisteq(I,'clipLimit',0.01,'Distribution','rayleigh');
[c2,s2]=wavedec2(J,1,'db1');
disp(c2);
Y=c2;
E_distance = sqrt(sum((H-J).^2));
figure,imshow(I);
figure,imshow(J);
end
But I get the following error:
??? Error using ==> unknown
Matrix dimensions must agree.
Error in ==> pihu at 20
E_distance = sqrt(sum((H-J).^2));

16 Comments

What does size(H) show? What does size(J) show? What reason do you have to expect that pout.tif will be exactly the same size image as the other *.tif will be?
no they donot have same size
Try to resize both the images H and J before finding Equlidean distance.
plz tell me how to resize it...i am new to matlab..plz help me out sir
Use imresize command and both image should be equal size.
type help imresize in command window.
thanx..but from where i will get to know the actual size of the image
[row col]=size(H); [row1 col1]=size(J);
for example row=480 and col=640 for image H and row1=450 and col1=600 for image J. then you have to resize image J same size as image H.
Let me give you the formula that is more robust and able to handle color images also:
[rows columns numberOfColorChannels] = size(yourImage);
the formula Chandra gave you will work only for gray scale images. This one will work for grayscale or RGB.
but sir how will i get to know the actual size of those differnt images in the given program as sir Chandra told suppose row=480 and col=640.what will be the size of those images in that code
sir please edit my code and find out the eucledian distance..actually i am not getting it
size() gives the actual size, in pixels for the rows and columns.
If you mean "actual size" in some real-world units such as "feet", then you need some external calibration information that cannot be determined from the image alone. But Euclidean distance is not restricted to use with real-world units, so it is unlikely you would need that.
G=imread('pout.tif');
H = adapthisteq(G,'clipLimit',0.01,'Distribution','rayleigh');
[c1,s1]=wavedec2(H,1,'db1');
disp(c1);
X=c1;
figure,imshow(G);
figure,imshow(H);
fileFolder=fullfile(matlabroot,'toolbox','images','imdemos');
dirOutput=dir(fullfile(fileFolder,'*.tif'));
fileNames={dirOutput.name}
n=numel(fileNames);
for k = 12 : 20(dirOutput)
fileNames1=strcat('fullfile(fileFolder)',fileNames(k))
I = imread(fileNames{k});
J = adapthisteq(I,'clipLimit',0.01,'Distribution','rayleigh');
[c2,s2]=wavedec2(J,1,'db1');
disp(c2);
Y=c2;
[rows cols]=size(H);
[rows1 cols1]=size(J);
C=imresize(H,1);
D=imresize(J,1);
E_distance = sqrt(sum((C-D).^2));
figure;
imshow(I);
figure;
imshow(J);
end
plz help me and edit the whole program.
imresize(H,1) is going to resize by a scale of 1, which will leave the size exactly the same. You need to instead resize the images to be the same number of pixels, using the second syntax for imresize()
imresize(H, [rows columns])
Editing away your question is very very much despised and will lead to people not answering your questions in the future.
I have restored the original text of this question.
diva dave anthony: this question has a clear subject and an accepted answer, so it may be valuable to someone else in the future. If you have a good reason why it should be removed from MATLAB Answers, please flag the question, explain why it should be deleted, and an administrator or high-reputation contributor will consider deleting the question. Please do not simply edit your question away.

Sign in to comment.

 Accepted Answer

What you're calling the Euclidean distance is the RMS difference in intensity between the two images. And that (and PSNR and MSE) is not such a great way to compare images anymore, unless you're looking for a fairly exact match - like you know for a fact that the test image is definitely one of the database images. You'll probably find SSIM is used more often: http://en.wikipedia.org/wiki/SSIM. But I can't run your code because I don't have the Wavelet Toolbox. I've added it to the product list to alert anyone else who might try to run your code.

27 Comments

plz inform if you or anyone else run out dis code..i need it.thanx
Did you fix the imresize() problem ?
Code to calculate SSIM? No, I don't have code for that. Your code in your original question? Yes, but it errored out because I don't have the Wavelet Toolbox like I said, though perhaps someone else might have been able to run it. And please answer Walter's question and post your new, corrected code.
ya i did..please tell me whether it is correct or not..thank you..and also tell me now how to find out the eucledian distance..i am not getting the answer,i.e eucledian distance.The code is as follows:
G=imread('pout.tif');
H = adapthisteq(G,'clipLimit',0.01,'Distribution','rayleigh');
[c1,s1]=wavedec2(H,1,'db1');
disp(c1);
X=c1;
figure,imshow(G);
figure,imshow(H);
fileFolder=fullfile(matlabroot,'toolbox','images','imdemos');
dirOutput=dir(fullfile(fileFolder,'*.tif'));
fileNames={dirOutput.name}
n=numel(fileNames);
for k = 12 : 20(dirOutput)
fileNames1=strcat('fullfile(fileFolder)',fileNames(k))
I = imread(fileNames{k});
J = adapthisteq(I,'clipLimit',0.01,'Distribution','rayleigh');
[c2,s2]=wavedec2(J,1,'db1');
disp(c2);
Y=c2;
[rows cols]=size(H);
[rows1 cols1]=size(J);
C=imresize(H,[rows cols]);
E_distance = sqrt(sum((H-C).^2));
figure,imshow(I);
figure,imshow(J);
end
No, you are resizing H to the size it already is. That is going to leave H and J as the same size.
Question: are you sure your tif files are grayscale? If they might not be then you are going to need to adjust your size() calls.
yes tif files r gray scale
please tell me how to resize it..i am not getting it actually..please help me..thanx
See Walter's comment under your code above.
i didnot find any error..but how to resize H same as that of J.what is the command actually?and also how to find eucledian distance?
Hint: you need to resize something to a size of something else.
yes my tif files are grayscale
Use this:
[rows cols]=size(H);
[rows1 cols1]=size(J);
H = imresize(H, [rows1 columns1]); % Resize H to match J.
% No need for intermediate varaibles C and D anymore.
E_distance = sqrt(sum((H-J).^2)); % H and J must be double, not uint8.
Thank you very much. Is the command
C=imresize(H,[rows1 cols1]);??
I don't see why C and D are even needed. As far as I can tell, they're not, so my code didn't use them.
thank you very much to all
i used your code..it worked..thank you very much sir...
the answer came like this..but i am not understanding which one is the eucledian distance..can u please tell me
Columns 76881 through 76890
3.0000 2.5000 3.0000 -3.5000 0 -6.5000 -5.5000 0 2.5000 -3.0000
Columns 76891 through 76900
-8.5000 7.5000 13.0000 7.0000 -6.5000 -5.0000 -9.0000 5.0000 0 5.0000
Columns 76901 through 76910
-9.0000 -4.0000 -16.5000 12.0000 -1.0000 -2.0000 0 -2.5000 0 -3.5000
Columns 76911 through 76920
-14.5000 2.5000 -2.0000 0 2.0000 -1.5000 0 0 0 0
Columns 76921 through 76930
0.5000 -0.5000 0 0.5000 0 -1.5000 0 0.5000 6.5000 -8.0000
Columns 76931 through 76940
-7.0000 0 0.5000 5.0000 13.5000 -7.0000 0.5000 0.5000 -0.5000 -4.5000
Columns 76941 through 76950
-10.0000 -0.5000 7.0000 0 0 -9.5000 0.5000 0 -3.0000 9.0000
Columns 76951 through 76960
-10.5000 9.5000 5.0000 -5.5000 5.5000 0 -2.5000 -0.5000 -9.0000 -6.0000
Columns 76961 through 76970
5.0000 -3.0000 -5.0000 -0.5000 15.5000 0 0 2.0000 -16.5000 -10.0000
Columns 76971 through 76980
17.5000 0 -5.5000 3.0000 2.0000 5.0000 0 6.0000 -16.5000 -4.0000
Columns 76981 through 76990
-4.5000 0 3.0000 0 0.5000 -6.5000 6.0000 -7.0000 0 -6.0000
Columns 76991 through 77000
-6.0000 -6.0000 4.5000 0 0 -5.5000 5.5000 -10.0000 0 0
Columns 77001 through 77010
0 5.0000 5.0000 0 4.0000 -14.0000 -11.0000 -1.0000 4.0000 0
Columns 77011 through 77020
4.0000 -1.0000 0 8.0000 -5.5000 -5.5000 -8.0000 0 1.5000 -1.0000
Columns 77021 through 77030
-10.0000 5.0000 3.0000 9.0000 -7.5000 0 14.0000 -17.5000 18.0000 -4.0000
Columns 77031 through 77040
9.0000 9.0000 -9.0000 -18.5000 -6.0000 -5.0000 5.5000 -4.0000 -9.5000 7.0000
Columns 77041 through 77050
14.0000 -3.0000 -2.5000 4.5000 1.5000 0 0 0 -0.5000 0
Columns 77051 through 77060
0.5000 0 0 0 -2.0000 -2.5000 0 6.0000 -6.5000 0.5000
Columns 77061 through 77070
-7.0000 -0.5000 7.0000 -0.0000 -2.5000 0 -4.0000 0.5000 -3.5000 17.5000
Columns 77071 through 77080
0 0 0 7.0000 0 10.0000 6.5000 7.0000 7.0000 7.0000
Columns 77081 through 77090
0 11.5000 -0.5000 0 13.5000 2.5000 0.5000 -5.0000 -7.0000 -5.0000
Columns 77091 through 77100
-0.5000 0 -5.5000 -1.0000 -31.0000 0 19.5000 -1.5000 16.0000 -2.5000
Columns 77101 through 77110
-4.5000 -5.0000 11.5000 9.0000 0 0.5000 5.0000 -4.0000 -2.0000 0
Columns 77111 through 77120
1.0000 -7.5000 -6.5000 5.5000 -14.5000 7.0000 3.5000 10.5000 6.0000 0.5000
Columns 77121 through 77130
0 -3.5000 4.0000 0 -4.5000 -4.0000 4.0000 0 0 -4.0000
Columns 77131 through 77140
-4.0000 3.0000 -5.0000 8.5000 -1.0000 -3.0000 14.0000 0 -7.0000 -5.0000
Columns 77141 through 77150
0 0 0 -10.5000 8.0000 -9.5000 10.5000 0 -4.0000 -0.5000
Columns 77151 through 77160
0.5000 5.0000 7.5000 7.0000 14.5000 -11.0000 -0.5000 18.0000 18.0000 0
Columns 77161 through 77170
-9.0000 13.0000 -1.5000 -17.0000 10.5000 19.5000 -13.0000 0 14.5000 -2.5000
Columns 77171 through 77180
3.5000 -7.5000 0 0 0 0 0 0.5000 0 -0.5000
Columns 77181 through 77190
-0.5000 0 0 0 -1.0000 0 4.5000 -9.0000 -4.0000 0.5000
Columns 77191 through 77200
-6.5000 -7.5000 7.0000 12.0000 -0.0000 -4.5000 0.5000 -5.5000 5.5000 4.5000
Columns 77201 through 77210
-16.0000 -6.5000 0 10.0000 10.0000 0 0.5000 6.5000 6.5000 -4.5000
Columns 77211 through 77220
-5.0000 -5.5000 -0.5000 -2.0000 -3.0000 5.0000 0 0 5.0000 -5.5000
Columns 77221 through 77230
3.0000 5.5000 10.5000 17.0000 0 -11.0000 1.5000 0 9.5000 -2.0000
Columns 77231 through 77240
-8.5000 -5.5000 -4.5000 0 1.0000 -7.0000 5.0000 -4.0000 3.0000 18.0000
Columns 77241 through 77250
5.0000 -4.5000 0 -7.0000 -5.0000 0.5000 -5.0000 0 0 -9.5000
Columns 77251 through 77260
-3.5000 0 0 0 4.0000 -1.0000 0 -16.5000 8.5000 0
Columns 77261 through 77270
0 -9.0000 -4.0000 12.0000 -14.0000 3.0000 4.0000 -3.0000 -1.0000 0
Columns 77271 through 77280
6.0000 6.5000 0 5.5000 -6.0000 -6.0000 -0.5000 0.5000 0 -0.5000
Columns 77281 through 77290
0 7.0000 2.5000 -7.0000 26.0000 -8.5000 -9.0000 13.0000 0 -4.0000
Columns 77291 through 77300
2.0000 -8.5000 0 -1.5000 8.0000 7.5000 -14.0000 9.5000 -2.5000 25.5000
Columns 77301 through 77310
-7.5000 2.5000 0 0 0 0 0 0 0.5000 0.5000
Columns 77311 through 77320
0 0.5000 0 0.5000 4.0000 4.0000 4.0000 4.5000 -0.5000 0
Columns 77321 through 77330
7.0000 -5.0000 -11.5000 4.5000 4.0000 0 5.0000 5.0000 0.5000 4.5000
Columns 77331 through 77340
7.5000 -15.5000 -9.0000 10.0000 -23.5000 -0.5000 11.5000 0 -4.5000 -5.0000
Columns 77341 through 77350
-11.0000 10.0000 8.0000 -6.0000 2.5000 -2.5000 0 3.0000 5.5000 0
Columns 77351 through 77360
0 -5.5000 8.5000 -21.0000 0 0 7.0000 0.5000 10.5000 9.0000
Columns 77361 through 77370
-2.0000 0 0 2.0000 11.0000 -10.5000 -3.0000 1.5000 -11.5000 -4.5000
Columns 77371 through 77380
7.5000 2.0000 2.0000 9.0000 0 -6.0000 0 0 3.5000 3.5000
Columns 77381 through 77390
3.0000 3.5000 0 1.0000 -5.0000 0 -4.0000 4.0000 -4.5000 0
Columns 77391 through 77400
-14.0000 7.0000 14.0000 -8.0000 -3.0000 -7.0000 1.0000 3.0000 -3.0000 0
Columns 77401 through 77410
0 5.5000 -3.0000 -5.5000 -12.0000 -1.0000 0 0.5000 0 -5.0000
Columns 77411 through 77420
3.0000 -1.0000 -8.5000 1.0000 20.5000 -21.5000 -9.0000 -5.0000 4.0000 -10.5000
Columns 77421 through 77430
4.0000 3.0000 9.5000 3.0000 -10.0000 0 9.5000 14.5000 -3.5000 19.5000
Columns 77431 through 77440
-3.0000 4.5000 0 0 0 0 0 -0.5000 -0.5000 0
Columns 77441 through 77450
0 0 0.0000 0 4.5000 8.5000 0 0.5000 -7.0000 6.5000
Columns 77451 through 77460
11.5000 7.0000 8.5000 -4.5000 0.5000 0.5000 -2.5000 -7.5000 -10.0000 -7.0000
Columns 77461 through 77470
4.5000 -1.0000 6.5000 4.0000 9.5000 -2.0000 -2.0000 -0.5000 5.5000 -0.5000
Columns 77471 through 77480
2.0000 11.5000 -8.5000 -2.5000 2.0000 5.5000 -3.0000 -3.5000 3.5000 8.5000
Columns 77481 through 77490
-11.0000 -3.0000 18.0000 4.0000 0 -2.5000 0.5000 2.0000 6.5000 8.0000
Columns 77491 through 77500
0 4.5000 -6.5000 3.5000 3.0000 -4.5000 11.5000 0.5000 7.0000 4.0000
Columns 77501 through 77510
-4.0000 -1.0000 0 -2.5000 0 -0.5000 9.0000 -0.0000 0 0
Columns 77511 through 77520
3.5000 0.5000 4.0000 4.5000 0 -8.0000 0 0 0 5.0000
Columns 77521 through 77530
0 1.5000 11.0000 -7.0000 7.0000 -1.0000 -3.0000 3.0000 -3.0000 0
Columns 77531 through 77540
6.5000 6.0000 2.5000 1.0000 -2.5000 0 -0.5000 0 0.5000 -3.0000
Columns 77541 through 77550
4.5000 3.0000 -0.0000 11.0000 -1.0000 -11.0000 -11.0000 7.5000 -2.5000 -8.0000
Columns 77551 through 77560
-6.0000 -0.5000 0.5000 4.0000 -4.0000 -9.0000 5.0000 19.0000 -4.5000 10.0000
Columns 77561 through 77570
0.5000 0.5000 0 0 0.5000 0.5000 0 -1.5000 0 0
Columns 77571 through 77580
2.5000 -2.0000 0.5000 -8.5000 0 -6.5000 -6.5000 -6.5000 -11.5000 -0.5000
Columns 77581 through 77590
7.5000 4.0000 -2.5000 -8.5000 -3.5000 0 6.5000 0 -4.0000 -4.5000
Columns 77591 through 77600
7.5000 12.0000 -11.5000 -9.0000 0.5000 -0.5000 -5.0000 4.5000 5.5000 -8.0000
Columns 77601 through 77610
-5.5000 -2.5000 -0.5000 -6.0000 -6.0000 0 -7.0000 3.0000 0 -5.5000
Columns 77611 through 77620
0 4.5000 -27.5000 0 0 -3.5000 -10.5000 2.0000 -4.5000 0
Columns 77621 through 77630
0 7.0000 -4.0000 -9.5000 -0.5000 -0.5000 0 0.5000 3.5000 0
Columns 77631 through 77640
-7.0000 9.5000 0 -6.0000 0.5000 -0.5000 0 0 0 6.0000
Columns 77641 through 77650
0 1.0000 8.0000 8.0000 4.5000 -4.5000 -2.0000 -2.0000 7.0000 10.0000
Columns 77651 through 77660
-7.0000 7.0000 -14.0000 -1.0000 6.0000 0 3.0000 0 0 1.5000
Columns 77661 through 77670
0 4.0000 -2.5000 0 0 0.5000 0 -2.5000 -5.5000 2.5000
Columns 77671 through 77680
-9.0000 -4.5000 4.0000 4.0000 8.0000 12.0000 -19.5000 1.0000 -0.5000 6.5000
Columns 77681 through 77690
0 7.0000 4.0000 -7.0000 0 4.0000 19.0000 19.0000 -9.0000 27.5000
Columns 77691 through 77700
2.0000 1.5000 0 0 0 0 1.0000 1.5000 1.5000 0
Columns 77701 through 77710
0 -3.5000 -4.5000 4.5000 2.0000 -1.5000 -6.5000 7.0000 8.5000 1.5000
Columns 77711 through 77720
3.0000 -9.0000 -7.0000 -4.5000 -10.0000 2.5000 3.0000 4.0000 0 0
Columns 77721 through 77730
7.5000 -9.0000 2.0000 7.0000 4.5000 -5.0000 0 -0.5000 -6.0000 0
Columns 77731 through 77740
2.5000 0.5000 0 0 0 -2.5000 0 0 -3.5000 -5.5000
Columns 77741 through 77750
-3.5000 13.0000 -9.0000 4.5000 2.0000 -7.5000 -1.5000 -5.0000 5.5000 3.5000
Columns 77751 through 77760
4.5000 7.5000 -11.5000 0 -2.5000 0 0.5000 -7.5000 4.0000 9.5000
Columns 77761 through 77770
0 2.5000 0 -6.0000 -4.5000 0 0 -3.5000 0 3.5000
Columns 77771 through 77780
0 4.0000 -3.5000 -5.0000 -4.5000 7.0000 10.0000 -10.0000 11.0000 -3.5000
Columns 77781 through 77790
4.0000 -10.0000 3.0000 0 3.0000 -3.0000 3.0000 -5.0000 -16.5000 2.0000
Columns 77791 through 77800
8.0000 2.5000 2.5000 0.5000 0 0 -2.5000 -2.5000 3.0000 -1.5000
Columns 77801 through 77810
4.0000 -1.0000 4.0000 0 -3.0000 8.5000 -31.0000 18.0000 6.0000 0.5000
Columns 77811 through 77820
0 6.5000 -1.5000 9.5000 9.5000 15.0000 4.0000 -9.5000 -20.0000 14.5000
Columns 77821 through 77830
2.5000 4.5000 0 0 0 -0.5000 3.0000 1.5000 0 7.0000
Columns 77831 through 77840
0 0 -4.0000 -0.5000 4.5000 -4.0000 2.5000 0 4.0000 3.0000
Columns 77841 through 77850
2.5000 -11.0000 0 -10.0000 -2.5000 2.5000 0.5000 -1.5000 -4.5000 0
Columns 77851 through 77860
5.0000 -12.0000 -5.0000 0 4.5000 -3.0000 5.0000 3.0000 -8.5000 0
Columns 77861 through 77870
-6.0000 -3.0000 -6.0000 3.0000 -5.5000 3.0000 -3.0000 -3.0000 -2.5000 -3.5000
Columns 77871 through 77880
-3.5000 -9.0000 0 0 -6.0000 0 5.0000 1.5000 9.5000 11.0000
Columns 77881 through 77890
-4.5000 0.5000 -4.5000 -5.5000 -4.5000 -4.5000 0 -4.5000 -8.5000 8.0000
Columns 77891 through 77900
0 0 0 7.5000 0 6.0000 0 0 -3.5000 -1.0000
Columns 77901 through 77910
0 0 5.0000 2.5000 -21.0000 -14.0000 -11.0000 11.0000 -10.0000 -1.5000
Columns 77911 through 77920
0 3.0000 -3.0000 3.0000 -2.5000 2.5000 0 -2.0000 -8.5000 -3.0000
Columns 77921 through 77930
5.0000 0 0 0 0 -1.0000 -8.0000 8.0000 10.0000 7.5000
Columns 77931 through 77940
-2.5000 0.5000 -1.5000 2.5000 5.5000 6.0000 11.0000 -7.5000 -7.5000 -8.0000
Columns 77941 through 77950
2.5000 6.5000 10.0000 -9.0000 5.5000 9.5000 4.5000 -10.0000 0 -24.5000
Columns 77951 through 77960
17.5000 -0.5000 0 0.5000 -1.0000 -23.5000 22.0000 6.0000 2.0000 0
Columns 77961 through 77970
0.5000 -4.5000 -6.0000 -7.0000 4.5000 -1.5000 15.0000 2.5000 -1.5000 0
Columns 77971 through 77980
-4.5000 7.0000 -3.0000 -10.0000 -4.0000 -1.0000 12.0000 5.0000 -9.5000 0.5000
Columns 77981 through 77990
0 -4.0000 0 -9.5000 -8.0000 8.0000 6.5000 3.5000 -3.0000 -6.5000
Columns 77991 through 78000
3.5000 0 0 -3.0000 3.0000 0 -3.0000 -8.5000 -3.5000 -0.5000
Columns 78001 through 78010
3.0000 -24.0000 0 -7.0000 4.0000 1.5000 -3.0000 1.5000 2.0000 5.0000
Columns 78011 through 78020
5.0000 0 -4.5000 4.0000 6.5000 0 -11.5000 -1.5000 0 -4.0000
Columns 78021 through 78030
-3.5000 0.5000 -3.5000 -6.0000 -6.0000 -3.5000 4.0000 4.5000 -4.0000 4.0000
Columns 78031 through 78040
5.0000 -6.5000 -10.5000 -1.0000 -10.0000 -5.0000 9.0000 1.0000 -10.0000 3.5000
Columns 78041 through 78050
-3.0000 -6.0000 0 0 -7.0000 0.5000 -8.5000 16.5000 -2.0000 5.0000
Columns 78051 through 78060
0.5000 -0.5000 0 0.5000 5.0000 -11.0000 4.5000 12.5000 5.5000 4.5000
Columns 78061 through 78070
2.5000 0 -2.0000 -5.0000 0 11.0000 20.0000 -23.0000 10.5000 -7.0000
Columns 78071 through 78080
2.5000 6.5000 -26.0000 0 19.0000 -7.5000 9.5000 4.0000 19.5000 -3.5000
Columns 78081 through 78090
-18.5000 15.5000 3.5000 0 25.5000 -20.5000 -15.0000 12.0000 -9.0000 -6.0000
Columns 78091 through 78100
0 6.5000 2.0000 -9.0000 0 2.0000 12.5000 0 4.5000 -3.5000
Columns 78101 through 78110
-4.0000 1.0000 0 0 5.5000 7.5000 0 4.5000 0 0
Columns 78111 through 78120
-4.5000 -5.5000 -5.0000 7.5000 3.0000 6.5000 6.0000 10.0000 0 -3.0000
Columns 78121 through 78130
-3.5000 6.0000 0 -3.0000 -0.0000 6.5000 -6.0000 0 7.0000 0.5000
Columns 78131 through 78140
-4.5000 4.5000 5.0000 3.5000 20.5000 4.0000 11.0000 4.5000 0 5.0000
Columns 78141 through 78150
0.5000 -7.5000 0 6.5000 9.0000 0 1.5000 2.5000 0 -4.0000
Columns 78151 through 78160
0 3.5000 0 0 -8.0000 -8.5000 4.0000 4.0000 -5.0000 0
Columns 78161 through 78170
-8.5000 -11.0000 14.0000 11.0000 -7.0000 -16.0000 0.5000 0 0 -3.5000
Columns 78171 through 78180
0 0 3.5000 -3.5000 -11.0000 0 0 6.0000 0 0
Columns 78181 through 78190
0 -2.5000 3.0000 3.0000 -4.5000 1.0000 4.5000 -2.5000 0 0
Columns 78191 through 78200
-9.5000 -0.5000 -3.5000 1.0000 7.5000 -5.0000 0 9.0000 -10.0000 9.5000
Columns 78201 through 78210
-2.5000 15.0000 -5.0000 -5.0000 -9.5000 1.5000 -8.0000 -5.5000 20.0000 -10.0000
Columns 78211 through 78220
15.5000 -7.5000 -7.5000 14.5000 27.5000 -21.5000 -5.0000 20.0000 -2.5000 -6.0000
Columns 78221 through 78230
10.5000 13.5000 -9.0000 14.0000 -3.0000 2.0000 -5.0000 -4.0000 0 -4.0000
Columns 78231 through 78240
4.5000 4.0000 5.0000 7.5000 5.0000 7.5000 -8.0000 -5.5000 -7.5000 -4.5000
Columns 78241 through 78250
0 -3.0000 -5.0000 6.0000 -3.0000 0.5000 7.0000 7.0000 0 3.5000
Columns 78251 through 78260
0 3.0000 -3.5000 -9.5000 0 0 -6.5000 -7.0000 0 2.0000
Columns 78261 through 78270
-4.0000 0 -4.0000 12.5000 -16.0000 -3.0000 0.5000 -3.0000 0.5000 0
Columns 78271 through 78280
1.5000 3.5000 -7.5000 -4.5000 5.5000 9.0000 0 -4.0000 0 0
Columns 78281 through 78290
-0.5000 0 0 -0.5000 -8.0000 0 -5.0000 -2.0000 -11.0000 -13.5000
Columns 78291 through 78300
0 -5.5000 3.0000 -3.5000 -4.0000 8.0000 -8.0000 0 0 -0.5000
Columns 78301 through 78310
3.5000 13.0000 3.0000 0 0 -5.5000 12.5000 -1.5000 -0.5000 -2.5000
Columns 78311 through 78320
-2.5000 -3.5000 -2.0000 -4.0000 3.5000 0.5000 -4.5000 4.5000 -2.5000 3.0000
Columns 78321 through 78330
-2.5000 0.5000 -0.5000 13.5000 0 3.5000 3.0000 5.5000 -4.5000 -0.5000
Columns 78331 through 78340
0 13.0000 -11.5000 -10.0000 -7.5000 14.5000 5.0000 -0.5000 -2.0000 0
Columns 78341 through 78350
10.0000 0 10.5000 -2.0000 18.5000 -10.0000 -10.5000 0.5000 5.5000 1.0000
Columns 78351 through 78360
16.5000 4.5000 -7.0000 10.0000 4.5000 -7.5000 7.5000 0 4.5000 0
Columns 78361 through 78370
0 5.5000 7.5000 -0.5000 -2.0000 0.5000 2.5000 -7.5000 -5.0000 0
Columns 78371 through 78380
-3.0000 8.0000 3.0000 3.0000 7.0000 3.0000 5.0000 0 3.0000 0
Columns 78381 through 78390
-3.0000 -3.0000 -3.5000 0 0 -3.0000 0.5000 -7.0000 0 -8.5000
Columns 78391 through 78400
0 0.5000 0.5000 0.0000 -3.0000 -5.0000 -0.5000 4.5000 0 0
Columns 78401 through 78410
3.5000 4.5000 -7.0000 -7.0000 0 0 0 -0.5000 -4.0000 -4.0000
Columns 78411 through 78420
0 -4.0000 0 5.0000 10.0000 -7.0000 3.0000 7.0000 -8.0000 -1.5000
Columns 78421 through 78430
-1.0000 8.0000 3.5000 3.5000 3.5000 4.0000 -8.0000 4.0000 4.0000 -3.5000
Columns 78431 through 78440
-7.0000 7.0000 0 -5.5000 8.5000 -7.5000 -4.0000 0 -2.0000 1.0000
Columns 78441 through 78450
0.5000 -1.0000 0 0 -8.5000 -9.5000 -12.5000 4.5000 3.0000 -1.0000
Columns 78451 through 78460
5.0000 2.0000 3.0000 -7.0000 2.5000 2.5000 0 4.0000 -3.5000 2.0000
Columns 78461 through 78470
1.0000 9.5000 2.5000 -20.0000 2.5000 -3.0000 2.0000 4.0000 -8.0000 -4.5000
Columns 78471 through 78480
-16.5000 15.0000 -15.0000 -21.0000 -10.5000 20.5000 0 5.5000 10.0000 3.5000
Columns 78481 through 78490
1.0000 -7.5000 0 9.5000 -3.5000 2.5000 -6.5000 16.5000 11.0000 -8.0000
Columns 78491 through 78500
10.0000 5.5000 -5.0000 -5.5000 18.0000 5.0000 -5.5000 -10.0000 -9.5000 -4.5000
Columns 78501 through 78510
-6.5000 -6.5000 3.5000 -3.5000 -3.5000 3.0000 0 3.0000 -0.5000 3.5000
Columns 78511 through 78520
-3.0000 -6.5000 0 -6.5000 -7.0000 0 3.5000 4.0000 -2.0000 -0.5000
Columns 78521 through 78530
0 4.0000 -7.0000 9.0000 -1.0000 3.5000 1.0000 0 0 -4.5000
Columns 78531 through 78540
-7.5000 1.5000 5.5000 0 0 -6.0000 5.5000 -0.5000 0 -4.0000
Columns 78541 through 78550
0 5.0000 5.0000 7.0000 2.0000 7.0000 7.0000 -7.0000 0 -4.0000
Columns 78551 through 78560
4.0000 4.0000 0 -3.5000 3.5000 6.5000 0 2.0000 -7.0000 -2.0000
Columns 78561 through 78570
7.0000 -5.5000 5.5000 11.0000 -12.5000 0 0 2.0000 -9.0000 4.5000
Columns 78571 through 78580
0 5.5000 9.5000 0 10.0000 10.0000 3.5000 -0.5000 14.0000 -3.0000
Columns 78581 through 78590
-2.5000 -4.5000 1.5000 -7.5000 19.0000 -5.5000 -2.0000 4.5000 8.5000 -17.0000
Columns 78591 through 78600
0.5000 -4.0000 -10.0000 12.5000 -12.5000 -2.5000 2.5000 3.0000 8.5000 5.5000
Columns 78601 through 78610
5.0000 0 -10.5000 -4.5000 10.5000 21.0000 20.5000 25.0000 -4.5000 -10.0000
Columns 78611 through 78620
10.0000 10.0000 10.5000 0.5000 0 0 -15.5000 -13.5000 -6.5000 -12.5000
Columns 78621 through 78630
16.0000 13.0000 -9.5000 -6.5000 13.5000 2.5000 5.0000 0 7.5000 0
Columns 78631 through 78640
-3.0000 7.0000 6.5000 -3.0000 -3.0000 -6.5000 3.5000 -0.0000 3.0000 -3.0000
Columns 78641 through 78650
6.0000 0 -7.0000 -6.5000 3.5000 3.5000 -3.5000 -6.5000 0 0
Columns 78651 through 78660
-10.0000 -7.0000 -2.5000 0.5000 -4.0000 4.5000 0.5000 0.5000 3.0000 4.5000
Columns 78661 through 78670
0 -3.0000 0 -5.0000 0 2.0000 0 0.5000 4.0000 6.0000
Columns 78671 through 78680
10.5000 5.5000 -11.0000 -10.0000 -4.0000 2.5000 -4.0000 0 -4.0000 -4.0000
Columns 78681 through 78690
-4.0000 -4.0000 7.0000 -15.5000 11.5000 0 0 18.0000 6.0000 14.5000
Columns 78691 through 78700
0 0 6.0000 0.5000 2.0000 0 0 5.5000 15.0000 -14.0000
Columns 78701 through 78710
-13.5000 8.0000 7.0000 -10.0000 0 0 -0.5000 17.0000 17.0000 4.0000
Columns 78711 through 78720
2.0000 7.5000 6.0000 -6.0000 -7.5000 0.5000 0 -10.5000 9.0000 -6.0000
Columns 78721 through 78730
-0.5000 6.0000 -8.5000 -25.0000 -4.0000 -18.5000 0 -7.5000 0 -1.0000
Columns 78731 through 78740
-0.5000 0 -0.5000 -13.5000 -6.0000 21.0000 21.0000 14.0000 20.0000 20.0000
Columns 78741 through 78750
-10.0000 -10.0000 20.0000 -9.5000 -10.0000 -10.0000 10.0000 -10.0000 0 -5.5000
Columns 78751 through 78760
0 5.5000 0 0 -20.0000 -3.0000 -12.0000 -8.0000 1.5000 1.5000
Columns 78761 through 78770
0.5000 -5.5000 -0.5000 13.5000 -10.5000 2.5000 1.0000 -3.0000 -3.5000 0
Columns 78771 through 78780
0 0 0.5000 5.0000 8.0000 3.5000 15.0000 -9.0000 0 -1.5000
Columns 78781 through 78790
1.0000 -5.0000 -5.0000 -0.5000 0 -0.5000 3.0000 -0.5000 0 -5.5000
Columns 78791 through 78800
-1.5000 -5.0000 0 0 -4.0000 -0.5000 0 6.0000 -11.5000 0
Columns 78801 through 78810
7.0000 11.0000 -6.5000 9.5000 4.0000 0 0 4.0000 7.0000 0
Columns 78811 through 78820
-11.0000 0 0 6.0000 0 0 0 0 -12.0000 0
Columns 78821 through 78830
-5.5000 -4.5000 1.5000 0 -2.0000 -4.5000 -4.5000 4.5000 13.5000 16.5000
Columns 78831 through 78840
-4.0000 -20.0000 8.0000 9.5000 -9.5000 -6.5000 10.0000 1.5000 -1.0000 -2.0000
Columns 78841 through 78850
0.5000 0 -0.5000 2.0000 -0.5000 -9.0000 2.5000 4.5000 3.5000 -7.0000
Columns 78851 through 78860
-0.5000 -6.5000 -6.5000 10.5000 -10.0000 -6.5000 -13.0000 11.5000 0 7.5000
Columns 78861 through 78870
0 -0.5000 0 -5.5000 10.5000 21.0000 -21.0000 11.0000 -20.0000 10.0000
Columns 78871 through 78880
10.0000 -20.0000 10.0000 -19.5000 -20.0000 0 0 20.0000 -20.0000 0
Columns 78881 through 78890
10.0000 10.0000 15.5000 5.5000 10.0000 10.0000 -10.0000 -4.5000 -9.5000 19.0000
Columns 78891 through 78900
-9.5000 0 -9.5000 -10.0000 -4.0000 2.0000 -7.0000 15.5000 15.0000 0
Columns 78901 through 78910
0 0 -10.0000 -4.5000 5.0000 -0.5000 -2.5000 -4.5000 7.0000 -7.0000
Columns 78911 through 78920
-5.0000 4.5000 9.0000 7.5000 2.5000 0.5000 7.0000 7.0000 5.5000 0.5000
Columns 78921 through 78930
0.5000 0.5000 0 4.5000 -6.0000 6.0000 -6.0000 0 7.0000 -14.0000
Columns 78931 through 78940
-8.5000 2.5000 -4.0000 0 0 8.0000 11.0000 2.5000 -24.5000 0
Columns 78941 through 78950
-2.5000 -8.5000 -16.0000 -9.0000 -6.0000 -13.0000 3.0000 -2.0000 -5.5000 13.5000
Columns 78951 through 78960
-9.5000 2.5000 0 0 0 -12.0000 -15.0000 5.0000 6.0000 12.5000
Columns 78961 through 78970
8.5000 -34.5000 22.5000 -0.5000 0 6.0000 0 -10.0000 8.5000 9.5000
Columns 78971 through 78980
4.0000 -2.0000 0.0000 2.0000 -5.0000 5.0000 -4.0000 -3.0000 2.0000 -1.5000
Columns 78981 through 78990
7.0000 2.0000 0 -6.5000 8.5000 19.0000 -13.0000 -4.5000 17.0000 -6.5000
Columns 78991 through 79000
-3.5000 0 -5.5000 -11.0000 6.0000 -10.5000 13.0000 0 -8.5000 3.0000
Columns 79001 through 79010
-5.0000 -4.5000 -19.0000 -21.0000 -0.5000 0 12.5000 0 -10.0000 0
Columns 79011 through 79020
0 0 0 10.0000 10.0000 -19.5000 -19.0000 -19.0000 0 19.0000
Columns 79021 through 79030
13.5000 0 -10.0000 -10.0000 -5.5000 4.0000 -0.5000 -17.5000 -4.5000 -7.0000
Columns 79031 through 79040
17.0000 0 0 -0.5000 -5.0000 25.0000 -20.5000 0.0000 -8.0000 0.5000
Columns 79041 through 79050
0 4.0000 -9.5000 -3.5000 4.0000 1.5000 10.0000 4.5000 0 1.5000
Columns 79051 through 79060
4.5000 -6.0000 -0.0000 6.0000 0 -0.5000 -2.5000 6.5000 -1.0000 0
Columns 79061 through 79070
0 0 0 -4.0000 3.0000 -6.5000 -2.0000 0 -7.5000 -6.5000
Columns 79071 through 79080
6.5000 8.5000 3.0000 0 -6.5000 -2.0000 7.0000 1.0000 -14.0000 -3.5000
Columns 79081 through 79090
4.0000 0 -2.0000 2.0000 2.0000 6.0000 0 0 0 -6.0000
Columns 79091 through 79100
13.0000 -6.5000 25.0000 -2.0000 -7.0000 -0.5000 0 -15.5000 3.0000 1.0000
Columns 79101 through 79110
-0.5000 1.5000 -1.5000 7.0000 -4.0000 -10.0000 9.5000 -8.0000 2.0000 7.5000
Columns 79111 through 79120
-2.0000 0.5000 0 10.0000 0 8.5000 -4.5000 -11.0000 -9.5000 0
Columns 79121 through 79130
6.5000 -8.5000 -9.0000 14.5000 -21.0000 -21.0000 -24.0000 4.5000 -1.5000 0
Columns 79131 through 79140
6.5000 0 -4.5000 6.0000 11.0000 7.0000 -5.0000 0 -0.5000 -8.5000
Columns 79141 through 79150
-6.0000 -2.0000 -14.5000 0 -15.5000 -12.5000 -19.0000 -3.0000 9.5000 0
Columns 79151 through 79160
9.5000 3.0000 -10.0000 -20.0000 0 21.0000 21.5000 17.0000 11.0000 -11.0000
Columns 79161 through 79170
-18.5000 -24.0000 4.5000 9.5000 -3.5000 15.0000 -17.5000 4.0000 -12.5000 -6.0000
Columns 79171 through 79180
0 5.5000 -5.5000 5.5000 -1.5000 3.5000 -1.5000 0 1.5000 3.0000
Columns 79181 through 79190
6.0000 -11.0000 -2.0000 -2.5000 0 0 13.5000 0 0 0
Columns 79191 through 79200
0 0 6.5000 14.0000 18.5000 9.5000 5.0000 -6.5000 -7.0000 -2.0000
Columns 79201 through 79210
-7.0000 0 -7.0000 -2.0000 -9.5000 0 -6.5000 0 4.0000 2.0000
Columns 79211 through 79220
2.0000 0 2.0000 9.0000 0.5000 7.0000 0 -7.0000 0 -6.5000
Columns 79221 through 79230
-0.5000 -28.0000 16.5000 -12.5000 22.5000 -4.5000 -3.0000 -10.0000 -1.5000 -5.0000
Columns 79231 through 79240
-1.5000 0 4.0000 5.5000 -7.0000 8.5000 10.0000 -4.5000 0 0.5000
Columns 79241 through 79250
-2.0000 0 0 0 9.0000 0 0 -2.5000 0.5000 -6.5000
Columns 79251 through 79260
-14.5000 1.0000 -11.0000 -26.0000 -21.0000 -21.0000 0 -10.5000 -19.0000 -10.5000
Columns 79261 through 79270
-3.0000 6.0000 0 3.5000 6.0000 0 4.0000 6.0000 -4.0000 0
Columns 79271 through 79280
-4.0000 -6.0000 2.5000 -7.0000 2.0000 -1.0000 4.0000 0 4.0000 3.0000
Columns 79281 through 79290
-9.5000 2.5000 1.0000 7.5000 14.5000 21.0000 4.5000 21.0000 22.0000 -11.0000
Columns 79291 through 79300
0 23.0000 11.5000 12.0000 -12.0000 -4.0000 8.5000 8.0000 0 -6.5000
Columns 79301 through 79310
-7.5000 13.0000 0 6.0000 13.5000 -4.0000 9.5000 5.5000 -4.0000 6.0000
Columns 79311 through 79320
-2.5000 6.5000 -5.5000 0 0 11.0000 11.0000 0 0 0
Columns 79321 through 79330
1.5000 -6.5000 7.0000 0 0 7.5000 7.0000 -2.0000 -7.0000 0
Columns 79331 through 79340
-7.0000 17.0000 5.5000 7.5000 -2.0000 0 0 0 2.0000 0
Columns 79341 through 79350
-2.0000 -6.5000 3.5000 15.5000 -8.0000 0 6.0000 -6.0000 7.0000 0
Columns 79351 through 79360
-7.0000 -3.5000 -3.0000 -8.0000 3.5000 17.0000 2.0000 -10.0000 7.0000 2.0000
Columns 79361 through 79370
1.5000 -1.5000 -0.5000 13.0000 -5.0000 -1.0000 12.0000 -14.5000 -8.0000 8.0000
Columns 79371 through 79380
8.5000 -16.5000 -0.5000 17.0000 8.5000 -8.0000 0 6.0000 8.5000 11.0000
Columns 79381 through 79390
-11.0000 0 -6.5000 -21.5000 -21.5000 21.0000 21.0000 -21.0000 -21.0000 -5.5000
Columns 79391 through 79400
2.5000 -3.5000 -3.5000 0 -3.5000 -6.5000 5.0000 -5.0000 -1.0000 -4.5000
Columns 79401 through 79410
0 0 3.5000 -9.0000 -7.0000 3.5000 5.0000 7.0000 -3.5000 -8.5000
Columns 79411 through 79420
1.5000 -3.0000 -15.5000 0 4.5000 -10.5000 7.0000 -3.0000 22.0000 0
Columns 79421 through 79430
23.0000 11.5000 0 24.0000 24.0000 24.0000 -12.5000 -8.0000 24.5000 0
Columns 79431 through 79440
0 0 0 0 0 0 0 4.0000 0 0
Columns 79441 through 79450
-17.5000 10.5000 3.5000 -14.5000 -9.0000 -7.0000 0 0 0 0
Columns 79451 through 79460
-16.0000 16.5000 0 5.0000 0 17.0000 3.0000 0 -7.0000 -5.0000
Columns 79461 through 79470
0 -7.5000 0 7.5000 0 4.0000 0 0 0 0
Columns 79471 through 79480
-4.0000 -2.0000 -5.0000 -2.5000 0 12.0000 -6.0000 6.5000 7.0000 -7.0000
Columns 79481 through 79490
-7.0000 7.0000 3.5000 -0.5000 0 8.0000 -9.5000 -3.5000 -1.5000 -1.5000
Columns 79491 through 79500
-1.0000 1.5000 1.0000 3.5000 5.5000 6.0000 11.0000 -16.0000 -17.0000 -10.5000
Columns 79501 through 79510
8.5000 -10.5000 -2.0000 9.0000 9.0000 -15.0000 10.5000 8.5000 -6.5000 11.0000
Columns 79511 through 79520
11.0000 11.0000 11.0000 -5.0000 -21.5000 0 -16.5000 -15.5000 -21.0000 -20.5000
Columns 79521 through 79530
-15.0000 -1.5000 -1.0000 7.5000 -0.0000 1.0000 3.5000 4.5000 8.5000 1.0000
Columns 79531 through 79540
5.0000 -5.0000 0 1.0000 -9.0000 -1.5000 0 0 -7.0000 -3.0000
Columns 79541 through 79550
2.5000 -3.5000 -3.5000 -9.0000 -1.5000 6.5000 -6.5000 -0.5000 0 4.0000
Columns 79551 through 79560
-11.0000 -23.0000 11.5000 -12.0000 0 24.0000 -12.0000 12.0000 -8.5000 0
Columns 79561 through 79570
-8.0000 22.0000 16.5000 -13.0000 3.0000 -25.0000 -10.0000 26.0000 -12.5000 -13.0000
Columns 79571 through 79580
-20.5000 10.5000 -12.5000 7.5000 -3.5000 0 0 -16.0000 -3.0000 0
Columns 79581 through 79590
0 0 -2.0000 10.0000 7.0000 0 -14.0000 14.0000 20.0000 -15.0000
Columns 79591 through 79600
-9.5000 8.5000 -10.5000 10.5000 -4.0000 -1.5000 0 0 1.5000 -4.5000
Columns 79601 through 79610
2.0000 -2.0000 7.0000 -32.5000 0 0 6.5000 13.0000 0 13.0000
Columns 79611 through 79620
-19.5000 -9.5000 23.5000 -3.0000 -3.0000 3.5000 -4.0000 -1.5000 1.5000 -1.5000
Columns 79621 through 79630
1.0000 1.5000 0 -2.0000 -7.5000 2.0000 12.0000 -6.5000 8.0000 15.0000
Columns 79631 through 79640
0 0 -7.0000 0 -11.5000 4.0000 -11.0000 -22.0000 12.5000 22.5000
Columns 79641 through 79650
15.5000 -22.0000 -11.0000 -18.5000 0.5000 0 5.0000 15.5000 10.5000 -10.0000
Columns 79651 through 79660
-12.0000 -3.5000 -6.0000 -2.0000 0 8.0000 6.0000 -1.5000 4.0000 -5.0000
Columns 79661 through 79670
-3.5000 -3.0000 7.5000 1.0000 0 3.0000 0 -5.0000 0 3.0000
Columns 79671 through 79680
4.5000 5.0000 4.0000 0 0 -12.5000 0 -4.0000 3.5000 3.0000
Columns 79681 through 79690
8.5000 -15.5000 4.0000 12.0000 24.0000 23.5000 11.5000 -12.0000 0 0
Columns 79691 through 79700
-16.0000 0.5000 -16.5000 0 -25.0000 -0.5000 -25.5000 0 25.0000 -13.0000
Columns 79701 through 79710
30.0000 -26.0000 0.5000 13.5000 0 1.5000 0 -6.5000 16.5000 17.0000
Columns 79711 through 79720
17.0000 0 0 0 7.0000 -2.0000 -14.0000 0 -8.0000 -4.5000
Columns 79721 through 79730
-4.5000 17.5000 -0.5000 -1.5000 0 0 0 0 -3.5000 2.0000
Columns 79731 through 79740
1.0000 3.0000 -5.0000 0 0 -6.5000 0 14.5000 -3.5000 27.5000
Columns 79741 through 79750
-20.0000 -9.0000 5.0000 8.5000 -2.0000 0.5000 0 -2.0000 0 0.5000
Columns 79751 through 79760
0 1.0000 -3.0000 -15.5000 -0.5000 16.0000 0 -0.5000 0 -15.5000
Columns 79761 through 79770
4.0000 -11.5000 0 -11.5000 -11.5000 11.0000 -11.0000 -11.0000 11.0000 5.0000
Columns 79771 through 79780
10.5000 -11.0000 0 0 16.0000 14.0000 -21.0000 10.5000 18.5000 -9.0000
Columns 79781 through 79790
10.0000 0 -2.5000 9.0000 -2.0000 -3.5000 -3.5000 0 -2.5000 -3.5000
Columns 79791 through 79800
2.0000 0 1.5000 -8.5000 4.5000 -4.0000 1.0000 -4.5000 2.0000 -5.5000
Columns 79801 through 79810
2.5000 2.0000 0 3.5000 5.0000 1.0000 -3.0000 7.0000 10.0000 22.0000
Columns 79811 through 79820
11.5000 0 23.0000 23.5000 11.5000 23.0000 23.0000 -12.0000 0 24.0000
Columns 79821 through 79830
-12.0000 25.0000 25.0000 -25.0000 -25.5000 -16.5000 25.0000 25.5000 -13.0000 5.0000
Columns 79831 through 79840
-26.0000 -30.0000 -14.5000 0 6.5000 6.5000 0 -4.5000 -7.0000 7.0000
Columns 79841 through 79850
2.0000 -14.0000 -7.0000 0 -5.0000 -7.5000 -8.0000 1.5000 6.0000 -3.0000
Columns 79851 through 79860
0 9.0000 0 0 0 2.0000 -1.5000 -5.0000 3.0000 -2.0000
Columns 79861 through 79870
1.0000 4.0000 6.5000 6.5000 0 0 -9.0000 -4.0000 3.5000 3.5000
Columns 79871 through 79880
and so on.....
E_distance = sqrt(sum((H(:)-J(:)).^2));
sorry sir..i understood that this is the code for eucledian distance but my question is that what is the e.distance in my code in matlab?i mean what is the number?i mean where i will get the result?(e.distance)
On the line after the above assignment (note it is not the same as what you had), add the line
fprintf('distance to file "%s" was %g\n', fileNames{k}, E_distance );
What do you mean e.distance??? You don't have a structure "e" with a member (field) called distance. All you have is a variable called E_distance, which is the Euclidean distance, or the RMS difference. So I'm not sure what you're asking. You say "where i will get the result?" Well, it's right there in that variable.
The calculation is in a loop and the value was not being printed out, so the value would have been disappearing.
thank you very much to all of you...n sir i meant eucledian distance only...
thank you very much sir for all the trouble you have taken out in solving my question.thanx to all..it really worked..thanx once again to both of you for helping me..

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!