You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tumbi
I would like to measure the time of my function execution. I found
gdate interface in nsp help, but it's for year/month/day
representation as far as I understood it. is there any way to work
with the hours/minutes/seconds?
bruno
unread,
Jul 11, 2010, 5:51:59 PM7/11/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tumbi
May be cputime() is what you want :
t0 = cputime();
............................
T = cputime() - t0;
it gives the cputime in second (cputime used getrusage most
of the cases).