help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plot Numbering Font Size


From: Dmitri A. Sergatskov
Subject: Re: Plot Numbering Font Size
Date: Wed, 20 Sep 2023 20:01:02 -0400

set (0, "defaultaxesfontsize", 24)
plot(1:10)

Dmitri.
-- 


On Wed, Sep 20, 2023 at 7:58 PM Samuel Doughty <sdoughty11@gmail.com> wrote:
Hello All,

Thanks for all your replies. Perhaps I was unclear. What I want to do is to enlarge the numbers that appear along the axes, e.g. 0 1 2 3 4 ... along the x-axis and similarly along the y-axis. I found nothing in your suggestions that seemed to accomplish this task. Please give me some other guidance. Thanks,

Sam

On Wed, Sep 20, 2023 at 6:26 PM Santiago Higuera <shiguera@mercatorlab.com> wrote:

You can put the property values while plotting:

   plot(x,y);

   xlabel('X', 'fontsize', 20);

   title('My plot', 'fontweight', 'bold', ''fontsize', '20');

Or using set(), as says Nicholas.

Regards,

Santiago


Or you can use set()

El 21/9/23 a las 0:05, Nicholas Jankowski escribió:
How in the world can I get larger numbers on the plot axes? 

Use the `set` command to change properties like fontsize.  

----------
We are transitioning to a web based forum
for community help discussions at
https://octave.discourse.group/c/help

----------
We are transitioning to a web based forum
for community help discussions at
https://octave.discourse.group/c/help

reply via email to

[Prev in Thread] Current Thread [Next in Thread]