Java BigInteger Calculate encodeFloat(BigInteger j, int e)

Here you can find the source of encodeFloat(BigInteger j, int e)

Description

encode Float

License

Open Source License

Declaration

public static float encodeFloat(BigInteger j, int e) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.math.BigInteger;

public class Main {
    public static float encodeFloat(BigInteger j, int e) {
        return Math.scalb(j.floatValue(), e);
    }//from  w  w w . j  a  va 2 s  .c o m
}

Related

  1. encode(BigInteger number, String alphabets)
  2. encode_long(BigInteger big)
  3. encodeBigInt(OutputStream out, BigInteger x)
  4. encodeBigIntNoTypeCode(BigInteger value)
  5. encodeCompactBits(BigInteger value)
  6. encodeInteger(BigInteger i, OutputStream os)
  7. encodeMPI(BigInteger value, boolean includeLength)
  8. encodeToBase62(BigInteger num)
  9. encodeToString(final BigInteger input)