Skip to content
Snippets Groups Projects
Commit cf731c4e authored by gael.alory_legos.obs-mip.fr's avatar gael.alory_legos.obs-mip.fr
Browse files

correction probleme de type dans concatSample

parent 632246b3
No related branches found
No related tags found
No related merge requests found
......@@ -86,13 +86,13 @@ else
tsg.SSTP_EXT = NaN * ones( size( tsg.DAYD_EXT ) );
label = 'UNKN';
tsg.SSTP_EXT_TYPE = label( ones(length(tsg.SSTP_EXT),1), :);
tsg.SSTP_EXT_QC = NO_CONTROL * int8(ones( size( tsg.SSTP_EXT )));
tsg.SSTP_EXT_QC = int8(NO_CONTROL) * int8(ones( size( tsg.SSTP_EXT )));
end
if isempty(tsg.SSPS_EXT) && ~isempty(tsg.SSTP_EXT)
tsg.SSPS_EXT = NaN * ones( size( tsg.DAYD_EXT ) );
tsg.SSPS_EXT_TYPE = label( ones(length(tsg.SSTP_EXT),1), :);
tsg.SSPS_EXT_QC = NO_CONTROL * int8(ones( size( tsg.SSTP_EXT )));
tsg.SSPS_EXT_QC = int8(NO_CONTROL) * int8(ones( size( tsg.SSTP_EXT )));
label = '19500101000000';
tsg.SSPS_EXT_ANALDATE = label( ones(length(tsg.SSTP_EXT),1), :);
label = '0';
......
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