コード例 #1
0
ファイル: stats_ui.py プロジェクト: christandiono/nutmeg-py
 def _save_stat_fired(self):
     f = get_saveas_file(
         None, dialog='Select Filename to Save', wildcard='*.npy'
         )
     f, ext = os.path.splitext(f)
     self.stats_results.save(f)
コード例 #2
0
ファイル: stats_ui.py プロジェクト: christandiono/nutmeg-py
 def _save_avg_fired(self):
     f = get_saveas_file(
         None, dialog='Select Filename to Save', wildcard='*.npy'
         )
     f, ext = os.path.splitext(f)
     self._avg_dict[self.avg_beam].save(f)