Skip to content
Snippets Groups Projects
Commit ca41a76e authored by Yves Gouriou's avatar Yves Gouriou
Browse files

Donne la possibilite d'écrire dans le fichier ASCII (*.tsgqc) les paramètres

CNDC_FREQ et SSJT_FREQ
parent 4d08e0f9
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,8 @@ PARA = { 'CNDC'; 'CNDC_CAL'; ... ...@@ -23,7 +23,8 @@ PARA = { 'CNDC'; 'CNDC_CAL'; ...
'SSJT'; 'SSJT_QC'; 'SSJT_CAL';... 'SSJT'; 'SSJT_QC'; 'SSJT_CAL';...
'SSJT_ADJUSTED'; 'SSJT_ADJUSTED_QC'; 'SSJT_ADJUSTED_ERROR'; ... 'SSJT_ADJUSTED'; 'SSJT_ADJUSTED_QC'; 'SSJT_ADJUSTED_ERROR'; ...
'SSTP'; 'SSTP_QC'; 'SSTP_CAL';... 'SSTP'; 'SSTP_QC'; 'SSTP_CAL';...
'SSTP_ADJUSTED'; 'SSTP_ADJUSTED_QC'; 'SSTP_ADJUSTED_ERROR'}; 'SSTP_ADJUSTED'; 'SSTP_ADJUSTED_QC'; 'SSTP_ADJUSTED_ERROR'; ...
'CNDC_FREQ'; 'SSJT_FREQ'};
% Choose parameters to export % Choose parameters to export
% --------------------------- % ---------------------------
...@@ -76,6 +77,9 @@ if choice ...@@ -76,6 +77,9 @@ if choice
if findstr( '_QC', para) if findstr( '_QC', para)
tsg_data = [tsg_data double(tsg.(para))]; tsg_data = [tsg_data double(tsg.(para))];
format = [format ' %1d']; format = [format ' %1d'];
elseif findstr( '_FREQ', para)
tsg_data = [tsg_data tsg.(para)];
format = [format ' %f'];
else else
tsg_data = [tsg_data tsg.(para)]; tsg_data = [tsg_data tsg.(para)];
format = [format ' %6.3f']; format = [format ' %6.3f'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment