From: Xiaodong Duan on
hello guys!

I need to export a figure whose resolution ratio is much bigger than my monitor's, because there are so many ticks on x-axis, and the ticks would overlay each other under the monitor resolution ratio. Therefore how i can get a bigger resototion figure?

thanks!
From: TideMan on
On Jul 26, 4:00 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> hello guys!
>
> I need to export a figure whose resolution ratio is much bigger than my monitor's, because there are so many ticks on x-axis, and the ticks would overlay each other under the monitor resolution ratio. Therefore how i can get a bigger resototion figure?
>
> thanks!

Just print it.
For example:
print('-depsc','MyFigure')
In general, the printed figure will be much higher resolution than
what appears on the screen. In fact, the default for eps is 300 dpi,
but you can set it - see help print.

From: Xiaodong Duan on
I have tried that, but the ticks of x-axis still all overlaid by each others, how can i separate them? Thanks!


TideMan <mulgor(a)gmail.com> wrote in message <8b936b52-adf6-4edc-b775-5d00cfa1ed7d(a)y32g2000prc.googlegroups.com>...
> On Jul 26, 4:00 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> > hello guys!
> >
> > I need to export a figure whose resolution ratio is much bigger than my monitor's, because there are so many ticks on x-axis, and the ticks would overlay each other under the monitor resolution ratio. Therefore how i can get a bigger resototion figure?
> >
> > thanks!
>
> Just print it.
> For example:
> print('-depsc','MyFigure')
> In general, the printed figure will be much higher resolution than
> what appears on the screen. In fact, the default for eps is 300 dpi,
> but you can set it - see help print.
From: TideMan on
On Jul 26, 6:03 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> I have tried that, but the ticks of x-axis still all overlaid by each others, how can i separate them? Thanks!
>
> TideMan <mul...(a)gmail.com> wrote in message <8b936b52-adf6-4edc-b775-5d00cfa1e...(a)y32g2000prc.googlegroups.com>...
> > On Jul 26, 4:00 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> > > hello guys!
>
> > > I need to export a figure whose resolution ratio is much bigger than my monitor's, because there are so many ticks on x-axis, and the ticks would overlay each other under the monitor resolution ratio. Therefore how i can get a bigger resototion figure?
>
> > > thanks!
>
> > Just print it.
> > For example:
> > print('-depsc','MyFigure')
> > In general, the printed figure will be much higher resolution than
> > what appears on the screen. In fact, the default for eps is 300 dpi,
> > but you can set it - see help print.

Don't top post. It makes the thread hard to follow.
Put your reply UNDERNEATH.

You'll need to make the figure bigger then using PaperPosition and/or
PaperOrientation

From: Xiaodong Duan on
TideMan <mulgor(a)gmail.com> wrote in message <2c178f77-705d-40fc-abb1-54e8ae213564(a)y32g2000prc.googlegroups.com>...
> On Jul 26, 6:03 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> > I have tried that, but the ticks of x-axis still all overlaid by each others, how can i separate them? Thanks!
> >
> > TideMan <mul...(a)gmail.com> wrote in message <8b936b52-adf6-4edc-b775-5d00cfa1e...(a)y32g2000prc.googlegroups.com>...
> > > On Jul 26, 4:00 pm, "Xiaodong Duan" <csxiaod...(a)gmail.com> wrote:
> > > > hello guys!
> >
> > > > I need to export a figure whose resolution ratio is much bigger than my monitor's, because there are so many ticks on x-axis, and the ticks would overlay each other under the monitor resolution ratio. Therefore how i can get a bigger resototion figure?
> >
> > > > thanks!
> >
> > > Just print it.
> > > For example:
> > > print('-depsc','MyFigure')
> > > In general, the printed figure will be much higher resolution than
> > > what appears on the screen. In fact, the default for eps is 300 dpi,
> > > but you can set it - see help print.
>
> Don't top post. It makes the thread hard to follow.
> Put your reply UNDERNEATH.
>
> You'll need to make the figure bigger then using PaperPosition and/or
> PaperOrientation

Got it! Thanks, I reached it by set paperposition!