view +draw/point.m @ 909:ab1759166a8c feature/utux2D

Bugfix in InterfaceOptions.setOption
author Martin Almquist <malmquist@stanford.edu>
date Fri, 23 Nov 2018 20:21:28 -0800
parents 48b6fb693025
children
line wrap: on
line source

function l = point(p)
    l = line(p(1,:),p(2,:));
    l.LineStyle = 'none';
    l.Marker = '.';
end