Page MenuHomePhabricator

Handle CEST normalization for M0 voxels that are zero
Closed, ResolvedPublic

Description

Currently any voxels in the M0 that are used to normalize the CEST images will generate inf if they are zero themselves. The handling so far has been to set them to zero after normalization

Z_Stack = Mz_Stack./M0_Stack;
Z_Stack(M0_Stack == 0) = 0;