我有一个以瓦特为单位计算设备功耗的代码。我需要在那个月计算该设备的KWH使用情况,我有一个看起来像这样的公式
( Watt Usage * Hours/Day * Days/Mo. ) / 1000 = Kilowatt Hours used that month
我有瓦特用法,但跟踪时间有问题。所以有办法计算秒数,以便我可以用它来计算小时,天数和单位消耗。
答案 0 :(得分:0)
MATLAB有一些随时间操作的工具:
<强>时钟强>:
t=clock; % returns a six-element vector containing the current date and time in decimal form, ( i.e. [year month day hour minute seconds] )
日期:
d=date; returns a string containing the date (in dd-mmm-yyyy format).
另外,您可以使用 tic 和 toc 来衡量两个时刻之间的经过时间。(如秒表)
tic;% starts the stopwatch
% after some time
toc % returns elapsed time