Changeset e73e723 in sasview
- Timestamp:
- Jul 12, 2016 10:10:33 AM (8 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 20e09c6
- Parents:
- 5878a9ea
- Location:
- src/sas
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/corfunc/corfunc_calculator.py
r5878a9ea re73e723 226 226 } 227 227 228 for key, val in params.iteritems():229 params[key] = self._round_sig_figs(val, 6)230 231 228 return params 232 229 … … 276 273 277 274 return s2 278 279 def _round_sig_figs(self, x, sigfigs):280 """281 Round a number to a given number of significant figures.282 283 :param x: The value to round284 :param sigfigs: How many significant figures to round to285 :return rounded_str: x rounded to the given number of significant286 figures, as a string287 """288 # Index of first significant digit289 significant_digit = -int(np.floor(np.log10(np.abs(x))))290 # Number of digits required for correct number of sig figs291 digits = significant_digit + (sigfigs - 1)292 rounded = np.round(x, decimals=digits)293 rounded_str = "{1:.{0}f}".format(sigfigs -1 + significant_digit,294 rounded)295 return rounded_str -
src/sas/sasgui/perspectives/corfunc/corfunc_panel.py
r5878a9ea re73e723 1 1 import wx 2 2 import sys 3 import numpy as np 3 4 from wx.lib.scrolledpanel import ScrolledPanel 4 5 from sas.sasgui.guiframe.events import PlotQrangeEvent … … 313 314 error = True 314 315 for key, value in params.iteritems(): 315 self._output_boxes[key].SetValue(value) 316 rounded = self._round_sig_figs(value, 6) 317 self._output_boxes[key].SetValue(rounded) 316 318 if error: 317 319 msg = 'Not all parameters were able to be calculated' … … 605 607 self._qmax2_input.Enable() 606 608 self._background_input.Enable() 609 610 def _round_sig_figs(self, x, sigfigs): 611 """ 612 Round a number to a given number of significant figures. 613 614 :param x: The value to round 615 :param sigfigs: How many significant figures to round to 616 :return rounded_str: x rounded to the given number of significant 617 figures, as a string 618 """ 619 # Index of first significant digit 620 significant_digit = -int(np.floor(np.log10(np.abs(x)))) 621 # Number of digits required for correct number of sig figs 622 digits = significant_digit + (sigfigs - 1) 623 rounded = np.round(x, decimals=digits) 624 rounded_str = "{1:.{0}f}".format(sigfigs -1 + significant_digit, 625 rounded) 626 return rounded_str -
src/sas/sasgui/perspectives/corfunc/corfunc_state.py
rd4f5637 re73e723 178 178 for item in output_list: 179 179 element = new_doc.createElement(item[0]) 180 element.appendChild(new_doc.createTextNode(self.outputs[item[0]])) 180 value = self.outputs[item[0]] 181 element.appendChild(new_doc.createTextNode(str(value))) 181 182 output.appendChild(element) 182 183 … … 240 241 parameter = get_content("ns:{}".format(item[0]), entry) 241 242 if parameter is not None: 242 self.outputs[item[0]] = parameter.text.strip()243 self.outputs[item[0]] = float(parameter.text.strip()) 243 244 244 245
Note: See TracChangeset
for help on using the changeset viewer.