Here you can find the source of signum(float val)
public static int signum(float val)
//package com.java2s; //License from project: Open Source License public class Main { public static int signum(float val) { return (int) Math.signum(val); }//from ww w. j a v a 2s.c o m }