-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path_util.py
66 lines (54 loc) · 1.63 KB
/
_util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# (Non-IO) Utility functions.
#
# This file is part of Pints Functional Testing.
# Copyright (c) 2017-2019, University of Oxford.
# For licensing information, see the LICENSE file distributed with the Pints
# functional testing software package.
#
import numpy as np
import time
import pfunk
def format_date(seconds_since_epoch):
return time.strftime(
pfunk.DATE_FORMAT, time.gmtime(seconds_since_epoch))
def weave(chains):
"""
Interweaves the given sequence of identically shaped chains, returning a
single chain.
The returned chain has samples in the order::
chain 0, sample 0
chain 1, sample 0
chain 2, sample 0
...
chain 0, sample 1
chain 1, sample 2
chain 2, sample 3
...
...
"""
# This method is fast, it seems:
# https://stackoverflow.com/questions/5347065
# Handle trivial cases
nc = len(chains)
if nc == 0:
return np.array()
elif nc == 1:
return np.array(chains[0], copy=True)
# Check shape of chains
shape = chains[0].shape
for i, chain in enumerate(chains):
if chain.ndim != 2:
raise ValueError(
'All chains passed to weave() must be 2-dimensional (error for'
' chain ' + str(i) + ').')
if chain.shape != shape:
raise ValueError(
'All chains must have same shape (error for chain ' + str(i)
+ ').')
# Create single interwoven chain
nr, nd = shape
woven = np.zeros(((nr * nc), nd))
for i, chain in enumerate(chains):
woven[i::nc] = chain
return woven