gsl_vector_complex **measurements_disco;
- static void cdiag (gsl_vector *v, gsl_matrix_complex *m);
+ static void cdiag (gsl_vector *v, gsl_matrix_complex *evec, gsl_matrix_complex *m);
};
obs_diagcorr::obs_diagcorr(o815 *_O815) : o815::obs("diagcorr",
}
};
-void obs_diagcorr::cdiag (gsl_vector *v, gsl_matrix_complex *m)
+void obs_diagcorr::cdiag (gsl_vector *v, gsl_matrix_complex *evec, gsl_matrix_complex *m)
{
- gsl_matrix_complex *evec = gsl_matrix_complex_alloc(4,4);
gsl_eigen_hermv_workspace *wspace = gsl_eigen_hermv_alloc(100);
gsl_eigen_hermv(m, v, evec, wspace);
void obs_diagcorr::_finish() {
gsl_matrix_complex *totalval = gsl_matrix_complex_alloc(4,4);
gsl_matrix_complex *tmpmatrix = gsl_matrix_complex_alloc(4,4);
+ gsl_matrix_complex *tmpmatrix2 = gsl_matrix_complex_alloc(4,4);
gsl_vector *tmpvec = gsl_vector_alloc(4);
gsl_vector_complex *tmpvecc = gsl_vector_complex_alloc(4);
gsl_vector *tmpvec2 = gsl_vector_alloc(4);
gsl_vector *jackres = gsl_vector_alloc(4);
gsl_vector *jackerrornorm = gsl_vector_alloc(4);
gsl_vector_complex *totaldisco = gsl_vector_complex_alloc(4);
+ gsl_matrix_complex *evecres = gsl_matrix_complex_alloc(4,4);
+ gsl_matrix_complex *evecerrornorm = gsl_matrix_complex_alloc(4,4);
gsl_vector_complex_set_zero(totaldisco);
for (int imeas=0; imeas<O815->comargs.nmeas; imeas++)
for (int itsep = 0; itsep < O815->comargs.lsize[1]/2; itsep++) {
gsl_matrix_complex_set_zero(totalval);
gsl_vector_set_zero(jackerrornorm);
+ gsl_matrix_complex_set_zero(evecerrornorm);
for (int imeas=0; imeas<O815->comargs.nmeas; imeas++)
gsl_matrix_complex_add( totalval, measurements[imeas][itsep] );
)
);
}
- cdiag(jackres, tmpmatrix);
+ cdiag(jackres, evecres, tmpmatrix);
for (int imeas=0; imeas<O815->comargs.nmeas; imeas++) {
gsl_matrix_complex_memcpy (tmpmatrix, totalval);
)
);
}
- cdiag(tmpvec, tmpmatrix);
+ cdiag(tmpvec, tmpmatrix2, tmpmatrix);
+
gsl_vector_sub(tmpvec, jackres);
gsl_vector_memcpy(tmpvec2, tmpvec);
gsl_vector_mul(tmpvec, tmpvec2);
gsl_vector_add(jackerrornorm, tmpvec);
+
+ gsl_matrix_complex_sub(tmpmatrix2, evecres);
+ for (int i=0; i<4; i++)
+ for (int j=0; j<4; j++) {
+ gsl_complex tmperr =
+ gsl_complex_rect( pow(GSL_REAL( gsl_matrix_complex_get( tmpmatrix2, i, j ) ),2),
+ pow(GSL_IMAG( gsl_matrix_complex_get( tmpmatrix2, i, j ) ),2));
+ gsl_matrix_complex_set(tmpmatrix, i, j, tmperr);
+ }
+ gsl_matrix_complex_add( evecerrornorm, tmpmatrix );
}
gsl_vector_scale( jackerrornorm,
(double)(O815->comargs.nmeas-1)/O815->comargs.nmeas );
-
+ gsl_matrix_complex_scale( evecerrornorm, gsl_complex_rect( (double)(O815->comargs.nmeas-1)/O815->comargs.nmeas, 0.0 ) );
+
*out << O815->paraQ->getParaVals();
*out << "\t" << itsep;
for (int iev = 0; iev < 4; iev++) {
*out << "\t" << gsl_vector_get(jackres,iev)
<< "\t" << sqrt(gsl_vector_get(jackerrornorm,iev));
+ for (int iinter=0; iinter<4; iinter++)
+ *out << "\t" << GSL_REAL(gsl_matrix_complex_get(evecres, iinter, iev))
+ << "\t" << sqrt( GSL_REAL(gsl_matrix_complex_get(evecerrornorm, iinter, iev)) );
}
*out << endl;
}
gsl_matrix_complex_free(totalval);
gsl_matrix_complex_free(tmpmatrix);
+ gsl_matrix_complex_free(evecres);
gsl_vector_free(tmpvec);
gsl_vector_complex_free(tmpvecc);
gsl_vector_free(tmpvec2);