Skip to content

Commit

Permalink
left in hard coded DP shape
Browse files Browse the repository at this point in the history
  • Loading branch information
smribet committed Aug 30, 2024
1 parent ac9364a commit 019c296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py4DSTEM/tomography/tomography.py
Original file line number Diff line number Diff line change
Expand Up @@ -1024,8 +1024,8 @@ def _forward(
dy_diff = line_y_diff - yF_diff
dz_diff = line_z_diff - zF_diff

qx = xp.arange(11)
qy = xp.arange(11)
qx = xp.arange(s[-1])
qy = xp.arange(s[-1])
qxx, qyy = xp.meshgrid(qx, qy)

ind0_diff = np.hstack(
Expand Down

0 comments on commit 019c296

Please sign in to comment.