Calculates the inverse of the Fisher transformation.

View versions (1)

Interface

#include <codecogs/statistics/moments/fisher_inverse.h>

using namespace Statistics::Moments;

The inverse of the Fisher transformation is defined by:

Y=\frac{e^{2x}-1}{e^{2x}+1}
(1)

where x is the number you want to apply the inverse of the Fisher transformation on.

The inverse of the Fisher Transformation is the inverse of the FISHER() function. Use this transformation when analyzing correlations between ranges or arrays of data. If y = FISHER(x), then FISHERINV(y) = x.

References

MathWorld, http://mathworld.wolfram.com/

Example 1

#include <codecogs/statistics/moments/fisher_inverse.h>
#include <iostream>
int main()
{
  double inv= Stats::Moments::fisher_inv(0.8);
  std::cout << "The inverse of the Fisher transformation is: " << inv << std::endl;
  return 0;
}

Output:

The inverse of the Fisher transformation is:0.664037

Parameters

x
a numeric value for which you want the transformation

Returns

the inverse of the Fisher transformation.
GPL Licence — free for non commercial use. See Licence details.

Interactive Calculator

x
Result