Newer
Older
/* f2z.cc
Mark Woolrich & Mark Jenkinson, FMRIB Image Analysis Group
Copyright (C) 1999-2000 University of Oxford */
/* CCOPYRIGHT */
#include "utils/log.h"
#include "utils/tracer_plus.h"
using namespace NEWMAT;
using namespace Utilities;
namespace MISCMATHS {
F2z* F2z::f2z = NULL;
float F2z::largef2logp(float f, int d1, int d2)
{
Tracer_Plus ts("F2z::largef2logp");
// no of iterations:
int N = 20;
// cout << f<< endl;
// cout << d1<< endl;
// cout << d2<< endl;
if (f<=0.0) {
cerr << "f cannot be zero or negative!" << endl;
return 0.0;
}
if (d1<=0 || d2<=0) {
cerr << "DOFs cannot be zero or negative!" << endl;
return 0.0;
}
double alpha=d1/(double)d2;
double m=(d1+d2)/2.0;
double n=(1-d1/2.0);
double loggam = (d1/2.0)*(::log(d1/(double)d2)-logbeta(d2/2.0,d1/2.0));
//iter=f^(-n)/(alpha*(n+m-1)) + n*f^(-(n+1))/(alpha^2*(n+m-1)*(n+m)) + n*(n+1)*f^(-(n+2))/(alpha^3*(n+m-1)*(n+m)*(n+m+1));
double top = 1.0;
double bot = n+m-1;
double iter = 0.0;
// cerr << "logbeta(d2/2.0,d1/2.0)=" << logbeta(d2/2.0,d1/2.0) << endl;
// cerr << "loggam = " << loggam << endl;
// cerr << "n = " << n << endl;
// cerr << "m = " << m << endl;
for(int i = 1; i <= N; i++)
{
iter = iter + top* ( std::pow( f,float(-(n+i-1)) ) / ( std::pow(alpha,double(i))*bot ) );
Mark Jenkinson
committed
if(iter <= 0) throw Exception("iter negative");
float logp = loggam-(m-1)*(::log(1+alpha*f))+::log(iter);
// cerr << "iter = " << iter << endl;
// cerr << "logp = " << logp << endl;
return logp;
}
bool F2z::islargef(float f, int d1, int d2, float &logp) {
try
{
logp=largef2logp(f,d1,d2);
}
Mark Jenkinson
committed
catch(Exception& p_excp)
{
cerr << "Negative iter in F2z::largef2logp" << endl;
return false;
}
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
return issmalllogp(logp);
}
else
return false;
}
bool F2z::issmalllogp(float logp) {
return (logp < -14.5);
}
float F2z::convert(float f, int d1, int d2)
{
Tracer_Plus ts("F2z::convert");
float z = 0.0, logp=0.0;
if(!islargef(f,d1,d2,logp)) {
double p = MISCMATHS::fdtr(d1, d2, f);
z = MISCMATHS::ndtri(p);
}
else {
z = logp2largez(logp);
}
return z;
}
void F2z::ComputeFStats(const ColumnVector& p_fs, int p_dof1, int p_dof2, ColumnVector& p_zs)
{
ColumnVector dof2 = p_fs;
dof2 = p_dof2;
ComputeFStats(p_fs,p_dof1,dof2,p_zs);
}
void F2z::ComputeFStats(const ColumnVector& p_fs, int p_dof1, const ColumnVector& p_dof2, ColumnVector& p_zs)
{
Tracer_Plus ts("F2z::ComputeFStats");
int numTS = p_fs.Nrows();
p_zs.ReSize(numTS);
F2z& f2z = F2z::getInstance();
for(int i = 1; i <= numTS; i++)
// cerr << "i=" << i;
// cerr << ",p_fs(i)=" << p_fs(i);
// cerr << ",p_dof1=" << p_dof1;
// cerr << ",p_dof2=" << p_dof2(i) << endl;
p_zs(i) = f2z.convert(p_fs(i),int(p_dof1),int(p_dof2(i)));
}
else
{
p_zs(i) = 0.0;
}
}
}
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
void F2z::ComputeFStats(const ColumnVector& p_fs, const ColumnVector& p_dof1, const ColumnVector& p_dof2, ColumnVector& p_zs)
{
Tracer_Plus ts("F2z::ComputeFStats");
int numTS = p_fs.Nrows();
p_zs.ReSize(numTS);
F2z& f2z = F2z::getInstance();
for(int i = 1; i <= numTS; i++)
{
if (p_fs(i) > 0.0)
{
// cerr << "i=" << i;
// cerr << ",p_fs(i)=" << p_fs(i);
// cerr << ",p_dof1=" << p_dof1;
// cerr << ",p_dof2=" << p_dof2(i) << endl;
p_zs(i) = f2z.convert(p_fs(i),int(p_dof1(i)),int(p_dof2(i)));
}
else
{
p_zs(i) = 0.0;
}
}
}