help-octave
[Top][All Lists]
Advanced

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

Plot text size?


From: mpnerm01
Subject: Plot text size?
Date: Tue, 13 Apr 2010 09:23:16 -0400

I have been using octave to create plots for lab reports and the text in the plot is smaller than I would prefer. Is there a simple thing I've missed in the octave documentation that controls the size of text for a plot? I've include a basic example of what kind plotting I am doing.

x = linspace(0,5,1000);
y = x;

plot(x,y,'r*')
xlabel('X')
ylabel('Y')
title('Plot of Y vs X')
legend('y = x')
grid on

reply via email to

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