Prev: Analysis of signal
Next: Help with an error
From: mustafa senkaya on 7 Apr 2010 07:43 Hi everyone, i want adjust my graphics position in figure windows because, when i copy figure to Microsoft word, figure has big blank from border to graphic, so i crop border and i use my time. i have lots of graphic. have you solution for this proplem. Thanks. Best Regrads
From: Wayne King on 7 Apr 2010 08:24 "mustafa senkaya" <mustafasenkaya(a)gmail.com> wrote in message <hphr49$j9b$1(a)fred.mathworks.com>... > Hi everyone, > i want adjust my graphics position in figure windows because, when i copy figure to Microsoft word, figure has big blank from border to graphic, so i crop border and i use my time. i have lots of graphic. have you solution for this proplem. Thanks. > Best Regrads Hi Mustafa, how about using the axes Position property? For example, plot(randn(100,1)); % see what the default is get(gca,'Position') % now take up almost the entire figure window set(gca,'Position',[0.05 0.05 0.9 0.9]); Wayne
From: mustafa senkaya on 7 Apr 2010 09:03 Position parametre is useful, thanks... "Wayne King" <wmkingty(a)gmail.com> wrote in message <hphthl$opu$1(a)fred.mathworks.com>... > "mustafa senkaya" <mustafasenkaya(a)gmail.com> wrote in message <hphr49$j9b$1(a)fred.mathworks.com>... > > Hi everyone, > > i want adjust my graphics position in figure windows because, when i copy figure to Microsoft word, figure has big blank from border to graphic, so i crop border and i use my time. i have lots of graphic. have you solution for this proplem. Thanks. > > Best Regrads > > Hi Mustafa, how about using the axes Position property? For example, > > plot(randn(100,1)); > % see what the default is > get(gca,'Position') > % now take up almost the entire figure window > set(gca,'Position',[0.05 0.05 0.9 0.9]); > > Wayne
From: Wayne King on 7 Apr 2010 09:20 "mustafa senkaya" <mustafasenkaya(a)gmail.com> wrote in message <hphvqa$spf$1(a)fred.mathworks.com>... > Position parametre is useful, thanks... > "Wayne King" <wmkingty(a)gmail.com> wrote in message <hphthl$opu$1(a)fred.mathworks.com>... > > "mustafa senkaya" <mustafasenkaya(a)gmail.com> wrote in message <hphr49$j9b$1(a)fred.mathworks.com>... > > > Hi everyone, > > > i want adjust my graphics position in figure windows because, when i copy figure to Microsoft word, figure has big blank from border to graphic, so i crop border and i use my time. i have lots of graphic. have you solution for this proplem. Thanks. > > > Best Regrads > > > > Hi Mustafa, how about using the axes Position property? For example, > > > > plot(randn(100,1)); > > % see what the default is > > get(gca,'Position') > > % now take up almost the entire figure window > > set(gca,'Position',[0.05 0.05 0.9 0.9]); > > > > Wayne Rereading your original post, if the problem is the way it looks in Word, are you exporting your figure as some figure format, e.g. .png, .jpeg? and then inserting that file in Word.
|
Pages: 1 Prev: Analysis of signal Next: Help with an error |