I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
get GPL
COST (GBP)
this unit 0.20
sub units 0.00
+
0

Fisher Inverse

Calculates the inverse of the Fisher transformation.
Controller: CodeCogs

Interface

C++

Fisher Inv

 
doublefisher_invdoublex )[inline]
The inverse of the Fisher transformation is defined by: 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

xa numeric value for which you want the transformation

Returns

the inverse of the Stats/Moments/Fisher transformation.

Authors

Anca Filibiu (August 2005)
Source Code

Source code is available when you agree to a GP Licence or buy a Commercial Licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.