Bild=[1 1 1 1 1;1 1 1 1 1; 1 1 0 1 1;1 1 1 1 1]

subplot(2,1,1);
imagesc(Bild)
colormap('gray')
axis image

subplot(2,1,2);
x=0:1:5;
y=0:2:10;
plot(x,y,'r*')

