.sign

Information

See sign()

Interface

function sign
  input Real v;
  output Integer _sign;
  /* We do this with external "builtin" for now. But maybe we should inline it instead...
    annotation(__OpenModelica_EarlyInline = true);
  algorithm
    _sign := noEvent(if v > 0 then 1 else if v < 0 then -1 else 0);
   */
end sign;

Generated at 2024-03-27T19:15:56Z by OpenModelicaOpenModelica 1.22.3 using GenerateDoc.mos