Code covered by the BSD License  

Highlights from
Precise Figure Placing

image thumbnail
from Precise Figure Placing by Markus Buehren
This contribution provides functions for precisely placing a figure to a given screen location.

deletefiguresizeinfo
function deletefiguresizeinfo
%DELETEFIGURESIZEINFO  Delete saved figure size info.
%		DELETEFIGURESIZEINFO removes the file containing the figure size info
%		for the current host.
%
%		Markus Buehren
%		Last modified: 20.04.2008
%
%		See also COMPUTEFIGURESIZEINFO, GETFIGURESIZEINFO.

figureSizeInfoFile = sprintf('%s/figuresizeinfo_%s.mat', tempdir2, gethostname);

if exist(figureSizeInfoFile, 'file')
	delete(figureSizeInfoFile);
end

Contact us