Statistics › Moments ›
Fisher
Calculates Fisher transformation.
Controller: CodeCogs
Contents
Interface
C++
Fisher
doublefisher( | double | x | ) |
References:
Wikipedia, http://en.wikipedia.org/wiki/Fisher_transformationExample 1
#include <codecogs/statistics/moments/fisher.h> #include <iostream> int main() { double fis = Stats::Moments::fisher(0.57); std::cout << "The Fisher transformation is: " << fis << std::endl; return 0; }
Output:The Fisher transformation is: 0.647523
Parameters
x a numeric value for which you want the transformation
Returns
- the Fisher transformation of x
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.