Alphabetical list Categories
qmarker Select a new marker for qmark and qpmark
Help text:

qmarker open|solid|brush +|x|-|||o|s|d|<|>|^|v|p|h size selects a marker. An "open" mark is outlined with the current pen and filled with white; a "solid" mark is outlined with the current pen and filled with its color; a "brush" mark is outlined with the current pen and filled with the current brush (which may be "none").
Marks are: o: circle/disk
                       + x: horizontal+vertical or diagonal crosses
                       - |: horizontal or vertical lines
                       s d p h: square, diamond, pentagon, or hexagon
                       < > ^ v: left / right / up / down pointing triangles
The fill style has no effect on +|x|-|| marks.

Example:

qfigure('qmarker', 3, 3);

sty = { 'open', 'solid', 'brush' };

shp = '+x-|osd<>^vph';

qpen k

qbrush r

for x=1:length(shp)

    for y=1:length(sty)

        qmarker(shp(x), sty{y});

        qmark(x, y);

    end

end

qshrink

QPlot Documentation — (C) Daniel Wagenaar, 2014–2019