How to maximize MATLAB score in full screen?

I create some numbers in MATLAB, and I have a command that I run that hides them until .eps after creating the shape.

However, I want the numbers to be increased before they are saved in .eps. I am looking for a command that tells MATLAB about resizing a shape to screen size. Then I want to run my function, which is saved in .eps.

Is there such a way?

I heard that you can specify the width of the pixel of the shape. I forgot this command, so if you know it, it will be useful.

What I really want is some kind of maximize_figure() type, if possible.

+4
source share
2 answers

When opening a new figure, you can pass arguments to the figure function:

 figure('units','normalized','outerposition',[0 0 1 1]) 

A complete list of shape properties is also available here .

+10
source

Source: https://habr.com/ru/post/1495600/


All Articles