function testplot(m,inc,scale)
[row,col]=size(m);
hold on;
x=[1 1:col col 1];
for i=row:-1:1,
	y=[0 scale*m(i,:)+inc*i 0 0];
	patch(x,y,'w');
end
