Statistics › Moments ›
Fisher Inverse
Calculates the inverse of the Fisher transformation.
Controller: CodeCogs
Contents
Interface
C++
Fisher Inv
doublefisher_inv( | double | x | )[inline] |
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.