Sync from remote server: 2025-10-12 18:56:41
This commit is contained in:
19
Tilt/MediaDati_PT100.m
Executable file
19
Tilt/MediaDati_PT100.m
Executable file
@@ -0,0 +1,19 @@
|
||||
% Questa routine calcola le medie (giornaliere o per intervalli definiti)
|
||||
% necessarie per le elaborazioni successive
|
||||
|
||||
function [Dati_PT100,ARRAYdatePT100] = MediaDati_PT100(val_PT100,TimePT100,FileName)
|
||||
|
||||
%% Temperatura
|
||||
Time = TimePT100;
|
||||
|
||||
Dati_PT100 = val_PT100;
|
||||
|
||||
ARRAYdatePT100 = Time;
|
||||
|
||||
text = 'Mean values of PT100 Link data NOT calculated. MediaDati_PT100 function closed';
|
||||
fileID = fopen(FileName,'a');
|
||||
fmt = '%s \r';
|
||||
fprintf(fileID,fmt,text);
|
||||
fclose(fileID);
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user