help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

measuring script speed


From: BVBA NuKey Music
Subject: measuring script speed
Date: Sun, 18 Dec 2011 17:49:06 +0100

I thought I could measure the execution time of a script like this:
begintime=cputime;myscript;cputime-begintime

this does not work however with scripts which start with a clear
command because the begintime-variable gets erased. Therefore I
thought in stead of deleting the clear statement for the test, I could
proceed as follows:
global begintime=cputime;myscript;cputime-begintime

unfortunately this doesn't work, I also tried this on the linux command line:
time octave<myscript.m

this works but I see the octave-environment being opened which could
falsify the timing results

so what's the best way to achieve this?

thanks in advance
nukey


reply via email to

[Prev in Thread] Current Thread [Next in Thread]