Tagged Questions
2
votes
2answers
172 views
How to adjust time command to measure a program elapsed time
I'm trying to get the time that my program takes to finish (aka elapsed time) so I'm using the common time.
What I get by doing this is 3 measurements: user, system and total. This is fine but I ...
5
votes
2answers
352 views
How to average time commands?
I am timeing some of my commands. Now to average the measures, I'd like to run and time my commands a specified number of times, and get the results with a calculated mean and standard deviation. The ...