Hiya, thanks for all the great effort! It's a really streamlined and easy-to-use software! I'd like to make a suggestion regarding the import of reference signals.
Currently, the app is designed such that when instructed to load reference signals, it assumes that every measurement has a corresponding reference signal. If some measurements have a missing reference signal, an error message will pop up and the app will no longer process the file.
It might be helpful if the file can continually be processed even when reference signals are missing for specific measurements, and then flag users to this issue. This allows for the flexibility where one reference signal is applicable to multiple measurements, but is made to be associated to one specific measurement during measurement acquisition.
To achieve this, lines 500-502 of the CaTx.mlapp code can be changed to the following:
refTof = {""};
refTHz = {""};
uialert(fig,'Reference signal is missing for some measurements. Please double check data.','Warning');
Lines 513-515 of the code can also be similarly updated to enable the same flexibility for baseline measurements.
Many thanks once again for the gigantic effort!
Hiya, thanks for all the great effort! It's a really streamlined and easy-to-use software! I'd like to make a suggestion regarding the import of reference signals.
Currently, the app is designed such that when instructed to load reference signals, it assumes that every measurement has a corresponding reference signal. If some measurements have a missing reference signal, an error message will pop up and the app will no longer process the file.
It might be helpful if the file can continually be processed even when reference signals are missing for specific measurements, and then flag users to this issue. This allows for the flexibility where one reference signal is applicable to multiple measurements, but is made to be associated to one specific measurement during measurement acquisition.
To achieve this, lines 500-502 of the CaTx.mlapp code can be changed to the following:
refTof = {""};
refTHz = {""};
uialert(fig,'Reference signal is missing for some measurements. Please double check data.','Warning');
Lines 513-515 of the code can also be similarly updated to enable the same flexibility for baseline measurements.
Many thanks once again for the gigantic effort!