wlog_final - write end simulation time in log file
wlog_final(u,flag)
- u :
integer. a file descriptor
- flag :
integer. a flag to set where display the information
- 1 :
display informations in the scilab window
- 2 :
display informations in a tcl/tk window
//Final simulation data
function wlog_final(u,flag)
tt=">> End of simulation : "+return_date()+"\n\n";
mfprintf(u,tt);
if (flag==1) then
printf(tt);
elseif(flag==2) then
ts=sprintf(tt);
put_list(ts);
end
endfunction
IRCOM Group Alan Layec