RSignBJ

Parameters
a real
comment
patch

1.00

Source
Blizzard.j
return type
real
Source code
function RSignBJ takes real a returns real
    if (a >= 0.0) then
        return 1.0
    else
        return -1.0
    endif
endfunction