Changeset 9220d255 in sasview for src/sas/qtgui/Plotting
- Timestamp:
- Oct 24, 2017 3:10:48 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:
- cca56a5
- Parents:
- 4fdb727 (diff), f4a1433 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Plotter2D.py
rd5c5d3d rf4a1433 394 394 if data is None: 395 395 return 396 if data.ndim == 1: 396 if data.ndim == 0: 397 return 398 elif data.ndim == 1: 397 399 output = PlotUtilities.build_matrix(data, self.qx_data, self.qy_data) 398 400 else:
Note: See TracChangeset
for help on using the changeset viewer.