|
catm-python-lib
|
utilities load input data More...
Go to the source code of this file.
Functions | |
| catmlib.util.dataforming.str_to_array (input_str) | |
| convert string to float | |
| catmlib.util.dataforming.load_numbers (file_path) | |
| load number data | |
| catmlib.util.dataforming.read_toml_file (file_path=None) | |
| read toml file and return result | |
| catmlib.util.dataforming.read_spe_file (file_path) | |
| read spe file (MCA data) | |
| catmlib.util.dataforming.create_histogram_data_from_points (x, y) | |
| generate frequency distribution from data point lists | |
| catmlib.util.dataforming.find_peaks (data) | |
| find peak and reterun number of peak and index | |
| catmlib.util.dataforming.check_raed_file_function () | |
| check file raeder | |
| catmlib.util.dataforming.check_raed_file_function | ( | ) |
check file raeder
CLI argument:
Definition at line 118 of file dataforming.py.
| catmlib.util.dataforming.create_histogram_data_from_points | ( | x, | |
| y ) |
generate frequency distribution from data point lists
| x | data points along X axis |
| y | data points along Y axis |
Definition at line 84 of file dataforming.py.
| catmlib.util.dataforming.find_peaks | ( | data | ) |
find peak and reterun number of peak and index
| data |
Definition at line 98 of file dataforming.py.
| catmlib.util.dataforming.load_numbers | ( | file_path | ) |
load number data
| file_path | input data path |
Definition at line 27 of file dataforming.py.
| catmlib.util.dataforming.read_spe_file | ( | file_path | ) |
read spe file (MCA data)
| file_path | input file path |
Definition at line 55 of file dataforming.py.
| catmlib.util.dataforming.read_toml_file | ( | file_path = None | ) |
read toml file and return result
| file_path | input file path |
Definition at line 37 of file dataforming.py.
| catmlib.util.dataforming.str_to_array | ( | input_str | ) |
convert string to float
| input_str | input list written by string |
Definition at line 14 of file dataforming.py.