vlaplex/scripts_python/readZlist.py
2025-02-19 12:42:06 +01:00

10 lines
141 B
Python

import pandas
def read(filename):
# Get time
df = pandas.read_csv(filename)
Zlist = df['Z_list'].to_numpy()
return Zlist