gpt4 book ai didi

python - Matlab 的 tic 和 toc 函数的 Python 等价物是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:12:01 24 4
gpt4 key购买 nike

Matlab 的 tic and toc functions 的 Python 等价物是什么? ?

最佳答案

除了ThiefMaster提到的timeit之外,一个简单的方法就是(在导入time之后):

t = time.time()
# do stuff
elapsed = time.time() - t

我有一个我喜欢使用的辅助类:

class Timer(object):
def __init__(self, name=None):
self.name = name

def __enter__(self):
self.tstart = time.time()

def __exit__(self, type, value, traceback):
if self.name:
print('[%s]' % self.name,)
print('Elapsed: %s' % (time.time() - self.tstart))

它可以用作上下文管理器:

with Timer('foo_stuff'):
# do some foo
# do some stuff

有时我发现这种技术比 timeit 更方便 - 这完全取决于您要测量的内容。

关于python - Matlab 的 tic 和 toc 函数的 Python 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5849800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com