本文整理汇总了Python中pyphant.core.DataContainer.FieldContainer.dimensions[1]方法的典型用法代码示例。如果您正苦于以下问题:Python FieldContainer.dimensions[1]方法的具体用法?Python FieldContainer.dimensions[1]怎么用?Python FieldContainer.dimensions[1]使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyphant.core.DataContainer.FieldContainer
的用法示例。
在下文中一共展示了FieldContainer.dimensions[1]方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testRegionIndex
# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[1] [as 别名]
def testRegionIndex(self):
section = self.field2d[1:4]
afoot = FieldContainer(self.field2d.data[1:4], longname="afoot", shortname="U", unit="1V")
afoot.dimensions[0] = self.yDim[1:4]
afoot.dimensions[1] = self.xDim
self.assertEqual(section, afoot)
section = self.field2d[1:-1]
afoot = FieldContainer(self.field2d.data[1:-1], longname="voltage", shortname="U", unit="1V")
afoot.dimensions[0] = self.yDim[1:-1]
afoot.dimensions[1] = self.xDim
self.assertEqual(section, afoot)
示例2: testCommaSeparated
# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[1] [as 别名]
def testCommaSeparated(self):
section = self.field2d[[1, 3, 7],]
afoot = FieldContainer(self.field2d.data[[1, 3, 7],], longname="voltage", shortname="U", unit="1V")
afoot.dimensions[0] = self.yDim[[1, 3, 7],]
afoot.dimensions[1] = self.xDim
self.assertEqual(section, afoot)
section = self.field2d[[[1, 3, 7]]]
self.assertEqual(section, afoot)
示例3: test2ndAxisRegionIndexUnit
# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[1] [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)
示例4: testRegionIndexUnit
# 需要导入模块: from pyphant.core.DataContainer import FieldContainer [as 别名]
# 或者: from pyphant.core.DataContainer.FieldContainer import dimensions[1] [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)