Changeset 689222c in sasview for src/sas/qtgui/Perspectives
- Timestamp:
- Jun 16, 2017 5:38:16 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- b67bfa7
- Parents:
- 85487ebd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingUtilities.py
r06b0138 r689222c 288 288 else: 289 289 # TODO: fix case where applying new data from file on top of existing model data 290 y = (fn - gn[index][0]) / en 291 residuals.y = y 290 try: 291 y = (fn - gn[index][0]) / en 292 residuals.y = y 293 except ValueError: 294 # value errors may show up every once in a while for malformed columns, 295 # just reuse what's there already 296 pass 292 297 293 298 residuals.x = current_data.x[index][0]
Note: See TracChangeset
for help on using the changeset viewer.