Returns the current execution clock in seconds.
CLOCK
A real indicating the total number of seconds since invocation.
a=clock();fft(w1);b=clock();
sprintf("FFT execution time %g seconds", b-a);
prints the approximate time required to calculate and display the FFT of W1.
See TIC and TOC to start an interval timer and automatically compute the elapsed time.