Home > functions > common > utility > vb_ptime.m

vb_ptime

PURPOSE ^

SYNOPSIS ^

function vb_ptime(T)

DESCRIPTION ^

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function vb_ptime(T)
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 ehour = floor(T/3600);
0006 emin  = floor((T-ehour*3600)/60);
0007 esec  = floor( T - ehour*3600 - emin*60);
0008 fprintf('ELAPSED : %d hours %d min. %d sec.\n', ehour,emin,esec );

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005