Fisher Inverse
Calculates the inverse of the Fisher transformation.
Controller:
CodeCogs
Interface
#include <codecogs/statistics/moments/fisher_inverse.h>
using namespace Stats::Moments;
| double | fisher_inv (double x)[inline]
Calculates the inverse of the Fisher transformation. |
Use the following HTML code to embed the calculators within other websites:
| Name | HTML Code |
|---|
fisher_inv
Calculates the inverse of the Fisher transformation. | |
Fisher Inv
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
| x | a 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.
You must login to leave a messge