summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/toolbox_basic/remap_angle.m
blob: 09f8cff71ca92c3feadcf1a8111cc422668ee8c8 (plain) (blame)
1
2
3
4
function a = remap_angle(theta,min,max)

a = (theta<=min).*(theta+pi) + (theta>=max).*(theta-pi) +...
           ((theta>min)&(theta<max)).*theta;