rethabile
rethabile

Reputation: 3199

make grid lines bigger in matlab figures

How can I make grid lines bigger (more fat for printing purpose) in my matlab figures?

I'm including matlab figures in to my .tex document after using the following

print -depsc testFig.eps

to convert the figure into .eps for inclusion in my .tex doc.

But my grid lines don't look good at all. i.e they appear faint when I print the document. Is there anyway I can increase the size/width of the grid lines?

test figure

Upvotes: 1

Views: 4860

Answers (1)

gollum
gollum

Reputation: 105

If you use

set(gca,'LineWidth',10)

after "grid on" this should increase the boarders of all axes, including the grid lines.

Upvotes: 3

Related Questions