Java Gamma gammaCorrection(final float gamma, final float x)

Here you can find the source of gammaCorrection(final float gamma, final float x)

Description

gamma Correction

License

Open Source License

Declaration

public static final float gammaCorrection(final float gamma,
            final float x) 

Method Source Code

//package com.java2s;

public class Main {
    public static final float gammaCorrection(final float gamma,
            final float x) {
        return (float) Math.pow(x, 1 / gamma);
    }/*from   w  ww.j a va 2  s  .  c  o  m*/
}

Related

  1. Gamma(double z)
  2. gamma(int alpha)
  3. gamma(int rgb)
  4. gammaCdf(double a, double x)
  5. gammaCdf(double a, double x)
  6. gammaFunction(double in)
  7. gammaFwd(double lc)
  8. gammaln(double x)
  9. gammaOfArgOn2Plus1(int d)