当前位置: 首页>>代码示例>>Python>>正文


Python FieldContainer.dimensions[0]方法代码示例

本文整理汇总了Python中pyphant.core.DataContainer.FieldContainer.dimensions[0]方法的典型用法代码示例。如果您正苦于以下问题:Python FieldContainer.dimensions[0]方法的具体用法?Python FieldContainer.dimensions[0]怎么用?Python FieldContainer.dimensions[0]使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyphant.core.DataContainer.FieldContainer的用法示例。


在下文中一共展示了FieldContainer.dimensions[0]方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testRegionIndex

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testRegionIndex(self):
     section = self.field1d[1:4]
     afoot = FieldContainer(numpy.linspace(0.2, 0.4, 3), longname="voltage", shortname="U", unit="1V")
     afoot.dimensions[0] = self.xDim[1:4]
     self.assertEqual(section, afoot)
     section = self.field1d[1:-1]
     afoot = FieldContainer(numpy.linspace(0.2, 0.9, 8), longname="voltage", shortname="U", unit="1V")
     afoot.dimensions[0] = self.xDim[1:-1]
     self.assertEqual(section, afoot)
开发者ID:juliameier,项目名称:pyphant1,代码行数:11,代码来源:TestDataContainer.py

示例2: testCommaSeparated

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testCommaSeparated(self):
     section = self.field1d[[1, 3, 7],]
     afoot = FieldContainer(numpy.array([0.2, 0.4, 0.8]), longname="voltage", shortname="U", unit="1V")
     afoot.dimensions[0] = self.xDim[[1, 3, 7],]
     self.assertEqual(section, afoot)
     section = self.field1d[[[1, 3, 7]]]
     self.assertEqual(section, afoot)
开发者ID:juliameier,项目名称:pyphant1,代码行数:9,代码来源:TestDataContainer.py

示例3: testLoadOneRowDep

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testLoadOneRowDep(self):
     result = self.load('onerow_dep.fmf')
     t = FieldContainer(numpy.array([1.0]), unit=Quantity('1 s'),
                        shortname='t', longname='time')
     s = FieldContainer(numpy.array([5.0]), unit=Quantity('1 m'),
                        shortname='s', longname='distance')
     s.dimensions[0] = deepcopy(t)
     self.checkExpected([t, s], result)
开发者ID:zklaus,项目名称:pyphant1,代码行数:10,代码来源:TestLoadFMF.py

示例4: testCompleteRightOpenIntervall

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testCompleteRightOpenIntervall(self):
     dim = self.xDim
     intStart = dim.data.min() * dim.unit
     intEnd = dim.data.max() * dim.unit
     unitname = dim.unit.unit.name()
     section = self.field1d["%.4f%s:%.4f%s" % (intStart.value, unitname, intEnd.value, unitname)]
     afoot = FieldContainer(numpy.linspace(0.1, 0.9, 9), longname="voltage", shortname="U", unit="1V")
     afoot.dimensions[0] = self.xDim[0:-1]
     self.assertEqual(section, afoot)
开发者ID:juliameier,项目名称:pyphant1,代码行数:11,代码来源:TestDataContainer.py

示例5: testLoadOneRowDep

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testLoadOneRowDep(self):
     result = self.load("onerow_dep.fmf")
     t = FieldContainer(numpy.array([1.0]), unit=Quantity("1 s"), shortname="t", longname="time")
     s = FieldContainer(numpy.array([5.0]), unit=Quantity("1 m"), shortname="s", longname="distance")
     s.dimensions[0] = deepcopy(t)
     self.checkExpected([t, s], result)
开发者ID:juliameier,项目名称:pyphant1,代码行数:8,代码来源:TestLoadFMF.py

示例6: test2ndAxisRegionIndexUnit

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def test2ndAxisRegionIndexUnit(self):
     section = self.field2d[:, "4e-1:.6A"]
     afoot = FieldContainer(self.field2d.data[:, 3:7], longname="afoot", shortname="U", unit="1V")
     afoot.dimensions[0] = self.yDim
     afoot.dimensions[1] = self.xDim[3:7]
     self.assertEqual(section, afoot)
开发者ID:juliameier,项目名称:pyphant1,代码行数:8,代码来源:TestDataContainer.py

示例7: testRegionIndexUnit

# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[0] [as 别名]
 def testRegionIndexUnit(self):
     section = self.field2d["4:6dm"]
     afoot = FieldContainer(self.field2d.data[3:7], longname="afoot", shortname="U", unit="1V")
     afoot.dimensions[0] = self.yDim[3:7]
     afoot.dimensions[1] = self.xDim
     self.assertEqual(section, afoot)
开发者ID:juliameier,项目名称:pyphant1,代码行数:8,代码来源:TestDataContainer.py


注:本文中的pyphant.core.DataContainer.FieldContainer.dimensions[0]方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。