Files
tst/script/test_data_txt.py
2026-03-13 15:28:30 +01:00

13 lines
346 B
Python

#set_exec_pars(format="txt")
data2d = [ [1.0, 2.0, 3.0, 4.0, 5.0], [2.0, 3.0, 4.0, 5.0, 6.0, ], [3.0, 4.0, 5.0, 6.0, 7.0]]
path = "group/data4"+ str(time.time())
create_dataset(path, 'd', False, (0,0))
for row in data2d:
append_dataset(path, row)
read =load_data(path)
print read.tolist()
plot(read)
run("test_sleep")
set_return(True)