Java Number Power pow(float a, float b)

Here you can find the source of pow(float a, float b)

Description

pow

License

Open Source License

Declaration

public static final float pow(float a, float b) 

Method Source Code

//package com.java2s;

public class Main {
    public static final float pow(float a, float b) {
        //    if (Settings.FAST_POW) {
        //      return fastPow(a, b);
        //    } else {
        return (float) StrictMath.pow(a, b);
        //    }//w w w  . ja  va 2s  . com
    }
}

Related

  1. pow(final float a, final float b)
  2. pow(final int a, final int b)
  3. pow(final int a, final int b)
  4. pow(final int b, final int e)
  5. pow(final long base, final long exponent)
  6. Pow(float base, float exponent)
  7. pow(float x, int y)
  8. pow(float[] inData, float rate)
  9. pow(float[][] in)