Skip to content
Permalink
Browse files
Standard Class Code
  • Loading branch information
Youssef EL_Dieb committed Jul 4, 2021
1 parent bdd102b commit 088323caef2e9713e726b77bbcc5c9478514865a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 68 deletions.
@@ -52,9 +52,9 @@ for NumHour = 1:25 % loop through each hour


% To monitor the progress we will print out the status after every % To monitor the progress we will print out the status after every
% 50 processes. % 50 processes.
if idx/50 == ceil( idx/50) if idx/10000 == ceil( idx/10000)
tt = toc-t2; tt = toc-t2;
fprintf('Total %i of %i, last 50 in %.2f s predicted time for all data %.1f s\n',... fprintf('Total %i of %i, last 10000 in %.2f s predicted time for all data %.1f s\n',...
idx, size(Data2Process,1), tt, size(Data2Process,1)/50*25*tt) idx, size(Data2Process,1), tt, size(Data2Process,1)/50*25*tt)
t2 = toc; t2 = toc;
end end
File renamed without changes.
Binary file not shown.
@@ -9,7 +9,7 @@ close all
%% Test File with Errors %% Test File with Errors
NaNErrors = 0; NaNErrors = 0;
%% Set file to test %% Set file to test
FileName = '../Model/TestFileNaN.nc'; % define our test file FileName = 'TestFileNaN.nc'; % define our test file
% FileName = '../Model/o3_surface_20180701000000.nc'; % un rem this line to see what happens with good data % FileName = '../Model/o3_surface_20180701000000.nc'; % un rem this line to see what happens with good data
Contents = ncinfo(FileName); % Store the file content information in a variable. Contents = ncinfo(FileName); % Store the file content information in a variable.


This file was deleted.

BIN +222 KB 6b Testing NaN/6b.pdf
Binary file not shown.
@@ -9,7 +9,7 @@ close all
%% Test File with Errors %% Test File with Errors
NaNErrors = 0; NaNErrors = 0;
%% Set file to test %% Set file to test
FileName = '../Model/TestFileNaN.nc'; % define our test file FileName = 'TestFileNaN.nc'; % define our test file
% FileName = '../Model/o3_surface_20180701000000.nc'; % un rem this line to see what happens with good data % FileName = '../Model/o3_surface_20180701000000.nc'; % un rem this line to see what happens with good data
Contents = ncinfo(FileName); % Store the file content information in a variable. Contents = ncinfo(FileName); % Store the file content information in a variable.


This file was deleted.

0 comments on commit 088323c

Please sign in to comment.