return time as numpy array
This commit is contained in:
parent
79f6c9eb49
commit
8f9cf1573c
@ -1,5 +1,6 @@
|
|||||||
import nixio as nix
|
import nixio as nix
|
||||||
import os
|
import os
|
||||||
|
import numpy as np
|
||||||
from IPython import embed
|
from IPython import embed
|
||||||
|
|
||||||
def read_baseline_eod(dataset):
|
def read_baseline_eod(dataset):
|
||||||
@ -9,7 +10,7 @@ def read_baseline_eod(dataset):
|
|||||||
t = b.tags["BaselineActivity_1"]
|
t = b.tags["BaselineActivity_1"]
|
||||||
eod_da = b.data_arrays["LocalEOD-1"]
|
eod_da = b.data_arrays["LocalEOD-1"]
|
||||||
eod = t.retrieve_data("LocalEOD-1")[:]
|
eod = t.retrieve_data("LocalEOD-1")[:]
|
||||||
time = eod_da.dimensions[0].axis(len(eod))
|
time = np.asarray(eod_da.dimensions[0].axis(len(eod)))
|
||||||
nix_file.close()
|
nix_file.close()
|
||||||
return time, eod
|
return time, eod
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user