help-octave
[Top][All Lists]
Advanced

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

Re: Plot Numbering Font Size


From: John Frain
Subject: Re: Plot Numbering Font Size
Date: Thu, 21 Sep 2023 14:10:58 +0100

Minimize octave and check if the graph is hidden under the octave window.  In Windows you may also be able to open the graph window using the task bar




On Thu, 21 Sept 2023 at 01:23, Samuel Doughty <sdoughty11@gmail.com> wrote:
Hello All,

I followed Dimitri's suggestion and incorporated it into the code below. It will work one time, and then it hands up and produces no plot. What am I missing? What does the first argument in the set(0 ...) do? Thanks,

Sam

On Wed, Sep 20, 2023 at 7:04 PM Samuel Doughty <sdoughty11@gmail.com> wrote:
Thank you, Dimitri!!

That's wonderful! It works!

Sam

On Wed, Sep 20, 2023 at 7:01 PM Dmitri A. Sergatskov <dasergatskov@gmail.com> wrote:
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

----------
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]