function see_image

name='A';

see_x_name=strcat('see','.x');
see_y_name=strcat('see','.y');

see_total_x=load(see_x_name);
see_total_y=load(see_y_name);

for i=1:256
    for j=1:256
        see_x(i,j)=see_total_x(j+256*(i-1));
        see_y(i,j)=see_total_y(j+256*(i-1));
    end
end

image_x=image(see_x);
get(image_x);

figure;
hold on;

magnitude=sqrt(see_x.^2+see_y.^2);
length(colormap);
max=max(max(magnitude))
min=0;
number_of_squares=170;

index=magnitude*64/max;

image(index);
axis([0 256 0 256]);
