Calculates the "sign" function
sig = -1 if x[k] < b else 0component-wise.
function sign_lt extends Modelica.Icons.Function; input Real[:] x "argument"; input Real b(min = 0) "threshold value"; output Real[size(x, 1)] y "characteristic function of x < b"; end sign_lt;