  tic
  Builtin Function



      SSyynnooppssiiss
        Start the timer.

      SSyynnttaaxx
        tic ( )

      DDeessccrriippttiioonn
        Tic internally marks the time at which it was invoked. To
        measure elapsed time, use tic in conjunction with toc.

        Example:


          tic();
          a = rand(100,100);
          eig(a);
          toc()




     The above would measure the time spent generating the 100x100
     random matrix, and calculating the eigenvectors and values.


     SSeeee AAllssoo
        toc


































