0

我有一个以瓦特为单位计算设备功耗的代码。我需要计算该设备在该月的 KWH 使用量,我有一个看起来像这样的公式

    ( Watt Usage * Hours/Day * Days/Mo. ) / 1000 = Kilowatt Hours used that month

我有瓦特使用情况,但跟踪时间有问题。所以有没有办法计算秒数,以便我可以用它来计算小时、天和单位消耗。

4

1 回答 1

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). 

此外,您可以使用tictoc来测量两个时刻之间经过的时间。(如秒表)

tic;% starts the stopwatch
%  after some time
toc  % returns elapsed time
于 2013-03-31T22:25:13.887 回答