FUNCTION
Fisher_Inverse
Calculates the inverse of the Fisher transformation.
Interface
#include <codecogs/statistics/moments/fisher_inverse.h>
using namespace Statistics::Moments;
The inverse of the Fisher transformation is defined by:
(1)
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.664037Parameters
x
a numeric value for which you want the transformation
Returns
the inverse of the Fisher transformation.
Interactive Calculator
x
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.