本文整理汇总了Python中hyperspy.components.Gaussian.name方法的典型用法代码示例。如果您正苦于以下问题:Python Gaussian.name方法的具体用法?Python Gaussian.name怎么用?Python Gaussian.name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hyperspy.components.Gaussian
的用法示例。
在下文中一共展示了Gaussian.name方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_component_wrong
# 需要导入模块: from hyperspy.components import Gaussian [as 别名]
# 或者: from hyperspy.components.Gaussian import name [as 别名]
def test_get_component_wrong(self):
m = self.model
g1 = Gaussian()
g2 = Gaussian()
g2.name = "test"
m.extend((g1, g2))
m._get_component(1.2)
示例2: test_access_component_by_index
# 需要导入模块: from hyperspy.components import Gaussian [as 别名]
# 或者: from hyperspy.components.Gaussian import name [as 别名]
def test_access_component_by_index(self):
m = self.model
g1 = Gaussian()
g2 = Gaussian()
g2.name = "test"
m.extend((g1, g2))
nose.tools.assert_is(m[1], g2)
示例3: test_get_component_by_component
# 需要导入模块: from hyperspy.components import Gaussian [as 别名]
# 或者: from hyperspy.components.Gaussian import name [as 别名]
def test_get_component_by_component(self):
m = self.model
g1 = Gaussian()
g2 = Gaussian()
g2.name = "test"
m.extend((g1, g2))
nose.tools.assert_is(m._get_component(g2), g2)