Mercurial > repos > public > sbplib
view +parametrization/place_label.m @ 1341:663eb90a4559 feature/D2_boundary_opt
Pass logic grid along to diracDiscr
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 22 Jul 2022 16:37:49 +0200 |
parents | 0e198af1184b |
children |
line wrap: on
line source
% 'left' | 'center' | 'right' % 'baseline' | 'top' | 'cap' | 'middle' | 'bottom' 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