Skip to content

Instantly share code, notes, and snippets.

@neotheicebird
Created March 8, 2014 20:24
Show Gist options
  • Save neotheicebird/9438334 to your computer and use it in GitHub Desktop.
Save neotheicebird/9438334 to your computer and use it in GitHub Desktop.
Full screen of a matlab figure
fig = figure;
scrsz = get(0,'ScreenSize');
set(fig,'Position', [scrsz(1) scrsz(2) scrsz(3) scrsz(4)]);cla;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment