Mercurial > repos > public > sbplib
view +parametrization/place_label.m @ 338:3974dccff55b feature/beams
Made block matrices created from a matrix always have matrix blocks, never empty.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 24 Oct 2016 17:01:05 +0200 |
parents | 3a3cf386bb7e |
children | 0e198af1184b |
line wrap: on
line source
function place_label(pt,str,horzAl,vertAl) default_arg('horzAl','center'); default_arg('vertAl', 'middle'); x = pt(1); y = pt(2); h = text(x,y,str); h.HorizontalAlignment = horzAl; h.VerticalAlignment = vertAl; end