How tic/toc calculate execution time?
Show older comments
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
Answers (1)
Categories
Find more on Software Development Tools in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!