Azzera filtri
Azzera filtri

How tic/toc calculate execution time?

2 visualizzazioni (ultimi 30 giorni)
bkshn
bkshn il 17 Mag 2015
Modificato: Stephen23 il 17 Mag 2015
Hello
I have a function that call several functions like bellow
function A()
{
tic
function B();
function C();
function D();
toc }
if I use tic/toc at start and end of function A, Does it calculate execution time of function B,C,D?
thanks

Risposte (1)

Stephen23
Stephen23 il 17 Mag 2015
Modificato: Stephen23 il 17 Mag 2015
Yes.
The documentation clearly states that tic starts a timer, and toc reads the elapsed time of that timer. You can put anything you want in between.

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by