Page MenuHomePhabricator

Concentration curve converter view- errors in formula for T2-weighted signal conversion
Closed, ResolvedPublic

Description

The current formula for conversion from T2-weighted signal to concentration is given by:
concentration = this->m_k / this->m_TE * log((double)(value- baseline))

It should be however:
concentration = - this->m_k / this->m_TE * log((double)(value/baseline))

In this task, the formula is corrected.