Expanded description
| Topic |
Description |
| Name |
time2excel |
| Synopsis |
/infobank/programs/refmt/time2excel/time2excel.for |
| Description |
Program to generate data to graph in Excel.
|
| Author |
Clint Steele 1/11/2000
|
| Reads |
read (90, '(i4,i3,3i2,i1,q,a)', end = 99)
* Year,Day,Hour,Minute,Second,Tenths,Length,Value
read (90, '(i4,i3,3i2,i1,q,a)', end = 99)
* Year,Day,Hour,Minute,Second,Tenths,Length,Value
|
| Writes |
write (91, '(i4.4,i3.3,3i2.2,i1.1,a,i,a,a)')
* Year,Day,Hour,Minute,Second,Tenths,char(9),
* 0,char(9),Value(1:Length)
write (91, '(i4.4,i3.3,3i2.2,i1.1,a,i,a,a)')
* Year,Day,Hour,Minute,Second,Tenths,char(9),
* ThisTime-FirstTime,
* char(9),Value(1:Length)
|
| Calls |
call openem (1,-1)
call converttime ('COMPRESS',Day,Hour,Minute,Second,
* Tenths,FirstTime,ErrorFlag)
call converttime ('COMPRESS',Day,Hour,Minute,Second,
* Tenths,ThisTime,ErrorFlag)
|
|