Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Markerfacecolor in Octave not working?

Tags:

plot

octave

I'm trying to plot a collection of points as well as a geometrical shape, which is working fine. However, i wanted bigger dots for the points. The standard octave dot ('.') cannot be resized, apparently.

I thought of using the circle marker instead, which can be resized, but i can't seem to manage to "fill" them.

My code: plot(A(:,1),A(:,2),"1o","markersize",5,"markerfacecolor","auto",hull(:,1),hull(:,2),"b",roster(:,1),roster(:,2),".0");

Also, is there a way to make the grid points appear without having to either cope with grid lines, or without having to generate a matrix and plot it?

like image 246
Koeneuze Avatar asked Oct 09 '11 12:10

Koeneuze


1 Answers

It seems to be a bug with octave plot function that never got fixed.

like image 131
andersonvom Avatar answered Sep 30 '22 05:09

andersonvom