You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
156 B
Matlab

function plot_image(I,scale)
if nargin<2 || isempty(scale)
imagesc(I);
else
imagesc(I,scale);
end
axis('equal','tight'); set(gca,'XTick',[],'YTick',[]);