Computational-Psychiatry / 3DI

5 stars 2 forks source link

Bug in local expression computation #13

Closed sariyanidi closed 8 months ago

sariyanidi commented 8 months ago

The script compute_local_exp_coefficients.py has

P0 = np.loadtxt(f'{sdir}/p0L_mat.dat')
X0 = P0[:,0]
Y0 = P0[:,1]
Z0 = P0[:,2]

instead of

dx = x-X0
dy = y-X0
dz = z-X0

We must also check how the bases were computed.