this is part of the data file i have to work with , there are 115 lines in the whole data file.
each sample is at one second intervals
i have isolated the decimal with a pascal program, 490, 485 ect..
if i could add them up , all i would have to do is divide them by 1000 before dividing them by 115 to get Amps per second..
but i am having trouble
it all comes down to how the numbers are represented in the program ,
490 is actually three seperate integers 4 , 9, and 0
i cant find a procedure or function combine 4 , 9 ,0 to represent four hundred ninety...
09:09:44 AM 0.490A
09:09:45 AM 0.485A
09:09:46 AM 0.480A
09:09:47 AM 0.476A
09:09:48 AM 0.477A
09:09:49 AM 0.499A
09:09:50 AM 0.538A
09:09:51 AM 0.559A
09:09:52 AM 0.590A
09:09:53 AM 0.597A
09:09:54 AM 0.595A
09:09:55 AM 0.591A
09:09:56 AM 0.585A
09:09:57 AM 0.580A
so thats where i am at the moment , i could go 4 times 10^2 + 9 times 10^1 + 0 times 10^0
wow that would work!!