Code covered by the BSD License  

Highlights from
Homogeneity test for multiple correlation coefficients

from Homogeneity test for multiple correlation coefficients by Thomas Zoeller
Tests whether multiple correlation coefficients are equal.

ifisherz.m
function[r]=ifisherz(z)
%IFISHERZ Inverse Fisher's Z-transform.
%   R = IFISHERZ(Z) re-transforms Z into the correlation coefficient R.

%20080103, Thomas Zoeller (tzo@gmx.de)

z=z(:);
r=(exp(2*z)-1)./(exp(2*z)+1);

Contact us at files@mathworks.com