本文整理匯總了Python中numpy.lib.format.MAGIC_LEN屬性的典型用法代碼示例。如果您正苦於以下問題:Python format.MAGIC_LEN屬性的具體用法?Python format.MAGIC_LEN怎麽用?Python format.MAGIC_LEN使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類numpy.lib.format
的用法示例。
在下文中一共展示了format.MAGIC_LEN屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_read_magic
# 需要導入模塊: from numpy.lib import format [as 別名]
# 或者: from numpy.lib.format import MAGIC_LEN [as 別名]
def test_read_magic():
s1 = BytesIO()
s2 = BytesIO()
arr = np.ones((3, 6), dtype=float)
format.write_array(s1, arr, version=(1, 0))
format.write_array(s2, arr, version=(2, 0))
s1.seek(0)
s2.seek(0)
version1 = format.read_magic(s1)
version2 = format.read_magic(s2)
assert_(version1 == (1, 0))
assert_(version2 == (2, 0))
assert_(s1.tell() == format.MAGIC_LEN)
assert_(s2.tell() == format.MAGIC_LEN)
示例2: test_read_array_header_1_0
# 需要導入模塊: from numpy.lib import format [as 別名]
# 或者: from numpy.lib.format import MAGIC_LEN [as 別名]
def test_read_array_header_1_0():
s = BytesIO()
arr = np.ones((3, 6), dtype=float)
format.write_array(s, arr, version=(1, 0))
s.seek(format.MAGIC_LEN)
shape, fortran, dtype = format.read_array_header_1_0(s)
assert_(s.tell() % format.ARRAY_ALIGN == 0)
assert_((shape, fortran, dtype) == ((3, 6), False, float))
示例3: test_read_array_header_2_0
# 需要導入模塊: from numpy.lib import format [as 別名]
# 或者: from numpy.lib.format import MAGIC_LEN [as 別名]
def test_read_array_header_2_0():
s = BytesIO()
arr = np.ones((3, 6), dtype=float)
format.write_array(s, arr, version=(2, 0))
s.seek(format.MAGIC_LEN)
shape, fortran, dtype = format.read_array_header_2_0(s)
assert_(s.tell() % format.ARRAY_ALIGN == 0)
assert_((shape, fortran, dtype) == ((3, 6), False, float))
示例4: test_read_array_header_1_0
# 需要導入模塊: from numpy.lib import format [as 別名]
# 或者: from numpy.lib.format import MAGIC_LEN [as 別名]
def test_read_array_header_1_0():
s = BytesIO()
arr = np.ones((3, 6), dtype=float)
format.write_array(s, arr, version=(1, 0))
s.seek(format.MAGIC_LEN)
shape, fortran, dtype = format.read_array_header_1_0(s)
assert_((shape, fortran, dtype) == ((3, 6), False, float))
示例5: test_read_array_header_2_0
# 需要導入模塊: from numpy.lib import format [as 別名]
# 或者: from numpy.lib.format import MAGIC_LEN [as 別名]
def test_read_array_header_2_0():
s = BytesIO()
arr = np.ones((3, 6), dtype=float)
format.write_array(s, arr, version=(2, 0))
s.seek(format.MAGIC_LEN)
shape, fortran, dtype = format.read_array_header_2_0(s)
assert_((shape, fortran, dtype) == ((3, 6), False, float))