Jafar
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
ticToc.tcl
00001 # $Id$ #
00002 
00003 #
00004 #/** tic and toc macro to measure elapsed time in millisecond (like matlab) \file ticToc.tcl \ingroup kernel */
00005 #
00006 
00007 package require kernel
00008 
00009 namespace eval kernel {
00010 
00011     proc tictoc {command} {
00012         # measure duration of command (in millisecond)
00013         kernel::tic
00014         eval $command
00015         return [kernel::toc]
00016     }
00017 
00018 }
00019 
00020 package provide kernel 0.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated on Wed Oct 15 2014 00:37:24 for Jafar by doxygen 1.7.6.1
LAAS-CNRS