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.10
sub units 0.00
+
0

Fisher

Calculates Fisher transformation.
Controller: CodeCogs

Interface

C++

Fisher

 
doublefisherdoublex )
In statistics, hypotheses about the value of x, the correlation coefficient between variables y and z of the underlying population, can be tested using the Fisher transformation applied to x.

Definition of the Fisher transformation:

Here Z is approximately normally distributed with mean x.

References:

Wikipedia, http://en.wikipedia.org/wiki/Fisher_transformation

Example 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

xa 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.