コード例 #1
0
ファイル: bridge_client.py プロジェクト: mikyes/itasca-python
 def _read_v1_fish(self, filename='bin.fish'):
     return FishBinaryReader(filename).asarray()
コード例 #2
0
import struct
from itasca import FishBinaryReader

# see create-test-data.f3dat to generate this test data
fish_file = FishBinaryReader("testdata.fish")

assert fish_file.read() == 1
assert fish_file.read() == 99.987
assert fish_file.read() == "James"
assert fish_file.read() == [99.5, 89.3]
assert fish_file.read() == [7.0, 8.0, 9.0]
print "FISH read test passed"
コード例 #3
0
ファイル: bridge_client.py プロジェクト: mikyes/itasca-python
 def _read_v3_fish(self, filename='bin.fish'):
     a = FishBinaryReader(filename).asarray()
     assert a.shape[0] % 3 == 0, "bad fish array shape"
     return a.reshape(a.shape[0]/3, 3)