Java Number Power Pow(float base, float exponent)

Here you can find the source of Pow(float base, float exponent)

Description

Pow

License

Open Source License

Declaration

public static float Pow(float base, float exponent) 

Method Source Code

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

public class Main {
    public static float Pow(float base, float exponent) {
        return (float) Math.pow(base, exponent);
    }//from  w  w  w .j  a  v  a  2  s  . c  om
}

Related

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