Java Number Power pow3_strict(final float a)

Here you can find the source of pow3_strict(final float a)

Description

Strict version.

License

Open Source License

Parameter

Parameter Description
a A value.

Return

a*a*a.

Declaration

public static strictfp float pow3_strict(final float a) 

Method Source Code

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

public class Main {
    /**//  ww  w . j av  a  2 s .c o m
     * Strict version.
     *
     * @param a
     *            A value.
     * @return a*a*a.
     */
    public static strictfp float pow3_strict(final float a) {
        return a * a * a;
    }

    /**
     * Strict version.
     *
     * @param a
     *            A value.
     * @return a*a*a.
     */
    public static strictfp double pow3_strict(final double a) {
        return a * a * a;
    }
}

Related

  1. pow2(int c)
  2. pow2(int i)
  3. pow2(long x)
  4. Pow2(Object in, double val)
  5. pow2ByteIndex(final int x)
  6. pow4(double val)
  7. pow9(final double x)
  8. powDecay(double x, double y)
  9. power(double d, int exp)