关于Matlab与Python中日期转时间戳不一致的问题

由于 Matlab 中的日期序列号精确到秒,而 Python 的时间戳精确到秒,因此在进行转换时可能会存在精度损失,导致转换结果不完全相同。

将 Python 中的时间戳转换为 Matlab 中的日期序列号,可以使用下方代码进行转换:

def python_to_matlab_timestamp(python_timestamp):
    matlab_start_date = datetime.datetime(1899, 12, 30)
    python_datetime = datetime.datetime.fromtimestamp(python_timestamp)
    delta = python_datetime - matlab_start_date
    matlab_timestamp = delta.days + (delta.seconds + delta.microseconds / 10**6) / 86400
    return matlab_timestamp + 693960

datestr = '2022-5-18 17:09:53'
format = '%Y-%m-%d %H:%M:%S'
dt = datetime.datetime.strptime(datestr, format)
timestamp = dt.timestamp()
matlab_timestamp = python_to_matlab_timestamp(timestamp)

其中Matlab中是使用

timestamp = datenum(datestr('2022-5-18 17:09:53'))

结果Python与Matlab的结果一致

你可能感兴趣的:(Matlab-Python,matlab,python,算法)