Skip to content

Commit

Permalink
Fix to estimate_uncertainty in EMToolKit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeplowman authored Nov 27, 2024
1 parent 4427bfc commit 65bf524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EMToolKit/EMToolKit.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def estimate_uncertainty(self, logt, dlogt=0.1, project_map=None):

if(project_map is None): project_map = data[0]

output_cube = np.zeros([project_map.shape[0],project_map.shape[1],len(logt)])
output_cube = np.zeros([project_map.data.shape[0],project_map.data.shape[1],len(logt)])

for i in range(0,data):
dat_tresp = data[i].meta['TRESP']
Expand Down

0 comments on commit 65bf524

Please sign in to comment.